Class PartnershipReference
A reference to a Partnership resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.B2BI
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PartnershipReference : IPartnershipReference
Syntax (vb)
Public Class PartnershipReference Implements IPartnershipReference
Remarks
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.Interfaces.B2BI;
var partnershipReference = new PartnershipReference {
PartnershipArn = "partnershipArn",
PartnershipId = "partnershipId"
};
Synopsis
Constructors
| PartnershipReference() | A reference to a Partnership resource. |
Properties
| PartnershipArn | The ARN of the Partnership resource. |
| PartnershipId | The PartnershipId of the Partnership resource. |
Constructors
PartnershipReference()
A reference to a Partnership resource.
public PartnershipReference()
Remarks
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.Interfaces.B2BI;
var partnershipReference = new PartnershipReference {
PartnershipArn = "partnershipArn",
PartnershipId = "partnershipId"
};
Properties
PartnershipArn
The ARN of the Partnership resource.
public string PartnershipArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
PartnershipId
The PartnershipId of the Partnership resource.
public string PartnershipId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated