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

ListClustersInput

import type { ListClustersInput } from "https://aws-api.deno.dev/v0.3/services/emr.ts?docs=full";

This input determines how the ListClusters action filters the list of clusters that it returns.

interface ListClustersInput {
ClusterStates?: ClusterState[] | null;
CreatedAfter?: Date | number | null;
CreatedBefore?: Date | number | null;
Marker?: string | null;
}

§Properties

§
ClusterStates?: ClusterState[] | null
[src]

The cluster state filters to apply when listing clusters. Clusters that change state while this action runs may be not be returned as expected in the list of clusters.

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

The creation date and time beginning value filter for listing clusters.

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

The creation date and time end value filter for listing clusters.

§
Marker?: string | null
[src]

The pagination token that indicates the next set of results to retrieve.