Show / Hide Table of Contents

Class AssetReference

A reference to a Asset resource.

Inheritance
object
AssetReference
Implements
IAssetReference
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 AssetReference : IAssetReference
Syntax (vb)
Public Class AssetReference Implements IAssetReference
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 assetReference = new AssetReference {
                AssetArn = "assetArn",
                AssetId = "assetId"
            };

Synopsis

Constructors

AssetReference()

A reference to a Asset resource.

Properties

AssetArn

The ARN of the Asset resource.

AssetId

The Id of the Asset resource.

Constructors

AssetReference()

A reference to a Asset resource.

public AssetReference()
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 assetReference = new AssetReference {
                AssetArn = "assetArn",
                AssetId = "assetId"
            };

Properties

AssetArn

The ARN of the Asset resource.

public string AssetArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

AssetId

The Id of the Asset resource.

public string AssetId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IAssetReference
Back to top Generated by DocFX