interface CfnProjectMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Rekognition.Mixins.CfnProjectMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrekognition/mixins#CfnProjectMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rekognition.mixins.CfnProjectMixinProps |
Python | aws_cdk.mixins_preview.aws_rekognition.mixins.CfnProjectMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rekognition » mixins » CfnProjectMixinProps |
Properties for CfnProjectPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-project.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as rekognition_mixins } from '@aws-cdk/mixins-preview/aws-rekognition';
const cfnProjectMixinProps: rekognition_mixins.CfnProjectMixinProps = {
projectName: 'projectName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| project | string | The name of the project to create. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
projectName?
Type:
string
(optional)
The name of the project to create.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript