CfnKeyValueStoreMixinProps
- class aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnKeyValueStoreMixinProps(*, comment=None, import_source=None, name=None)
Bases:
objectProperties for CfnKeyValueStorePropsMixin.
- Parameters:
comment (
Optional[str]) – A comment for the key value store.import_source (
Union[IResolvable,ImportSourceProperty,Dict[str,Any],None]) – The import source for the key value store.name (
Optional[str]) – The name of the key value store.
- 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_cloudfront import mixins as cloudfront_mixins cfn_key_value_store_mixin_props = cloudfront_mixins.CfnKeyValueStoreMixinProps( comment="comment", import_source=cloudfront_mixins.CfnKeyValueStorePropsMixin.ImportSourceProperty( source_arn="sourceArn", source_type="sourceType" ), name="name" )
Attributes
- comment
A comment for the key value store.
- import_source
The import source for the key value store.
- name
The name of the key value store.