Interface CfnRecordingConfiguration.DestinationConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRecordingConfiguration.DestinationConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnRecordingConfiguration

@Stability(Stable) public static interface CfnRecordingConfiguration.DestinationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The DestinationConfiguration property type describes the location where recorded videos will be stored.

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();
 

See Also: