Class: Aws::EMR::Types::ListReleaseLabelsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::ListReleaseLabelsInput
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
When making an API call, you may pass ListReleaseLabelsInput data as a hash:
{
filters: {
prefix: "String",
application: "String",
},
next_token: "String",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Types::ReleaseLabelFilter
Filters the results of the request.
-
#max_results ⇒ Integer
Defines the maximum number of release labels to return in a single response.
-
#next_token ⇒ String
Specifies the next page of results.
Instance Attribute Details
#filters ⇒ Types::ReleaseLabelFilter
Filters the results of the request. Prefix
specifies the prefix of
release labels to return. Application
specifies the application
(with/without version) of release labels to return.
4967 4968 4969 4970 4971 4972 4973 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4967 class ListReleaseLabelsInput < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Defines the maximum number of release labels to return in a single
response. The default is 100
.
4967 4968 4969 4970 4971 4972 4973 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4967 class ListReleaseLabelsInput < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Specifies the next page of results. If NextToken
is not specified,
which is usually the case for the first request of
ListReleaseLabels, the first page of results are determined by other
filtering parameters or by the latest version. The
ListReleaseLabels
request fails if the identity (Amazon Web
Services account ID) and all filtering parameters are different from
the original request, or if the NextToken
is expired or tampered
with.
4967 4968 4969 4970 4971 4972 4973 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 4967 class ListReleaseLabelsInput < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |