Class: Aws::DataZone::Types::ListEnvironmentActionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::ListEnvironmentActionsInput
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_identifier ⇒ String
The ID of the Amazon DataZone domain in which the environment actions are listed.
-
#environment_identifier ⇒ String
The ID of the envrironment whose environment actions are listed.
-
#max_results ⇒ Integer
The maximum number of environment actions to return in a single call to
ListEnvironmentActions
. -
#next_token ⇒ String
When the number of environment actions is greater than the default value for the
MaxResults
parameter, or if you explicitly specify a value forMaxResults
that is less than the number of environment actions, the response includes a pagination token namedNextToken
.
Instance Attribute Details
#domain_identifier ⇒ String
The ID of the Amazon DataZone domain in which the environment actions are listed.
12098 12099 12100 12101 12102 12103 12104 12105 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 12098 class ListEnvironmentActionsInput < Struct.new( :domain_identifier, :environment_identifier, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#environment_identifier ⇒ String
The ID of the envrironment whose environment actions are listed.
12098 12099 12100 12101 12102 12103 12104 12105 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 12098 class ListEnvironmentActionsInput < Struct.new( :domain_identifier, :environment_identifier, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of environment actions to return in a single call
to ListEnvironmentActions
. When the number of environment actions
to be listed is greater than the value of MaxResults
, the response
contains a NextToken
value that you can use in a subsequent call
to ListEnvironmentActions
to list the next set of environment
actions.
12098 12099 12100 12101 12102 12103 12104 12105 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 12098 class ListEnvironmentActionsInput < Struct.new( :domain_identifier, :environment_identifier, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When the number of environment actions is greater than the default
value for the MaxResults
parameter, or if you explicitly specify a
value for MaxResults
that is less than the number of environment
actions, the response includes a pagination token named NextToken
.
You can specify this NextToken
value in a subsequent call to
ListEnvironmentActions
to list the next set of environment
actions.
12098 12099 12100 12101 12102 12103 12104 12105 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 12098 class ListEnvironmentActionsInput < Struct.new( :domain_identifier, :environment_identifier, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |