Show / Hide Table of Contents

Class CfnInstanceMixinProps

Properties for CfnInstancePropsMixin.

Inheritance
object
CfnInstanceMixinProps
Implements
ICfnInstanceMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnInstanceMixinProps : ICfnInstanceMixinProps
Syntax (vb)
Public Class CfnInstanceMixinProps Implements ICfnInstanceMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-instance.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins;

             var cfnInstanceMixinProps = new CfnInstanceMixinProps {
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnInstanceMixinProps()

Properties for CfnInstancePropsMixin.

Properties

Name

The name of the Identity Center instance.

Tags

Specifies tags to be attached to the instance of IAM Identity Center.

Constructors

CfnInstanceMixinProps()

Properties for CfnInstancePropsMixin.

public CfnInstanceMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-instance.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins;

             var cfnInstanceMixinProps = new CfnInstanceMixinProps {
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Name

The name of the Identity Center instance.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-instance.html#cfn-sso-instance-name

Tags

Specifies tags to be attached to the instance of IAM Identity Center.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-instance.html#cfn-sso-instance-tags

Implements

ICfnInstanceMixinProps
Back to top Generated by DocFX