interface DestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IVS.CfnRecordingConfigurationPropsMixin.DestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsivs#CfnRecordingConfigurationPropsMixin_DestinationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ivs.CfnRecordingConfigurationPropsMixin.DestinationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ivs.CfnRecordingConfigurationPropsMixin.DestinationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ivs » CfnRecordingConfigurationPropsMixin » DestinationConfigurationProperty |
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 { aws_ivs as ivs } from '@aws-cdk/cfn-property-mixins';
const destinationConfigurationProperty: ivs.CfnRecordingConfigurationPropsMixin.DestinationConfigurationProperty = {
s3: {
bucketName: 'bucketName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3? | IResolvable | S3 | An S3 destination configuration where recorded videos will be stored. |
s3?
Type:
IResolvable | S3
(optional)
An S3 destination configuration where recorded videos will be stored.
See the S3DestinationConfiguration property type for more information.

.NET
Go
Java
Python
TypeScript