interface CognitoConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnWorkforcePropsMixin.CognitoConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnWorkforcePropsMixin_CognitoConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnWorkforcePropsMixin.CognitoConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnWorkforcePropsMixin.CognitoConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnWorkforcePropsMixin » 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/cfn-property-mixins';
const cognitoConfigProperty: sagemaker.CfnWorkforcePropsMixin.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
(optional)
The client ID for your Amazon Cognito user pool.
userPool?
Type:
string
(optional)
The ID for your Amazon Cognito user pool.

.NET
Go
Java
Python
TypeScript