Class: Aws::EMR::Types::ListClustersInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::ListClustersInput
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
When making an API call, you may pass ListClustersInput data as a hash:
{
created_after: Time.now,
created_before: Time.now,
cluster_states: ["STARTING"], # accepts STARTING, BOOTSTRAPPING, RUNNING, WAITING, TERMINATING, TERMINATED, TERMINATED_WITH_ERRORS
marker: "Marker",
}
This input determines how the ListClusters action filters the list of clusters that it returns.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_states ⇒ Array<String>
The cluster state filters to apply when listing clusters.
-
#created_after ⇒ Time
The creation date and time beginning value filter for listing clusters.
-
#created_before ⇒ Time
The creation date and time end value filter for listing clusters.
-
#marker ⇒ String
The pagination token that indicates the next set of results to retrieve.
Instance Attribute Details
#cluster_states ⇒ Array<String>
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.
4633 4634 4635 4636 4637 4638 4639 4640 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4633 class ListClustersInput < Struct.new( :created_after, :created_before, :cluster_states, :marker) SENSITIVE = [] include Aws::Structure end |
#created_after ⇒ Time
The creation date and time beginning value filter for listing clusters.
4633 4634 4635 4636 4637 4638 4639 4640 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4633 class ListClustersInput < Struct.new( :created_after, :created_before, :cluster_states, :marker) SENSITIVE = [] include Aws::Structure end |
#created_before ⇒ Time
The creation date and time end value filter for listing clusters.
4633 4634 4635 4636 4637 4638 4639 4640 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4633 class ListClustersInput < Struct.new( :created_after, :created_before, :cluster_states, :marker) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
The pagination token that indicates the next set of results to retrieve.
4633 4634 4635 4636 4637 4638 4639 4640 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4633 class ListClustersInput < Struct.new( :created_after, :created_before, :cluster_states, :marker) SENSITIVE = [] include Aws::Structure end |