Show / Hide Table of Contents

Class ConfigurationReference

A reference to a Configuration resource.

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

            var configurationReference = new ConfigurationReference {
                ConfigurationArn = "configurationArn",
                ConfigurationName = "configurationName"
            };

Synopsis

Constructors

ConfigurationReference()

A reference to a Configuration resource.

Properties

ConfigurationArn

The ARN of the Configuration resource.

ConfigurationName

The Name of the Configuration resource.

Constructors

ConfigurationReference()

A reference to a Configuration resource.

public ConfigurationReference()
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.Omics;

            var configurationReference = new ConfigurationReference {
                ConfigurationArn = "configurationArn",
                ConfigurationName = "configurationName"
            };

Properties

ConfigurationArn

The ARN of the Configuration resource.

public string ConfigurationArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

ConfigurationName

The Name of the Configuration resource.

public string ConfigurationName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IConfigurationReference
Back to top Generated by DocFX