interface CfnDatasetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Rekognition.CfnDatasetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrekognition#CfnDatasetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.rekognition.CfnDatasetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_rekognition.CfnDatasetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rekognition » CfnDatasetMixinProps |
Properties for CfnDatasetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-dataset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rekognition as rekognition } from '@aws-cdk/cfn-property-mixins';
const cfnDatasetMixinProps: rekognition.CfnDatasetMixinProps = {
datasetType: 'datasetType',
projectArn: 'projectArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dataset | string | The type of the dataset. |
| project | string | The ARN of the project to which the dataset belongs. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
datasetType?
Type:
string
(optional)
The type of the dataset.
Specify TRAIN to create a training dataset. Specify TEST to create a test dataset.
projectArn?
Type:
string
(optional)
The ARN of the project to which the dataset belongs.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript