CfnStorageConfigurationMixinProps
- class aws_cdk.mixins_preview.aws_ivs.mixins.CfnStorageConfigurationMixinProps(*, name=None, s3=None, tags=None)
Bases:
objectProperties for CfnStorageConfigurationPropsMixin.
- Parameters:
name (
Optional[str]) – Storage cnfiguration name.s3 (
Union[IResolvable,S3StorageConfigurationProperty,Dict[str,Any],None]) – An S3 storage configuration contains information about where recorded video will be stored. See the S3StorageConfiguration property type for more information.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_ivs import mixins as ivs_mixins cfn_storage_configuration_mixin_props = ivs_mixins.CfnStorageConfigurationMixinProps( name="name", s3=ivs_mixins.CfnStorageConfigurationPropsMixin.S3StorageConfigurationProperty( bucket_name="bucketName" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- name
Storage cnfiguration name.
- s3
An S3 storage configuration contains information about where recorded video will be stored.
See the S3StorageConfiguration property type for more information.