Show / Hide Table of Contents

Class UserPoolSchemaArgs

Inheritance
System.Object
InputArgs
ResourceArgs
UserPoolSchemaArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Cognito.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class UserPoolSchemaArgs : ResourceArgs

Constructors

View Source

UserPoolSchemaArgs()

Declaration
public UserPoolSchemaArgs()

Properties

View Source

AttributeDataType

The attribute data type. Must be one of Boolean, Number, String, DateTime.

Declaration
public Input<string> AttributeDataType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DeveloperOnlyAttribute

Specifies whether the attribute type is developer only.

Declaration
public Input<bool> DeveloperOnlyAttribute { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Mutable

Specifies whether the attribute can be changed once it has been created.

Declaration
public Input<bool> Mutable { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Name

The name of the attribute.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NumberAttributeConstraints

Specifies the constraints for an attribute of the number type.

Declaration
public Input<UserPoolSchemaNumberAttributeConstraintsArgs> NumberAttributeConstraints { get; set; }
Property Value
Type Description
Input<UserPoolSchemaNumberAttributeConstraintsArgs>
View Source

Required

Specifies whether a user pool attribute is required. If the attribute is required and the user does not provide a value, registration or sign-in will fail.

Declaration
public Input<bool> Required { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

StringAttributeConstraints

-Specifies the constraints for an attribute of the string type.

Declaration
public Input<UserPoolSchemaStringAttributeConstraintsArgs> StringAttributeConstraints { get; set; }
Property Value
Type Description
Input<UserPoolSchemaStringAttributeConstraintsArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.