Class ContainerReference
A reference to a Container resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.MediaStore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ContainerReference : IContainerReference
Syntax (vb)
Public Class ContainerReference Implements IContainerReference
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.MediaStore;
var containerReference = new ContainerReference {
ContainerId = "containerId",
ContainerName = "containerName"
};
Synopsis
Constructors
| ContainerReference() | A reference to a Container resource. |
Properties
| ContainerId | The Id of the Container resource. |
| ContainerName | The ContainerName of the Container resource. |
Constructors
ContainerReference()
A reference to a Container resource.
public ContainerReference()
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.MediaStore;
var containerReference = new ContainerReference {
ContainerId = "containerId",
ContainerName = "containerName"
};
Properties
ContainerId
The Id of the Container resource.
public string ContainerId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
ContainerName
The ContainerName of the Container resource.
public string ContainerName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated