You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EMR::Types::ListInstancesInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListInstancesInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  cluster_id: "ClusterId", # required
  instance_group_id: "InstanceGroupId",
  instance_group_types: ["MASTER"], # accepts MASTER, CORE, TASK
  instance_fleet_id: "InstanceFleetId",
  instance_fleet_type: "MASTER", # accepts MASTER, CORE, TASK
  instance_states: ["AWAITING_FULFILLMENT"], # accepts AWAITING_FULFILLMENT, PROVISIONING, BOOTSTRAPPING, RUNNING, TERMINATED
  marker: "Marker",
}

This input determines which instances to list.

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_idString

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

Returns:

  • (String)

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

#instance_fleet_idString

The unique identifier of the instance fleet.

Returns:

  • (String)

    The unique identifier of the instance fleet.

#instance_fleet_typeString

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

Possible values:

  • MASTER
  • CORE
  • TASK

Returns:

  • (String)

    The node type of the instance fleet.

#instance_group_idString

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

Returns:

  • (String)

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

#instance_group_typesArray<String>

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

Returns:

  • (Array<String>)

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

#instance_statesArray<String>

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

Returns:

  • (Array<String>)

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

#markerString

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

Returns:

  • (String)

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