Class CfnWorkforce.CognitoConfigProperty
The configuration of an Amazon Cognito workforce.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWorkforce.CognitoConfigProperty : CfnWorkforce.ICognitoConfigProperty
Syntax (vb)
Public Class CfnWorkforce.CognitoConfigProperty Implements CfnWorkforce.ICognitoConfigProperty
Remarks
A single Cognito workforce is created using and corresponds to a single Amazon Cognito user pool.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var cognitoConfigProperty = new CognitoConfigProperty {
ClientId = "clientId",
UserPool = "userPool"
};
Synopsis
Constructors
| CognitoConfigProperty() | The configuration of an Amazon Cognito workforce. |
Properties
| ClientId | The client ID for your Amazon Cognito user pool. |
| UserPool | The ID for your Amazon Cognito user pool. |
Constructors
CognitoConfigProperty()
The configuration of an Amazon Cognito workforce.
public CognitoConfigProperty()
Remarks
A single Cognito workforce is created using and corresponds to a single Amazon Cognito user pool.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var cognitoConfigProperty = new CognitoConfigProperty {
ClientId = "clientId",
UserPool = "userPool"
};
Properties
ClientId
The client ID for your Amazon Cognito user pool.
public string ClientId { get; set; }
Property Value
Remarks
UserPool
The ID for your Amazon Cognito user pool.
public string UserPool { get; set; }