Class: Aws::Proton::Types::ListEnvironmentOutputsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Proton::Types::ListEnvironmentOutputsInput
- Defined in:
- gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb
Overview
Note:
When making an API call, you may pass ListEnvironmentOutputsInput data as a hash:
{
environment_name: "ResourceName", # required
next_token: "EmptyNextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#environment_name ⇒ String
The environment name.
-
#next_token ⇒ String
A token that indicates the location of the next environment output in the array of environment outputs, after the list of environment outputs that was previously requested.
Instance Attribute Details
#environment_name ⇒ String
The environment name.
3206 3207 3208 3209 3210 3211 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3206 class ListEnvironmentOutputsInput < Struct.new( :environment_name, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that indicates the location of the next environment output in the array of environment outputs, after the list of environment outputs that was previously requested.
3206 3207 3208 3209 3210 3211 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 3206 class ListEnvironmentOutputsInput < Struct.new( :environment_name, :next_token) SENSITIVE = [] include Aws::Structure end |