CfnStorageConfigurationProps
- class aws_cdk.aws_ivs.CfnStorageConfigurationProps(*, s3, name=None, tags=None)
 Bases:
objectProperties for defining a
CfnStorageConfiguration.- Parameters:
 s3 (
Union[IResolvable,S3StorageConfigurationProperty,Dict[str,Any]]) – An S3 storage configuration contains information about where recorded video will be stored. See the S3StorageConfiguration property type for more information.name (
Optional[str]) – Storage cnfiguration name.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 import aws_ivs as ivs cfn_storage_configuration_props = ivs.CfnStorageConfigurationProps( s3=ivs.CfnStorageConfiguration.S3StorageConfigurationProperty( bucket_name="bucketName" ), # the properties below are optional name="name", 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.