Interface CfnUserPoolUser.IAttributeTypeProperty
Specifies whether the attribute is standard or custom.
public interface CfnUserPoolUser.IAttributeTypeProperty
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
ExampleMetadata: fixture=_generated
Properties
Name
The name of the attribute.
string? Name { get; }
Property Value
Remarks
Value
The value of the attribute.
string? Value { get; }