interface CfnPartnerAccountMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnPartnerAccountMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnPartnerAccountMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnPartnerAccountMixinProps |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnPartnerAccountMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnPartnerAccountMixinProps |
Properties for CfnPartnerAccountPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotwireless_mixins } from '@aws-cdk/mixins-preview/aws-iotwireless';
const cfnPartnerAccountMixinProps: iotwireless_mixins.CfnPartnerAccountMixinProps = {
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.

.NET
Go
Java
Python
TypeScript