Show / Hide Table of Contents

Class PartnershipReference

A reference to a Partnership resource.

Inheritance
object
PartnershipReference
Implements
IPartnershipReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

PartnershipId

The PartnershipId of the Partnership resource.

public string PartnershipId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IPartnershipReference
Back to top Generated by DocFX