Class CollectionReference
A reference to a Collection resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
CollectionId
The CollectionId of the Collection resource.
public string CollectionId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated