interface CfnStorageConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IVS.Mixins.CfnStorageConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsivs/mixins#CfnStorageConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ivs.mixins.CfnStorageConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_ivs.mixins.CfnStorageConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ivs » mixins » CfnStorageConfigurationMixinProps |
Properties for CfnStorageConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ivs_mixins } from '@aws-cdk/mixins-preview/aws-ivs';
const cfnStorageConfigurationMixinProps: ivs_mixins.CfnStorageConfigurationMixinProps = {
name: 'name',
s3: {
bucketName: 'bucketName',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Storage cnfiguration name. |
| s3? | IResolvable | S3 | An S3 storage configuration contains information about where recorded video will be stored. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
name?
Type:
string
(optional)
Storage cnfiguration name.
s3?
Type:
IResolvable | S3
(optional)
An S3 storage configuration contains information about where recorded video will be stored.
See the S3StorageConfiguration property type for more information.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript