Class: Aws::PartnerCentralSelling::Types::AccountReceiver
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::AccountReceiver
- 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
-
#alias ⇒ String
Represents the alias of the partner account receiving the Engagement Invitation, making it easier to identify and track the recipient in reports or logs.
-
#aws_account_id ⇒ String
Indicates the AWS account ID of the partner who received the Engagement Invitation.
Instance Attribute Details
#alias ⇒ String
Represents the alias of the partner account receiving the Engagement Invitation, making it easier to identify and track the recipient in reports or logs.
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_id ⇒ String
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.
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 |