Class: Aws::CodePipeline::Types::ArtifactDetails

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 ArtifactDetails data as a hash:

{
  minimum_count: 1, # required
  maximum_count: 1, # required
}

Returns information about the details of an artifact.

Instance Attribute Summary collapse

Instance Attribute Details

#maximum_countInteger

The maximum number of artifacts allowed for the action type.

Returns:

  • (Integer)


637
638
639
640
641
# File 'lib/aws-sdk-codepipeline/types.rb', line 637

class ArtifactDetails < Struct.new(
  :minimum_count,
  :maximum_count)
  include Aws::Structure
end

#minimum_countInteger

The minimum number of artifacts allowed for the action type.

Returns:

  • (Integer)


637
638
639
640
641
# File 'lib/aws-sdk-codepipeline/types.rb', line 637

class ArtifactDetails < Struct.new(
  :minimum_count,
  :maximum_count)
  include Aws::Structure
end