interface InfluxDBClusterReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Timestream.InfluxDBClusterReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awstimestream#InfluxDBClusterReference |
Java | software.amazon.awscdk.interfaces.timestream.InfluxDBClusterReference |
Python | aws_cdk.interfaces.aws_timestream.InfluxDBClusterReference |
TypeScript | aws-cdk-lib » interfaces » aws_timestream » InfluxDBClusterReference |
A reference to a InfluxDBCluster resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_timestream as interfaces_timestream } from 'aws-cdk-lib/interfaces';
const influxDBClusterReference: interfaces_timestream.InfluxDBClusterReference = {
influxDbClusterArn: 'influxDbClusterArn',
influxDbClusterId: 'influxDbClusterId',
};
Properties
| Name | Type | Description |
|---|---|---|
| influx | string | The ARN of the InfluxDBCluster resource. |
| influx | string | The Id of the InfluxDBCluster resource. |
influxDbClusterArn
Type:
string
The ARN of the InfluxDBCluster resource.
influxDbClusterId
Type:
string
The Id of the InfluxDBCluster resource.

.NET
Go
Java
Python
TypeScript