interface CognitoConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnWorkforce.CognitoConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnWorkforce_CognitoConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnWorkforce.CognitoConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnWorkforce.CognitoConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnWorkforce » CognitoConfigProperty |
The configuration of an Amazon Cognito workforce.
A single Cognito workforce is created using and corresponds to a single Amazon Cognito user pool.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const cognitoConfigProperty: sagemaker.CfnWorkforce.CognitoConfigProperty = {
clientId: 'clientId',
userPool: 'userPool',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The client ID for your Amazon Cognito user pool. |
| user | string | The ID for your Amazon Cognito user pool. |
clientId
Type:
string
The client ID for your Amazon Cognito user pool.
userPool
Type:
string
The ID for your Amazon Cognito user pool.

.NET
Go
Java
Python
TypeScript