Interface CfnPartnerAccountProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartnerAccountProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:23.615Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPartnerAccountPropsstatic final classAn implementation forCfnPartnerAccountProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectWhether the partner account is linked to the AWS account.default StringThe ID of the partner account to update.default StringThe partner type.default ObjectThe Sidewalk account credentials.default ObjectInformation about a Sidewalk account.default ObjectSidewalk update.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
Whether the partner account is linked to the AWS account.Returns union: either
BooleanorIResolvable- See Also:
-
getPartnerAccountId
The ID of the partner account to update.- See Also:
-
getPartnerType
The partner type.- See Also:
-
getSidewalk
The Sidewalk account credentials.Returns union: either
IResolvableorCfnPartnerAccount.SidewalkAccountInfoProperty- See Also:
-
getSidewalkResponse
Information about a Sidewalk account.Returns union: either
IResolvableorCfnPartnerAccount.SidewalkAccountInfoWithFingerprintProperty- See Also:
-
getSidewalkUpdate
Sidewalk update.Returns union: either
IResolvableorCfnPartnerAccount.SidewalkUpdateAccountProperty- See Also:
-
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.
- See Also:
-
builder
- Returns:
- a
CfnPartnerAccountProps.BuilderofCfnPartnerAccountProps
-