Class: Aws::PartnerCentralAccount::Types::QualificationsAssociationPartner
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralAccount::Types::QualificationsAssociationPartner
- Defined in:
- gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb
Overview
Identifies a partner in a qualifications association group. Contains
the partner's profile identifier and AWS account identifier. In
requests, provide at least one of ProfileId or AccountId. In
responses, both fields are populated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The 12-digit AWS account ID linked to the partner profile.
-
#profile_id ⇒ String
The unique identifier for the partner profile, in the format
pprofile-*.
Instance Attribute Details
#account_id ⇒ String
The 12-digit AWS account ID linked to the partner profile. Required
in requests if ProfileId is not provided.
2289 2290 2291 2292 2293 2294 |
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 2289 class QualificationsAssociationPartner < Struct.new( :profile_id, :account_id) SENSITIVE = [] include Aws::Structure end |
#profile_id ⇒ String
The unique identifier for the partner profile, in the format
pprofile-*. Required in requests if AccountId is not provided.
2289 2290 2291 2292 2293 2294 |
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 2289 class QualificationsAssociationPartner < Struct.new( :profile_id, :account_id) SENSITIVE = [] include Aws::Structure end |