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

.NET
Go
Java
Python
TypeScript