Class: Aws::CodePipeline::Types::ListActionTypesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ListActionTypesOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Represents the output of a ‘ListActionTypes` action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_types ⇒ Array<Types::ActionType>
Provides details of the action types.
-
#next_token ⇒ String
If the amount of returned information is significantly large, an identifier is also returned.
Instance Attribute Details
#action_types ⇒ Array<Types::ActionType>
Provides details of the action types.
2949 2950 2951 2952 2953 2954 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2949 class ListActionTypesOutput < Struct.new( :action_types, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the amount of returned information is significantly large, an identifier is also returned. It can be used in a subsequent list action types call to return the next set of action types in the list.
2949 2950 2951 2952 2953 2954 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2949 class ListActionTypesOutput < Struct.new( :action_types, :next_token) SENSITIVE = [] include Aws::Structure end |