Interface S3DestinationConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3DestinationConfiguration.Builder,S3DestinationConfiguration>,SdkBuilder<S3DestinationConfiguration.Builder,S3DestinationConfiguration>,SdkPojo
- Enclosing class:
- S3DestinationConfiguration
public static interface S3DestinationConfiguration.Builder extends SdkPojo, CopyableBuilder<S3DestinationConfiguration.Builder,S3DestinationConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description S3DestinationConfiguration.BuilderencoderConfigurationArns(String... encoderConfigurationArns)ARNs of the EncoderConfiguration resource.S3DestinationConfiguration.BuilderencoderConfigurationArns(Collection<String> encoderConfigurationArns)ARNs of the EncoderConfiguration resource.default S3DestinationConfiguration.BuilderrecordingConfiguration(Consumer<RecordingConfiguration.Builder> recordingConfiguration)Array of maps, each of the formstring:string (key:value).S3DestinationConfiguration.BuilderrecordingConfiguration(RecordingConfiguration recordingConfiguration)Array of maps, each of the formstring:string (key:value).S3DestinationConfiguration.BuilderstorageConfigurationArn(String storageConfigurationArn)ARN of the StorageConfiguration where recorded videos will be stored.S3DestinationConfiguration.BuilderthumbnailConfigurations(Collection<CompositionThumbnailConfiguration> thumbnailConfigurations)A complex type that allows you to enable/disable the recording of thumbnails for a Composition and modify the interval at which thumbnails are generated for the live session.S3DestinationConfiguration.BuilderthumbnailConfigurations(Consumer<CompositionThumbnailConfiguration.Builder>... thumbnailConfigurations)A complex type that allows you to enable/disable the recording of thumbnails for a Composition and modify the interval at which thumbnails are generated for the live session.S3DestinationConfiguration.BuilderthumbnailConfigurations(CompositionThumbnailConfiguration... thumbnailConfigurations)A complex type that allows you to enable/disable the recording of thumbnails for a Composition and modify the interval at which thumbnails are generated for the live session.-
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
-
storageConfigurationArn
S3DestinationConfiguration.Builder storageConfigurationArn(String storageConfigurationArn)
ARN of the StorageConfiguration where recorded videos will be stored.
- Parameters:
storageConfigurationArn- ARN of the StorageConfiguration where recorded videos will be stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encoderConfigurationArns
S3DestinationConfiguration.Builder encoderConfigurationArns(Collection<String> encoderConfigurationArns)
ARNs of the EncoderConfiguration resource. The encoder configuration and stage resources must be in the same AWS account and region.
- Parameters:
encoderConfigurationArns- ARNs of the EncoderConfiguration resource. The encoder configuration and stage resources must be in the same AWS account and region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encoderConfigurationArns
S3DestinationConfiguration.Builder encoderConfigurationArns(String... encoderConfigurationArns)
ARNs of the EncoderConfiguration resource. The encoder configuration and stage resources must be in the same AWS account and region.
- Parameters:
encoderConfigurationArns- ARNs of the EncoderConfiguration resource. The encoder configuration and stage resources must be in the same AWS account and region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordingConfiguration
S3DestinationConfiguration.Builder recordingConfiguration(RecordingConfiguration recordingConfiguration)
Array of maps, each of the form
string:string (key:value). This is an optional customer specification, currently used only to specify the recording format for storing a recording in Amazon S3.- Parameters:
recordingConfiguration- Array of maps, each of the formstring:string (key:value). This is an optional customer specification, currently used only to specify the recording format for storing a recording in Amazon S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordingConfiguration
default S3DestinationConfiguration.Builder recordingConfiguration(Consumer<RecordingConfiguration.Builder> recordingConfiguration)
Array of maps, each of the form
This is a convenience method that creates an instance of thestring:string (key:value). This is an optional customer specification, currently used only to specify the recording format for storing a recording in Amazon S3.RecordingConfiguration.Builderavoiding the need to create one manually viaRecordingConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torecordingConfiguration(RecordingConfiguration).- Parameters:
recordingConfiguration- a consumer that will call methods onRecordingConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
recordingConfiguration(RecordingConfiguration)
-
thumbnailConfigurations
S3DestinationConfiguration.Builder thumbnailConfigurations(Collection<CompositionThumbnailConfiguration> thumbnailConfigurations)
A complex type that allows you to enable/disable the recording of thumbnails for a Composition and modify the interval at which thumbnails are generated for the live session.
- Parameters:
thumbnailConfigurations- A complex type that allows you to enable/disable the recording of thumbnails for a Composition and modify the interval at which thumbnails are generated for the live session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thumbnailConfigurations
S3DestinationConfiguration.Builder thumbnailConfigurations(CompositionThumbnailConfiguration... thumbnailConfigurations)
A complex type that allows you to enable/disable the recording of thumbnails for a Composition and modify the interval at which thumbnails are generated for the live session.
- Parameters:
thumbnailConfigurations- A complex type that allows you to enable/disable the recording of thumbnails for a Composition and modify the interval at which thumbnails are generated for the live session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thumbnailConfigurations
S3DestinationConfiguration.Builder thumbnailConfigurations(Consumer<CompositionThumbnailConfiguration.Builder>... thumbnailConfigurations)
A complex type that allows you to enable/disable the recording of thumbnails for a Composition and modify the interval at which thumbnails are generated for the live session.
This is a convenience method that creates an instance of theCompositionThumbnailConfiguration.Builderavoiding the need to create one manually viaCompositionThumbnailConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#thumbnailConfigurations(List.) - Parameters:
thumbnailConfigurations- a consumer that will call methods onCompositionThumbnailConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#thumbnailConfigurations(java.util.Collection)
-
-