@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:18.105Z") @Stability(value=Stable) public interface CfnRecordingConfigurationProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnRecordingConfigurationProps cfnRecordingConfigurationProps = CfnRecordingConfigurationProps.builder()
.destinationConfiguration(DestinationConfigurationProperty.builder()
.s3(S3DestinationConfigurationProperty.builder()
.bucketName("bucketName")
.build())
.build())
// the properties below are optional
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRecordingConfigurationProps.Builder
A builder for
CfnRecordingConfigurationProps |
static class |
CfnRecordingConfigurationProps.Jsii$Proxy
An implementation for
CfnRecordingConfigurationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnRecordingConfigurationProps.Builder |
builder() |
Object |
getDestinationConfiguration()
`AWS::IVS::RecordingConfiguration.DestinationConfiguration`.
|
default String |
getName()
`AWS::IVS::RecordingConfiguration.Name`.
|
default List<CfnTag> |
getTags()
`AWS::IVS::RecordingConfiguration.Tags`.
|
@Stability(value=Stable) @NotNull Object getDestinationConfiguration()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnRecordingConfigurationProps.Builder builder()
Copyright © 2021. All rights reserved.