Class: Aws::CodePipeline::Types::ListActionTypesInput

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

Overview

Note:

When making an API call, you may pass ListActionTypesInput data as a hash:

{
  action_owner_filter: "AWS", # accepts AWS, ThirdParty, Custom
  next_token: "NextToken",
}

Represents the input of a ListActionTypes action.

Instance Attribute Summary collapse

Instance Attribute Details

#action_owner_filterString

Filters the list of action types to those created by a specified entity.

Returns:

  • (String)


1709
1710
1711
1712
1713
# File 'lib/aws-sdk-codepipeline/types.rb', line 1709

class ListActionTypesInput < Struct.new(
  :action_owner_filter,
  :next_token)
  include Aws::Structure
end

#next_tokenString

An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.

Returns:

  • (String)


1709
1710
1711
1712
1713
# File 'lib/aws-sdk-codepipeline/types.rb', line 1709

class ListActionTypesInput < Struct.new(
  :action_owner_filter,
  :next_token)
  include Aws::Structure
end