AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the ListCollections operation. Returns list of collection IDs in your account. If the result is truncated, the response also provides a NextToken that you can use in the subsequent request to fetch the next set of collection IDs.

For an example, see Listing collections in the Amazon Rekognition Developer Guide.

This operation requires permissions to perform the rekognition:ListCollections action.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Rekognition.AmazonRekognitionRequest
      Amazon.Rekognition.Model.ListCollectionsRequest

Namespace: Amazon.Rekognition.Model
Assembly: AWSSDK.Rekognition.dll
Version: 3.x.y.z

Syntax

C#
public class ListCollectionsRequest : AmazonRekognitionRequest
         IAmazonWebServiceRequest

The ListCollectionsRequest type exposes the following members

Constructors

NameDescription
Public Method ListCollectionsRequest()

Properties

NameTypeDescription
Public Property MaxResults System.Int32

Gets and sets the property MaxResults.

Maximum number of collection IDs to return.

Public Property NextToken System.String

Gets and sets the property NextToken.

Pagination token from the previous response.

Examples

This operation returns a list of Rekognition collections.

To list the collections


var client = new AmazonRekognitionClient();
var response = client.ListCollections(new ListCollectionsRequest 
{
});

List<string> collectionIds = response.CollectionIds;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5