Show / Hide Table of Contents

Class CfnCollectionMixinProps

Properties for CfnCollectionPropsMixin.

Inheritance
object
CfnCollectionMixinProps
Implements
ICfnCollectionMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Rekognition.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCollectionMixinProps : ICfnCollectionMixinProps
Syntax (vb)
Public Class CfnCollectionMixinProps Implements ICfnCollectionMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-collection.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.Rekognition.Mixins;

             var cfnCollectionMixinProps = new CfnCollectionMixinProps {
                 CollectionId = "collectionId",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnCollectionMixinProps()

Properties for CfnCollectionPropsMixin.

Properties

CollectionId

ID for the collection that you are creating.

Tags

A set of tags (key-value pairs) that you want to attach to the collection.

Constructors

CfnCollectionMixinProps()

Properties for CfnCollectionPropsMixin.

public CfnCollectionMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-collection.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.Rekognition.Mixins;

             var cfnCollectionMixinProps = new CfnCollectionMixinProps {
                 CollectionId = "collectionId",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

CollectionId

ID for the collection that you are creating.

public string? CollectionId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-collection.html#cfn-rekognition-collection-collectionid

Tags

A set of tags (key-value pairs) that you want to attach to the collection.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-collection.html#cfn-rekognition-collection-tags

Implements

ICfnCollectionMixinProps
Back to top Generated by DocFX