interface UserPoolRiskConfigurationAttachmentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Cognito.UserPoolRiskConfigurationAttachmentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscognito#UserPoolRiskConfigurationAttachmentReference |
Java | software.amazon.awscdk.interfaces.cognito.UserPoolRiskConfigurationAttachmentReference |
Python | aws_cdk.interfaces.aws_cognito.UserPoolRiskConfigurationAttachmentReference |
TypeScript | aws-cdk-lib » interfaces » aws_cognito » UserPoolRiskConfigurationAttachmentReference |
A reference to a UserPoolRiskConfigurationAttachment 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_aws_cognito } from 'aws-cdk-lib/interfaces';
const userPoolRiskConfigurationAttachmentReference: interfaces_aws_cognito.UserPoolRiskConfigurationAttachmentReference = {
clientId: 'clientId',
userPoolId: 'userPoolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The ClientId of the UserPoolRiskConfigurationAttachment resource. |
| user | string | The UserPoolId of the UserPoolRiskConfigurationAttachment resource. |
clientId
Type:
string
The ClientId of the UserPoolRiskConfigurationAttachment resource.
userPoolId
Type:
string
The UserPoolId of the UserPoolRiskConfigurationAttachment resource.

.NET
Go
Java
Python
TypeScript