@Stability(value=Stable)
public static interface CfnRecordingConfiguration.DestinationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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() |
Object |
getS3()
An S3 destination configuration where recorded videos will be stored.
|
@Stability(value=Stable) @NotNull Object getS3()
See the S3DestinationConfiguration property type for more information.
@Stability(value=Stable) static CfnRecordingConfiguration.DestinationConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.