The input for ListAdapterVersionsCommand.

interface ListAdapterVersionsCommandInput {
    AdapterId?: string;
    AfterCreationTime?: Date;
    BeforeCreationTime?: Date;
    MaxResults?: number;
    NextToken?: string;
}

Hierarchy (view full)

Properties

AdapterId?: string

A string containing a unique ID for the adapter to match for when listing adapter versions.

AfterCreationTime?: Date

Specifies the lower bound for the ListAdapterVersions operation. Ensures ListAdapterVersions returns only adapter versions created after the specified creation time.

BeforeCreationTime?: Date

Specifies the upper bound for the ListAdapterVersions operation. Ensures ListAdapterVersions returns only adapter versions created after the specified creation time.

MaxResults?: number

The maximum number of results to return when listing adapter versions.

NextToken?: string

Identifies the next page of results to return when listing adapter versions.