interface CfnPartnerAccountProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoTWireless.CfnPartnerAccountProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnPartnerAccountProps | 
|  Java | software.amazon.awscdk.services.iotwireless.CfnPartnerAccountProps | 
|  Python | aws_cdk.aws_iotwireless.CfnPartnerAccountProps | 
|  TypeScript | aws-cdk-lib»aws_iotwireless»CfnPartnerAccountProps | 
Properties for defining a CfnPartnerAccount.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotwireless as iotwireless } from 'aws-cdk-lib';
const cfnPartnerAccountProps: iotwireless.CfnPartnerAccountProps = {
  accountLinked: false,
  partnerAccountId: 'partnerAccountId',
  partnerType: 'partnerType',
  sidewalk: {
    appServerPrivateKey: 'appServerPrivateKey',
  },
  sidewalkResponse: {
    amazonId: 'amazonId',
    arn: 'arn',
    fingerprint: 'fingerprint',
  },
  sidewalkUpdate: {
    appServerPrivateKey: 'appServerPrivateKey',
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| account | boolean | IResolvable | Whether the partner account is linked to the AWS account. | 
| partner | string | The ID of the partner account to update. | 
| partner | string | The partner type. | 
| sidewalk? | IResolvable | Sidewalk | The Sidewalk account credentials. | 
| sidewalk | IResolvable | Sidewalk | Information about a Sidewalk account. | 
| sidewalk | IResolvable | Sidewalk | Sidewalk update. | 
| tags? | Cfn[] | The tags are an array of key-value pairs to attach to the specified resource. | 
accountLinked?
Type:
boolean | IResolvable
(optional)
Whether the partner account is linked to the AWS account.
partnerAccountId?
Type:
string
(optional)
The ID of the partner account to update.
partnerType?
Type:
string
(optional)
The partner type.
sidewalk?
Type:
IResolvable | Sidewalk
(optional)
The Sidewalk account credentials.
sidewalkResponse?
Type:
IResolvable | Sidewalk
(optional)
Information about a Sidewalk account.
sidewalkUpdate?
Type:
IResolvable | Sidewalk
(optional)
Sidewalk update.
tags?
Type:
Cfn[]
(optional)
The tags are an array of key-value pairs to attach to the specified resource.
Tags can have a minimum of 0 and a maximum of 50 items.
