Class: Aws::AppConfig::Types::ListDeploymentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfig::Types::ListDeploymentsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appconfig/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_id ⇒ String
The application ID.
-
#environment_id ⇒ String
The environment ID.
-
#max_results ⇒ Integer
The maximum number of items that may be returned for this call.
-
#next_token ⇒ String
The token returned by a prior call to this operation indicating the next set of results to be returned.
Instance Attribute Details
#application_id ⇒ String
The application ID.
2094 2095 2096 2097 2098 2099 2100 2101 |
# File 'lib/aws-sdk-appconfig/types.rb', line 2094 class ListDeploymentsRequest < Struct.new( :application_id, :environment_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#environment_id ⇒ String
The environment ID.
2094 2095 2096 2097 2098 2099 2100 2101 |
# File 'lib/aws-sdk-appconfig/types.rb', line 2094 class ListDeploymentsRequest < Struct.new( :application_id, :environment_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of items that may be returned for this call. If there are items that have not yet been returned, the response will include a non-null ‘NextToken` that you can provide in a subsequent call to get the next set of results.
2094 2095 2096 2097 2098 2099 2100 2101 |
# File 'lib/aws-sdk-appconfig/types.rb', line 2094 class ListDeploymentsRequest < Struct.new( :application_id, :environment_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token returned by a prior call to this operation indicating the next set of results to be returned. If not specified, the operation will return the first set of results.
2094 2095 2096 2097 2098 2099 2100 2101 |
# File 'lib/aws-sdk-appconfig/types.rb', line 2094 class ListDeploymentsRequest < Struct.new( :application_id, :environment_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |