CfnAppInstanceProps
- class aws_cdk.aws_chime.CfnAppInstanceProps(*, name, metadata=None, tags=None)
Bases:
objectProperties for defining a
CfnAppInstance.- Parameters:
name (
str) – The name of the AppInstance.metadata (
Optional[str]) – The metadata of the AppInstance. Limited to a 1KB string in UTF-8.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 import aws_chime as chime cfn_app_instance_props = chime.CfnAppInstanceProps( name="name", # the properties below are optional metadata="metadata", 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.