Class: Aws::ImportExport::Types::Artifact

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

Overview

A discrete item that contains the description and URL of an artifact (such as a PDF).

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The associated description for this object.

Returns:

  • (String)


24
25
26
27
28
29
# File 'lib/aws-sdk-importexport/types.rb', line 24

class Artifact < Struct.new(
  :description,
  :url)
  SENSITIVE = []
  include Aws::Structure
end

#urlString

The URL for a given Artifact.

Returns:

  • (String)


24
25
26
27
28
29
# File 'lib/aws-sdk-importexport/types.rb', line 24

class Artifact < Struct.new(
  :description,
  :url)
  SENSITIVE = []
  include Aws::Structure
end