Class: Aws::CodePipeline::Types::ActionTypeArtifactDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ActionTypeArtifactDetails
- 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
-
#maximum_count ⇒ Integer
The maximum number of artifacts that can be used with the actiontype.
-
#minimum_count ⇒ Integer
The minimum number of artifacts that can be used with the action type.
Instance Attribute Details
#maximum_count ⇒ Integer
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`.
726 727 728 729 730 731 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 726 class ActionTypeArtifactDetails < Struct.new( :minimum_count, :maximum_count) SENSITIVE = [] include Aws::Structure end |
#minimum_count ⇒ Integer
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`.
726 727 728 729 730 731 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 726 class ActionTypeArtifactDetails < Struct.new( :minimum_count, :maximum_count) SENSITIVE = [] include Aws::Structure end |