Show / Hide Table of Contents

Class InfluxDBInstanceReference

A reference to a InfluxDBInstance resource.

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

            var influxDBInstanceReference = new InfluxDBInstanceReference {
                InfluxDbInstanceArn = "influxDbInstanceArn",
                InfluxDbInstanceId = "influxDbInstanceId"
            };

Synopsis

Constructors

InfluxDBInstanceReference()

A reference to a InfluxDBInstance resource.

Properties

InfluxDbInstanceArn

The ARN of the InfluxDBInstance resource.

InfluxDbInstanceId

The Id of the InfluxDBInstance resource.

Constructors

InfluxDBInstanceReference()

A reference to a InfluxDBInstance resource.

public InfluxDBInstanceReference()
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.Timestream;

            var influxDBInstanceReference = new InfluxDBInstanceReference {
                InfluxDbInstanceArn = "influxDbInstanceArn",
                InfluxDbInstanceId = "influxDbInstanceId"
            };

Properties

InfluxDbInstanceArn

The ARN of the InfluxDBInstance resource.

public string InfluxDbInstanceArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

InfluxDbInstanceId

The Id of the InfluxDBInstance resource.

public string InfluxDbInstanceId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IInfluxDBInstanceReference
Back to top Generated by DocFX