interface CfnDatasetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CognitoSync.CfnDatasetProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscognitosync#CfnDatasetProps |
Java | software.amazon.awscdk.services.cognitosync.CfnDatasetProps |
Python | aws_cdk.aws_cognitosync.CfnDatasetProps |
TypeScript | aws-cdk-lib » aws_cognitosync » CfnDatasetProps |
Properties for defining a CfnDataset.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognitosync-dataset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognitosync as cognitosync } from 'aws-cdk-lib';
const cfnDatasetProps: cognitosync.CfnDatasetProps = {
datasetName: 'datasetName',
identityId: 'identityId',
identityPoolId: 'identityPoolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| dataset | string | A string of up to 128 characters. |
| identity | string | A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. |
| identity | string | A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. |
datasetName?
Type:
string
(optional)
A string of up to 128 characters.
Allowed characters are a-z, A-Z, 0-9, underscore, dash, and dot.
identityId?
Type:
string
(optional)
A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito.
identityPoolId?
Type:
string
(optional)
A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito.

.NET
Go
Java
Python
TypeScript