Class: Aws::PartnerCentralSelling::Types::AccountReceiver

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

Overview

Contains the account details of the partner who received the Engagement Invitation, including the AWS account ID and company name.

Constant Summary collapse

SENSITIVE =
[:aws_account_id]

Instance Attribute Summary collapse

Instance Attribute Details

#aliasString

Represents the alias of the partner account receiving the Engagement Invitation, making it easier to identify and track the recipient in reports or logs.

Returns:

  • (String)


126
127
128
129
130
131
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 126

class AccountReceiver < Struct.new(
  :alias,
  :aws_account_id)
  SENSITIVE = [:aws_account_id]
  include Aws::Structure
end

#aws_account_idString

Indicates the AWS account ID of the partner who received the Engagement Invitation. This is a unique identifier for managing engagements with specific AWS accounts.

Returns:

  • (String)


126
127
128
129
130
131
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 126

class AccountReceiver < Struct.new(
  :alias,
  :aws_account_id)
  SENSITIVE = [:aws_account_id]
  include Aws::Structure
end