Show / Hide Table of Contents

Class PackagingGroupReference

A reference to a PackagingGroup resource.

Inheritance
object
PackagingGroupReference
Implements
IPackagingGroupReference
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.MediaPackage
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PackagingGroupReference : IPackagingGroupReference
Syntax (vb)
Public Class PackagingGroupReference Implements IPackagingGroupReference
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.MediaPackage;

            var packagingGroupReference = new PackagingGroupReference {
                PackagingGroupArn = "packagingGroupArn",
                PackagingGroupId = "packagingGroupId"
            };

Synopsis

Constructors

PackagingGroupReference()

A reference to a PackagingGroup resource.

Properties

PackagingGroupArn

The ARN of the PackagingGroup resource.

PackagingGroupId

The Id of the PackagingGroup resource.

Constructors

PackagingGroupReference()

A reference to a PackagingGroup resource.

public PackagingGroupReference()
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.MediaPackage;

            var packagingGroupReference = new PackagingGroupReference {
                PackagingGroupArn = "packagingGroupArn",
                PackagingGroupId = "packagingGroupId"
            };

Properties

PackagingGroupArn

The ARN of the PackagingGroup resource.

public string PackagingGroupArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

PackagingGroupId

The Id of the PackagingGroup resource.

public string PackagingGroupId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IPackagingGroupReference
Back to top Generated by DocFX