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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRecordingConfiguration.DestinationConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3
An S3 destination configuration where recorded videos will be stored.See the S3DestinationConfiguration property type for more information.
Returns union: either
IResolvableorCfnRecordingConfiguration.S3DestinationConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnRecordingConfiguration.DestinationConfigurationProperty.Builder builder()
-