Interface CfnStage.AutoParticipantRecordingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStage.AutoParticipantRecordingConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnStage
@Stability(Stable)
public static interface CfnStage.AutoParticipantRecordingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The
AWS::IVS::AutoParticipantRecordingConfiguration property type describes a configuration for individual participant recording.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ivs.*;
AutoParticipantRecordingConfigurationProperty autoParticipantRecordingConfigurationProperty = AutoParticipantRecordingConfigurationProperty.builder()
.storageConfigurationArn("storageConfigurationArn")
// the properties below are optional
.mediaTypes(List.of("mediaTypes"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStage.AutoParticipantRecordingConfigurationPropertystatic final classAn implementation forCfnStage.AutoParticipantRecordingConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Types of media to be recorded.ARN of the StorageConfiguration resource to use for individual participant recording.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStorageConfigurationArn
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.
- See Also:
-
getMediaTypes
Types of media to be recorded.Default:
AUDIO_VIDEO.- See Also:
-
builder
-