Show / Hide Table of Contents

Class TermsReference

A reference to a Terms resource.

Inheritance
object
TermsReference
Implements
ITermsReference
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 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

string

Remarks

ExampleMetadata: fixture=_generated

UserPoolId

The UserPoolId of the Terms resource.

public string UserPoolId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

ITermsReference
Back to top Generated by DocFX