Class UserPoolDomainReference
A reference to a UserPoolDomain resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
UserPoolId
The UserPoolId of the UserPoolDomain resource.
public string UserPoolId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated