Class: Aws::CodePipeline::Types::Artifact

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

Overview

Represents information about an artifact that will be worked upon by actions in the pipeline.

Instance Attribute Summary collapse

Instance Attribute Details

#locationTypes::ArtifactLocation

The location of an artifact.



610
611
612
613
614
615
# File 'lib/aws-sdk-codepipeline/types.rb', line 610

class Artifact < Struct.new(
  :name,
  :revision,
  :location)
  include Aws::Structure
end

#nameString

The artifact’s name.

Returns:

  • (String)


610
611
612
613
614
615
# File 'lib/aws-sdk-codepipeline/types.rb', line 610

class Artifact < Struct.new(
  :name,
  :revision,
  :location)
  include Aws::Structure
end

#revisionString

The artifact’s revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).

Returns:

  • (String)


610
611
612
613
614
615
# File 'lib/aws-sdk-codepipeline/types.rb', line 610

class Artifact < Struct.new(
  :name,
  :revision,
  :location)
  include Aws::Structure
end