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 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)


41
42
43
44
45
46
# File 'lib/aws-sdk-ssm/types.rb', line 41

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)


41
42
43
44
45
46
# File 'lib/aws-sdk-ssm/types.rb', line 41

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