Class: Aws::CodePipeline::Types::ListActionTypesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ListActionTypesOutput
- Defined in:
- gems/aws-sdk-codepipeline/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.
2771 2772 2773 2774 2775 2776 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2771 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.
2771 2772 2773 2774 2775 2776 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2771 class ListActionTypesOutput < Struct.new( :action_types, :next_token) SENSITIVE = [] include Aws::Structure end |