interface CfnProjectMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Rekognition.CfnProjectMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrekognition#CfnProjectMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.rekognition.CfnProjectMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_rekognition.CfnProjectMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rekognition » 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 { aws_rekognition as rekognition } from '@aws-cdk/cfn-property-mixins';
const cfnProjectMixinProps: rekognition.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