Interface CfnPartnerAccountMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartnerAccountMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.518Z")
@Stability(Stable)
public interface CfnPartnerAccountMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPartnerAccountPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotwireless.*;
CfnPartnerAccountMixinProps cfnPartnerAccountMixinProps = CfnPartnerAccountMixinProps.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 forCfnPartnerAccountMixinPropsstatic final classAn implementation forCfnPartnerAccountMixinProps -
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
IResolvableorCfnPartnerAccountPropsMixin.SidewalkAccountInfoProperty- See Also:
-
getSidewalkResponse
Information about a Sidewalk account.Returns union: either
IResolvableorCfnPartnerAccountPropsMixin.SidewalkAccountInfoWithFingerprintProperty- See Also:
-
getSidewalkUpdate
Sidewalk update.Returns union: either
IResolvableorCfnPartnerAccountPropsMixin.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
-