Show / Hide Table of Contents

Class CollectionReference

A reference to a Collection resource.

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

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.AWS.Rekognition;

            var collectionReference = new CollectionReference {
                CollectionArn = "collectionArn",
                CollectionId = "collectionId"
            };

Synopsis

Constructors

CollectionReference()

A reference to a Collection resource.

Properties

CollectionArn

The ARN of the Collection resource.

CollectionId

The CollectionId of the Collection resource.

Constructors

CollectionReference()

A reference to a Collection resource.

public CollectionReference()
Remarks

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.AWS.Rekognition;

            var collectionReference = new CollectionReference {
                CollectionArn = "collectionArn",
                CollectionId = "collectionId"
            };

Properties

CollectionArn

The ARN of the Collection resource.

public string CollectionArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

CollectionId

The CollectionId of the Collection resource.

public string CollectionId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

ICollectionReference
Back to top Generated by DocFX