CfnAppInstanceMixinProps
- class aws_cdk.cfn_property_mixins.aws_chime.CfnAppInstanceMixinProps(*, metadata=None, name=None, tags=None)
Bases:
objectProperties for CfnAppInstancePropsMixin.
- Parameters:
metadata (
Optional[str]) – The metadata of the AppInstance. Limited to a 1KB string in UTF-8.name (
Optional[str]) – The name of the AppInstance.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags assigned to the AppInstance.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chime-appinstance.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_chime as chime cfn_app_instance_mixin_props = chime.CfnAppInstanceMixinProps( metadata="metadata", name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- metadata
The metadata of the AppInstance.
Limited to a 1KB string in UTF-8.
- name
The name of the AppInstance.
- tags
Tags assigned to the AppInstance.