interface CfnDatasetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CognitoSync.CfnDatasetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscognitosync#CfnDatasetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cognitosync.CfnDatasetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cognitosync.CfnDatasetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cognitosync » CfnDatasetMixinProps |
Properties for CfnDatasetPropsMixin.
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/cfn-property-mixins';
const cfnDatasetMixinProps: cognitosync.CfnDatasetMixinProps = {
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