Class CfnPartnerAccountProps
Properties for defining a CfnPartnerAccount.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTWireless
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPartnerAccountProps : ICfnPartnerAccountProps
Syntax (vb)
Public Class CfnPartnerAccountProps Implements ICfnPartnerAccountProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTWireless;
var cfnPartnerAccountProps = new CfnPartnerAccountProps {
AccountLinked = false,
PartnerAccountId = "partnerAccountId",
PartnerType = "partnerType",
Sidewalk = new SidewalkAccountInfoProperty {
AppServerPrivateKey = "appServerPrivateKey"
},
SidewalkResponse = new SidewalkAccountInfoWithFingerprintProperty {
AmazonId = "amazonId",
Arn = "arn",
Fingerprint = "fingerprint"
},
SidewalkUpdate = new SidewalkUpdateAccountProperty {
AppServerPrivateKey = "appServerPrivateKey"
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnPartnerAccountProps() | Properties for defining a |
Properties
| AccountLinked | Whether the partner account is linked to the AWS account. |
| PartnerAccountId | The ID of the partner account to update. |
| PartnerType | The partner type. |
| Sidewalk | The Sidewalk account credentials. |
| SidewalkResponse | Information about a Sidewalk account. |
| SidewalkUpdate | Sidewalk update. |
| Tags | The tags are an array of key-value pairs to attach to the specified resource. |
Constructors
CfnPartnerAccountProps()
Properties for defining a CfnPartnerAccount.
public CfnPartnerAccountProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTWireless;
var cfnPartnerAccountProps = new CfnPartnerAccountProps {
AccountLinked = false,
PartnerAccountId = "partnerAccountId",
PartnerType = "partnerType",
Sidewalk = new SidewalkAccountInfoProperty {
AppServerPrivateKey = "appServerPrivateKey"
},
SidewalkResponse = new SidewalkAccountInfoWithFingerprintProperty {
AmazonId = "amazonId",
Arn = "arn",
Fingerprint = "fingerprint"
},
SidewalkUpdate = new SidewalkUpdateAccountProperty {
AppServerPrivateKey = "appServerPrivateKey"
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
AccountLinked
Whether the partner account is linked to the AWS account.
public object? AccountLinked { get; set; }
Property Value
Remarks
PartnerAccountId
The ID of the partner account to update.
public string? PartnerAccountId { get; set; }
Property Value
Remarks
PartnerType
The partner type.
public string? PartnerType { get; set; }
Property Value
Remarks
Sidewalk
The Sidewalk account credentials.
public object? Sidewalk { get; set; }
Property Value
Remarks
SidewalkResponse
Information about a Sidewalk account.
public object? SidewalkResponse { get; set; }
Property Value
Remarks
SidewalkUpdate
Sidewalk update.
public object? SidewalkUpdate { get; set; }
Property Value
Remarks
Tags
The tags are an array of key-value pairs to attach to the specified resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
Tags can have a minimum of 0 and a maximum of 50 items.