Show / Hide Table of Contents

Class CfnPartnerAccountProps

Properties for defining a CfnPartnerAccount.

Inheritance
object
CfnPartnerAccountProps
Implements
ICfnPartnerAccountProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IoTWireless
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPartnerAccountProps : ICfnPartnerAccountProps
Syntax (vb)
Public Class CfnPartnerAccountProps Implements ICfnPartnerAccountProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html

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 CfnPartnerAccount.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-accountlinked

Type union: either bool or IResolvable

PartnerAccountId

The ID of the partner account to update.

public string? PartnerAccountId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-partneraccountid

PartnerType

The partner type.

public string? PartnerType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-partnertype

Sidewalk

The Sidewalk account credentials.

public object? Sidewalk { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-sidewalk

Type union: either IResolvable or CfnPartnerAccount.ISidewalkAccountInfoProperty

SidewalkResponse

Information about a Sidewalk account.

public object? SidewalkResponse { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-sidewalkresponse

Type union: either IResolvable or CfnPartnerAccount.ISidewalkAccountInfoWithFingerprintProperty

SidewalkUpdate

Sidewalk update.

public object? SidewalkUpdate { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-sidewalkupdate

Type union: either IResolvable or CfnPartnerAccount.ISidewalkUpdateAccountProperty

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-tags

Implements

ICfnPartnerAccountProps
Back to top Generated by DocFX