interface CfnInstanceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSO.CfnInstanceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssso#CfnInstanceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sso.CfnInstanceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sso.CfnInstanceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sso » CfnInstanceMixinProps |
Properties for CfnInstancePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-instance.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sso as sso } from '@aws-cdk/cfn-property-mixins';
const cfnInstanceMixinProps: sso.CfnInstanceMixinProps = {
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the Identity Center instance. |
| tags? | Cfn[] | Specifies tags to be attached to the instance of IAM Identity Center. |
name?
Type:
string
(optional)
The name of the Identity Center instance.
tags?
Type:
Cfn[]
(optional)
Specifies tags to be attached to the instance of IAM Identity Center.

.NET
Go
Java
Python
TypeScript