Show / Hide Table of Contents

Class UserPoolDomainReference

A reference to a UserPoolDomain resource.

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

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.Interfaces.Cognito;

            var userPoolDomainReference = new UserPoolDomainReference {
                Domain = "domain",
                UserPoolId = "userPoolId"
            };

Synopsis

Constructors

UserPoolDomainReference()

A reference to a UserPoolDomain resource.

Properties

Domain

The Domain of the UserPoolDomain resource.

UserPoolId

The UserPoolId of the UserPoolDomain resource.

Constructors

UserPoolDomainReference()

A reference to a UserPoolDomain resource.

public UserPoolDomainReference()
Remarks

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.Interfaces.Cognito;

            var userPoolDomainReference = new UserPoolDomainReference {
                Domain = "domain",
                UserPoolId = "userPoolId"
            };

Properties

Domain

The Domain of the UserPoolDomain resource.

public string Domain { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

UserPoolId

The UserPoolId of the UserPoolDomain resource.

public string UserPoolId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IUserPoolDomainReference
Back to top Generated by DocFX