Table of Contents

Class CfnUserPoolUser.AttributeTypeProperty

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

Specifies whether the attribute is standard or custom.

public class CfnUserPoolUser.AttributeTypeProperty : CfnUserPoolUser.IAttributeTypeProperty
Inheritance
CfnUserPoolUser.AttributeTypeProperty
Implements
Inherited Members

Examples

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

             var attributeTypeProperty = new AttributeTypeProperty {
                 Name = "name",
                 Value = "value"
             };

Remarks

Constructors

AttributeTypeProperty()

public AttributeTypeProperty()

Properties

Name

The name of the attribute.

public string? Name { get; set; }

Property Value

string

Remarks

Value

The value of the attribute.

public string? Value { get; set; }

Property Value

string

Remarks