public static interface CfnRecordingConfiguration.DestinationConfigurationProperty
Each member represents a type of destination configuration. For recording, you define one and only one type of destination configuration.
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.*; DestinationConfigurationProperty destinationConfigurationProperty = DestinationConfigurationProperty.builder() .s3(S3DestinationConfigurationProperty.builder() .bucketName("bucketName") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnRecordingConfiguration.DestinationConfigurationProperty.Builder
|
static class |
CfnRecordingConfiguration.DestinationConfigurationProperty.Jsii$Proxy
An implementation for
CfnRecordingConfiguration.DestinationConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnRecordingConfiguration.DestinationConfigurationProperty.Builder |
builder() |
java.lang.Object |
getS3()
An S3 destination configuration where recorded videos will be stored.
|
java.lang.Object getS3()
See the S3DestinationConfiguration property type for more information.