Interface LiveSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LiveSource.Builder,LiveSource>,SdkBuilder<LiveSource.Builder,LiveSource>,SdkPojo
- Enclosing class:
- LiveSource
public static interface LiveSource.Builder extends SdkPojo, CopyableBuilder<LiveSource.Builder,LiveSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LiveSource.Builderarn(String arn)The ARN for the live source.LiveSource.BuildercreationTime(Instant creationTime)The timestamp that indicates when the live source was created.LiveSource.BuilderhttpPackageConfigurations(Collection<HttpPackageConfiguration> httpPackageConfigurations)The HTTP package configurations for the live source.LiveSource.BuilderhttpPackageConfigurations(Consumer<HttpPackageConfiguration.Builder>... httpPackageConfigurations)The HTTP package configurations for the live source.LiveSource.BuilderhttpPackageConfigurations(HttpPackageConfiguration... httpPackageConfigurations)The HTTP package configurations for the live source.LiveSource.BuilderlastModifiedTime(Instant lastModifiedTime)The timestamp that indicates when the live source was last modified.LiveSource.BuilderliveSourceName(String liveSourceName)The name that's used to refer to a live source.LiveSource.BuildersourceLocationName(String sourceLocationName)The name of the source location.LiveSource.Buildertags(Map<String,String> tags)The tags assigned to the live source.-
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
-
arn
LiveSource.Builder arn(String arn)
The ARN for the live source.
- Parameters:
arn- The ARN for the live source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
LiveSource.Builder creationTime(Instant creationTime)
The timestamp that indicates when the live source was created.
- Parameters:
creationTime- The timestamp that indicates when the live source was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
httpPackageConfigurations
LiveSource.Builder httpPackageConfigurations(Collection<HttpPackageConfiguration> httpPackageConfigurations)
The HTTP package configurations for the live source.
- Parameters:
httpPackageConfigurations- The HTTP package configurations for the live source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
httpPackageConfigurations
LiveSource.Builder httpPackageConfigurations(HttpPackageConfiguration... httpPackageConfigurations)
The HTTP package configurations for the live source.
- Parameters:
httpPackageConfigurations- The HTTP package configurations for the live source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
httpPackageConfigurations
LiveSource.Builder httpPackageConfigurations(Consumer<HttpPackageConfiguration.Builder>... httpPackageConfigurations)
The HTTP package configurations for the live source.
This is a convenience method that creates an instance of theHttpPackageConfiguration.Builderavoiding the need to create one manually viaHttpPackageConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#httpPackageConfigurations(List.) - Parameters:
httpPackageConfigurations- a consumer that will call methods onHttpPackageConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#httpPackageConfigurations(java.util.Collection)
-
lastModifiedTime
LiveSource.Builder lastModifiedTime(Instant lastModifiedTime)
The timestamp that indicates when the live source was last modified.
- Parameters:
lastModifiedTime- The timestamp that indicates when the live source was last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
liveSourceName
LiveSource.Builder liveSourceName(String liveSourceName)
The name that's used to refer to a live source.
- Parameters:
liveSourceName- The name that's used to refer to a live source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceLocationName
LiveSource.Builder sourceLocationName(String sourceLocationName)
The name of the source location.
- Parameters:
sourceLocationName- The name of the source location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
LiveSource.Builder tags(Map<String,String> tags)
The tags assigned to the live source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources.
- Parameters:
tags- The tags assigned to the live source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-