CfnInstanceMixinProps
- class aws_cdk.mixins_preview.aws_sso.mixins.CfnInstanceMixinProps(*, name=None, tags=None)
Bases:
objectProperties for CfnInstancePropsMixin.
- Parameters:
name (
Optional[str]) – The name of the Identity Center instance.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Specifies tags to be attached to the instance of IAM Identity Center.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-instance.html
- 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_sso import mixins as sso_mixins cfn_instance_mixin_props = sso_mixins.CfnInstanceMixinProps( name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- name
The name of the Identity Center instance.
- tags
Specifies tags to be attached to the instance of IAM Identity Center.