interface CfnCollectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Rekognition.Mixins.CfnCollectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrekognition/mixins#CfnCollectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rekognition.mixins.CfnCollectionMixinProps |
Python | aws_cdk.mixins_preview.aws_rekognition.mixins.CfnCollectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rekognition » mixins » 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 { mixins as rekognition_mixins } from '@aws-cdk/mixins-preview/aws-rekognition';
const cfnCollectionMixinProps: rekognition_mixins.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