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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codepipeline/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)


706
707
708
709
710
711
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 706

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)


706
707
708
709
710
711
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 706

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