Class: Aws::CodePipeline::Types::ListActionTypesOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codepipeline/types.rb

Overview

Represents the output of a ListActionTypes action.

Instance Attribute Summary collapse

Instance Attribute Details

#action_typesArray<Types::ActionType>

Provides details of the action types.

Returns:



1730
1731
1732
1733
1734
# File 'lib/aws-sdk-codepipeline/types.rb', line 1730

class ListActionTypesOutput < Struct.new(
  :action_types,
  :next_token)
  include Aws::Structure
end

#next_tokenString

If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.

Returns:

  • (String)


1730
1731
1732
1733
1734
# File 'lib/aws-sdk-codepipeline/types.rb', line 1730

class ListActionTypesOutput < Struct.new(
  :action_types,
  :next_token)
  include Aws::Structure
end