Class: Aws::SSM::Types::AttachmentsSource

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

Overview

Note:

When making an API call, you may pass AttachmentsSource data as a hash:

{
  key: "SourceUrl", # accepts SourceUrl
  values: ["AttachmentsSourceValue"],
}

A key and value pair that identifies the location of an attachment to a document.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of a key and value pair that identifies the location of an attachment to a document.

Returns:

  • (String)


762
763
764
765
766
# File 'lib/aws-sdk-ssm/types.rb', line 762

class AttachmentsSource < Struct.new(
  :key,
  :values)
  include Aws::Structure
end

#valuesArray<String>

The URL of the location of a document attachment, such as the URL of an Amazon S3 bucket.

Returns:

  • (Array<String>)


762
763
764
765
766
# File 'lib/aws-sdk-ssm/types.rb', line 762

class AttachmentsSource < Struct.new(
  :key,
  :values)
  include Aws::Structure
end