interface CfnCollectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Rekognition.CfnCollectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrekognition#CfnCollectionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.rekognition.CfnCollectionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_rekognition.CfnCollectionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rekognition » CfnCollectionMixinProps |
Properties for CfnCollectionPropsMixin.
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 cfnCollectionMixinProps: rekognition.CfnCollectionMixinProps = {
collectionId: 'collectionId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| collection | string | ID for the collection that you are creating. |
| tags? | Cfn[] | A set of tags (key-value pairs) that you want to attach to the collection. |
collectionId?
Type:
string
(optional)
ID for the collection that you are creating.
tags?
Type:
Cfn[]
(optional)
A set of tags (key-value pairs) that you want to attach to the collection.

.NET
Go
Java
Python
TypeScript