Show / Hide Table of Contents

Class ContainerReference

A reference to a Container resource.

Inheritance
object
ContainerReference
Implements
IContainerReference
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.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

string

Remarks

ExampleMetadata: fixture=_generated

ContainerName

The ContainerName of the Container resource.

public string ContainerName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IContainerReference
Back to top Generated by DocFX