Interface SegmentDeliveryConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SegmentDeliveryConfiguration.Builder,SegmentDeliveryConfiguration>,SdkBuilder<SegmentDeliveryConfiguration.Builder,SegmentDeliveryConfiguration>,SdkPojo
- Enclosing class:
- SegmentDeliveryConfiguration
public static interface SegmentDeliveryConfiguration.Builder extends SdkPojo, CopyableBuilder<SegmentDeliveryConfiguration.Builder,SegmentDeliveryConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SegmentDeliveryConfiguration.BuilderbaseUrl(String baseUrl)The base URL of the host or path of the segment delivery server that you're using to serve segments.SegmentDeliveryConfiguration.Buildername(String name)A unique identifier used to distinguish between multiple segment delivery configurations in a source location.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
baseUrl
SegmentDeliveryConfiguration.Builder baseUrl(String baseUrl)
The base URL of the host or path of the segment delivery server that you're using to serve segments. This is typically a content delivery network (CDN). The URL can be absolute or relative. To use an absolute URL include the protocol, such as
https://example.com/some/path. To use a relative URL specify the relative path, such as/some/path*.- Parameters:
baseUrl- The base URL of the host or path of the segment delivery server that you're using to serve segments. This is typically a content delivery network (CDN). The URL can be absolute or relative. To use an absolute URL include the protocol, such ashttps://example.com/some/path. To use a relative URL specify the relative path, such as/some/path*.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
SegmentDeliveryConfiguration.Builder name(String name)
A unique identifier used to distinguish between multiple segment delivery configurations in a source location.
- Parameters:
name- A unique identifier used to distinguish between multiple segment delivery configurations in a source location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-