interface CfnInstanceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins.CfnInstanceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssso/mixins#CfnInstanceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sso.mixins.CfnInstanceMixinProps |
Python | aws_cdk.mixins_preview.aws_sso.mixins.CfnInstanceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sso » mixins » 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 { mixins as sso_mixins } from '@aws-cdk/mixins-preview/aws-sso';
const cfnInstanceMixinProps: sso_mixins.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