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