interface TermsReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Cognito.TermsReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscognito#TermsReference |
Java | software.amazon.awscdk.interfaces.cognito.TermsReference |
Python | aws_cdk.interfaces.aws_cognito.TermsReference |
TypeScript | aws-cdk-lib » interfaces » aws_cognito » TermsReference |
A reference to a Terms resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as interfaces_cognito } from 'aws-cdk-lib/interfaces';
const termsReference: interfaces_cognito.TermsReference = {
termsId: 'termsId',
userPoolId: 'userPoolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| terms | string | The TermsId of the Terms resource. |
| user | string | The UserPoolId of the Terms resource. |
termsId
Type:
string
The TermsId of the Terms resource.
userPoolId
Type:
string
The UserPoolId of the Terms resource.

.NET
Go
Java
Python
TypeScript