PartnerAccountReference
- class aws_cdk.aws_iotwireless.PartnerAccountReference(*, partner_account_arn, partner_account_id)
Bases:
object
A reference to a PartnerAccount resource.
- Parameters:
partner_account_arn (
str
) – The ARN of the PartnerAccount resource.partner_account_id (
str
) – The PartnerAccountId of the PartnerAccount resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_iotwireless as iotwireless partner_account_reference = iotwireless.PartnerAccountReference( partner_account_arn="partnerAccountArn", partner_account_id="partnerAccountId" )
Attributes
- partner_account_arn
The ARN of the PartnerAccount resource.
- partner_account_id
The PartnerAccountId of the PartnerAccount resource.