Class AssetReference
A reference to a Asset resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
AssetId
The Id of the Asset resource.
public string AssetId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated