Interface CfnPartnerAccountProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartnerAccountProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.988Z")
@Stability(Stable)
public interface CfnPartnerAccountProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotwireless.*; CfnPartnerAccountProps cfnPartnerAccountProps = CfnPartnerAccountProps.builder() .accountLinked(false) .partnerAccountId("partnerAccountId") .partnerType("partnerType") .sidewalk(SidewalkAccountInfoProperty.builder() .appServerPrivateKey("appServerPrivateKey") .build()) .sidewalkResponse(SidewalkAccountInfoWithFingerprintProperty.builder() .amazonId("amazonId") .arn("arn") .fingerprint("fingerprint") .build()) .sidewalkUpdate(SidewalkUpdateAccountProperty.builder() .appServerPrivateKey("appServerPrivateKey") .build()) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPartnerAccountProps
static final class
An implementation forCfnPartnerAccountProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
AWS::IoTWireless::PartnerAccount.AccountLinked
.default String
The ID of the partner account to update.default String
AWS::IoTWireless::PartnerAccount.PartnerType
.default Object
The Sidewalk account credentials.default Object
AWS::IoTWireless::PartnerAccount.SidewalkResponse
.default Object
AWS::IoTWireless::PartnerAccount.SidewalkUpdate
.getTags()
The tags are an array of key-value pairs to attach to the specified resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountLinked
AWS::IoTWireless::PartnerAccount.AccountLinked
. -
getPartnerAccountId
The ID of the partner account to update. -
getPartnerType
AWS::IoTWireless::PartnerAccount.PartnerType
. -
getSidewalk
The Sidewalk account credentials. -
getSidewalkResponse
AWS::IoTWireless::PartnerAccount.SidewalkResponse
. -
getSidewalkUpdate
AWS::IoTWireless::PartnerAccount.SidewalkUpdate
. -
getTags
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.
-
builder
- Returns:
- a
CfnPartnerAccountProps.Builder
ofCfnPartnerAccountProps
-