package awsrekognition import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnCollection`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnCollectionProps := &CfnCollectionProps{ // CollectionId: jsii.String("collectionId"), // // // the properties below are optional // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-collection.html // type CfnCollectionProps struct { // ID for the collection that you are creating. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-collection.html#cfn-rekognition-collection-collectionid // CollectionId *string `field:"required" json:"collectionId" yaml:"collectionId"` // A set of tags (key-value pairs) that you want to attach to the collection. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-collection.html#cfn-rekognition-collection-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }