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

ListInstancesInput

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

This input determines which instances to list.

interface ListInstancesInput {
ClusterId: string;
InstanceFleetId?: string | null;
InstanceFleetType?: InstanceFleetType | null;
InstanceGroupId?: string | null;
InstanceGroupTypes?: InstanceGroupType[] | null;
InstanceStates?: InstanceState[] | null;
Marker?: string | null;
}

§Properties

§
ClusterId: string
[src]

The identifier of the cluster for which to list the instances.

§
InstanceFleetId?: string | null
[src]

The unique identifier of the instance fleet.

§
InstanceFleetType?: InstanceFleetType | null
[src]

The node type of the instance fleet. For example MASTER, CORE, or TASK.

§
InstanceGroupId?: string | null
[src]

The identifier of the instance group for which to list the instances.

§
InstanceGroupTypes?: InstanceGroupType[] | null
[src]

The type of instance group for which to list the instances.

§
InstanceStates?: InstanceState[] | null
[src]

A list of instance states that will filter the instances returned with this request.

§
Marker?: string | null
[src]

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