Class: Aws::CodePipeline::Types::ActionTypeArtifactDetails

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

Overview

Information about parameters for artifacts associated with the action type, such as the minimum and maximum artifacts allowed.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maximum_countInteger

The maximum number of artifacts that can be used with the actiontype. For example, you should specify a minimum and maximum of zero input artifacts for an action type with a category of ‘source`.

Returns:

  • (Integer)


694
695
696
697
698
699
# File 'lib/aws-sdk-codepipeline/types.rb', line 694

class ActionTypeArtifactDetails < Struct.new(
  :minimum_count,
  :maximum_count)
  SENSITIVE = []
  include Aws::Structure
end

#minimum_countInteger

The minimum number of artifacts that can be used with the action type. For example, you should specify a minimum and maximum of zero input artifacts for an action type with a category of ‘source`.

Returns:

  • (Integer)


694
695
696
697
698
699
# File 'lib/aws-sdk-codepipeline/types.rb', line 694

class ActionTypeArtifactDetails < Struct.new(
  :minimum_count,
  :maximum_count)
  SENSITIVE = []
  include Aws::Structure
end