Class: Aws::SSM::Types::AccountSharingInfo

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

Overview

Information includes the AWS account ID where the current document is shared and the version shared with that account.

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The AWS account ID where the current document is shared.

Returns:

  • (String)


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

class AccountSharingInfo < Struct.new(
  :account_id,
  :shared_document_version)
  include Aws::Structure
end

#shared_document_versionString

The version of the current document shared with the account.

Returns:

  • (String)


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

class AccountSharingInfo < Struct.new(
  :account_id,
  :shared_document_version)
  include Aws::Structure
end