Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListAssociationsRequest

import type { ListAssociationsRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListAssociationsRequest {
AssociationType?: AssociationEdgeType | null;
CreatedAfter?: Date | number | null;
CreatedBefore?: Date | number | null;
DestinationArn?: string | null;
DestinationType?: string | null;
MaxResults?: number | null;
NextToken?: string | null;
SortBy?: SortAssociationsBy | null;
SortOrder?: SortOrder | null;
SourceArn?: string | null;
SourceType?: string | null;
}

§Properties

§
AssociationType?: AssociationEdgeType | null
[src]

A filter that returns only associations of the specified type.

§
CreatedAfter?: Date | number | null
[src]

A filter that returns only associations created on or after the specified time.

§
CreatedBefore?: Date | number | null
[src]

A filter that returns only associations created on or before the specified time.

§
DestinationArn?: string | null
[src]

A filter that returns only associations with the specified destination Amazon Resource Name (ARN).

§
DestinationType?: string | null
[src]

A filter that returns only associations with the specified destination type.

§
MaxResults?: number | null
[src]

The maximum number of associations to return in the response. The default value is 10.

§
NextToken?: string | null
[src]

If the previous call to ListAssociations didn't return the full set of associations, the call returns a token for getting the next set of associations.

§
SortBy?: SortAssociationsBy | null
[src]

The property used to sort results. The default value is CreationTime.

§
SortOrder?: SortOrder | null
[src]

The sort order. The default value is Descending.

§
SourceArn?: string | null
[src]

A filter that returns only associations with the specified source ARN.

§
SourceType?: string | null
[src]

A filter that returns only associations with the specified source type.