Show / Hide Table of Contents

Class CfnUserPoolUser.AttributeTypeProperty

The name and value of a user attribute.

Inheritance
object
CfnUserPoolUser.AttributeTypeProperty
Implements
CfnUserPoolUser.IAttributeTypeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUserPoolUser.AttributeTypeProperty : CfnUserPoolUser.IAttributeTypeProperty
Syntax (vb)
Public Class CfnUserPoolUser.AttributeTypeProperty Implements CfnUserPoolUser.IAttributeTypeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooluser-attributetype.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.AWS.Cognito;

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

Synopsis

Constructors

AttributeTypeProperty()

The name and value of a user attribute.

Properties

Name

The name of the attribute.

Value

The value of the attribute.

Constructors

AttributeTypeProperty()

The name and value of a user attribute.

public AttributeTypeProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooluser-attributetype.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.AWS.Cognito;

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

Properties

Name

The name of the attribute.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooluser-attributetype.html#cfn-cognito-userpooluser-attributetype-name

Value

The value of the attribute.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooluser-attributetype.html#cfn-cognito-userpooluser-attributetype-value

Implements

CfnUserPoolUser.IAttributeTypeProperty
Back to top Generated by DocFX