interface InfluxDBInstanceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Timestream.InfluxDBInstanceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awstimestream#InfluxDBInstanceReference |
Java | software.amazon.awscdk.interfaces.timestream.InfluxDBInstanceReference |
Python | aws_cdk.interfaces.aws_timestream.InfluxDBInstanceReference |
TypeScript | aws-cdk-lib » interfaces » aws_timestream » InfluxDBInstanceReference |
A reference to a InfluxDBInstance 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_aws_timestream } from 'aws-cdk-lib/interfaces';
const influxDBInstanceReference: interfaces_aws_timestream.InfluxDBInstanceReference = {
influxDbInstanceArn: 'influxDbInstanceArn',
influxDbInstanceId: 'influxDbInstanceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| influx | string | The ARN of the InfluxDBInstance resource. |
| influx | string | The Id of the InfluxDBInstance resource. |
influxDbInstanceArn
Type:
string
The ARN of the InfluxDBInstance resource.
influxDbInstanceId
Type:
string
The Id of the InfluxDBInstance resource.

.NET
Go
Java
Python
TypeScript