Class TermsReference
A reference to a Terms resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TermsReference : ITermsReference
Syntax (vb)
Public Class TermsReference Implements ITermsReference
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 termsReference = new TermsReference {
TermsId = "termsId",
UserPoolId = "userPoolId"
};
Synopsis
Constructors
| TermsReference() | A reference to a Terms resource. |
Properties
| TermsId | The TermsId of the Terms resource. |
| UserPoolId | The UserPoolId of the Terms resource. |
Constructors
TermsReference()
A reference to a Terms resource.
public TermsReference()
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 termsReference = new TermsReference {
TermsId = "termsId",
UserPoolId = "userPoolId"
};
Properties
TermsId
The TermsId of the Terms resource.
public string TermsId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
UserPoolId
The UserPoolId of the Terms resource.
public string UserPoolId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated