aws-cdk-lib.aws_ivs.CfnRecordingConfiguration.DestinationConfigurationProperty

interface DestinationConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.Ivs.CfnRecordingConfiguration.DestinationConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsivs#CfnRecordingConfiguration_DestinationConfigurationProperty
Javasoftware.amazon.awscdk.services.ivs.CfnRecordingConfiguration.DestinationConfigurationProperty
Pythonaws_cdk.aws_ivs.CfnRecordingConfiguration.DestinationConfigurationProperty
TypeScript aws-cdk-lib » aws_ivs » CfnRecordingConfiguration » 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-lib';
const destinationConfigurationProperty: ivs.CfnRecordingConfiguration.DestinationConfigurationProperty = {
  s3: {
    bucketName: 'bucketName',
  },
};

Properties

NameTypeDescription
s3IResolvable | S3DestinationConfigurationPropertyAn S3 destination configuration where recorded videos will be stored.

s3

Type: IResolvable | S3DestinationConfigurationProperty

An S3 destination configuration where recorded videos will be stored.

See the S3DestinationConfiguration property type for more information.