CfnPartnerAccountProps
- class aws_cdk.aws_iotwireless.CfnPartnerAccountProps(*, account_linked=None, partner_account_id=None, partner_type=None, sidewalk=None, sidewalk_response=None, sidewalk_update=None, tags=None)
Bases:
object
Properties for defining a
CfnPartnerAccount
.- Parameters:
account_linked (
Union
[bool
,IResolvable
,None
]) –AWS::IoTWireless::PartnerAccount.AccountLinked
.partner_account_id (
Optional
[str
]) – The ID of the partner account to update.partner_type (
Optional
[str
]) –AWS::IoTWireless::PartnerAccount.PartnerType
.sidewalk (
Union
[IResolvable
,SidewalkAccountInfoProperty
,Dict
[str
,Any
],None
]) – The Sidewalk account credentials.sidewalk_response (
Union
[IResolvable
,SidewalkAccountInfoWithFingerprintProperty
,Dict
[str
,Any
],None
]) –AWS::IoTWireless::PartnerAccount.SidewalkResponse
.sidewalk_update (
Union
[IResolvable
,SidewalkUpdateAccountProperty
,Dict
[str
,Any
],None
]) –AWS::IoTWireless::PartnerAccount.SidewalkUpdate
.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – 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.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_iotwireless as iotwireless cfn_partner_account_props = iotwireless.CfnPartnerAccountProps( account_linked=False, partner_account_id="partnerAccountId", partner_type="partnerType", sidewalk=iotwireless.CfnPartnerAccount.SidewalkAccountInfoProperty( app_server_private_key="appServerPrivateKey" ), sidewalk_response=iotwireless.CfnPartnerAccount.SidewalkAccountInfoWithFingerprintProperty( amazon_id="amazonId", arn="arn", fingerprint="fingerprint" ), sidewalk_update=iotwireless.CfnPartnerAccount.SidewalkUpdateAccountProperty( app_server_private_key="appServerPrivateKey" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- account_linked
AWS::IoTWireless::PartnerAccount.AccountLinked
.
- partner_account_id
The ID of the partner account to update.
- partner_type
AWS::IoTWireless::PartnerAccount.PartnerType
.
- sidewalk
The Sidewalk account credentials.
- sidewalk_response
AWS::IoTWireless::PartnerAccount.SidewalkResponse
.
- sidewalk_update
AWS::IoTWireless::PartnerAccount.SidewalkUpdate
.
- tags
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.