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

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

Overview

Information includes the Amazon Web Services account ID where the current document is shared and the version shared with that account.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The Amazon Web Services account ID where the current document is shared.

Returns:

  • (String)


27
28
29
30
31
32
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 27

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

#shared_document_versionString

The version of the current document shared with the account.

Returns:

  • (String)


27
28
29
30
31
32
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 27

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