Interface AutoParticipantRecordingConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AutoParticipantRecordingConfiguration.Builder,AutoParticipantRecordingConfiguration>,SdkBuilder<AutoParticipantRecordingConfiguration.Builder,AutoParticipantRecordingConfiguration>,SdkPojo
- Enclosing class:
- AutoParticipantRecordingConfiguration
public static interface AutoParticipantRecordingConfiguration.Builder extends SdkPojo, CopyableBuilder<AutoParticipantRecordingConfiguration.Builder,AutoParticipantRecordingConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AutoParticipantRecordingConfiguration.BuildermediaTypes(Collection<ParticipantRecordingMediaType> mediaTypes)Types of media to be recorded.AutoParticipantRecordingConfiguration.BuildermediaTypes(ParticipantRecordingMediaType... mediaTypes)Types of media to be recorded.AutoParticipantRecordingConfiguration.BuildermediaTypesWithStrings(String... mediaTypes)Types of media to be recorded.AutoParticipantRecordingConfiguration.BuildermediaTypesWithStrings(Collection<String> mediaTypes)Types of media to be recorded.AutoParticipantRecordingConfiguration.BuilderstorageConfigurationArn(String storageConfigurationArn)ARN of the StorageConfiguration resource to use for individual participant recording.-
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
AutoParticipantRecordingConfiguration.Builder storageConfigurationArn(String storageConfigurationArn)
ARN of the StorageConfiguration resource to use for individual participant recording. Default:
""(empty string, no storage configuration is specified). Individual participant recording cannot be started unless a storage configuration is specified, when a Stage is created or updated.- Parameters:
storageConfigurationArn- ARN of the StorageConfiguration resource to use for individual participant recording. Default:""(empty string, no storage configuration is specified). Individual participant recording cannot be started unless a storage configuration is specified, when a Stage is created or updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mediaTypesWithStrings
AutoParticipantRecordingConfiguration.Builder mediaTypesWithStrings(Collection<String> mediaTypes)
Types of media to be recorded. Default:
AUDIO_VIDEO.- Parameters:
mediaTypes- Types of media to be recorded. Default:AUDIO_VIDEO.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mediaTypesWithStrings
AutoParticipantRecordingConfiguration.Builder mediaTypesWithStrings(String... mediaTypes)
Types of media to be recorded. Default:
AUDIO_VIDEO.- Parameters:
mediaTypes- Types of media to be recorded. Default:AUDIO_VIDEO.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mediaTypes
AutoParticipantRecordingConfiguration.Builder mediaTypes(Collection<ParticipantRecordingMediaType> mediaTypes)
Types of media to be recorded. Default:
AUDIO_VIDEO.- Parameters:
mediaTypes- Types of media to be recorded. Default:AUDIO_VIDEO.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mediaTypes
AutoParticipantRecordingConfiguration.Builder mediaTypes(ParticipantRecordingMediaType... mediaTypes)
Types of media to be recorded. Default:
AUDIO_VIDEO.- Parameters:
mediaTypes- Types of media to be recorded. Default:AUDIO_VIDEO.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-