1. Packages
  2. Packages
  3. AWS
  4. API Docs
  5. timestreaminfluxdb
  6. DbInstance
Viewing docs for AWS v7.30.0
published on Thursday, May 14, 2026 by Pulumi
aws logo
Viewing docs for AWS v7.30.0
published on Thursday, May 14, 2026 by Pulumi

    Resource for managing an Amazon Timestream for InfluxDB database instance.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.timestreaminfluxdb.DbInstance("example", {
        allocatedStorage: 20,
        bucket: "example-bucket-name",
        dbInstanceType: "db.influx.medium",
        username: "admin",
        password: "example-password",
        port: 8086,
        organization: "organization",
        vpcSubnetIds: [exampleid],
        vpcSecurityGroupIds: [exampleAwsSecurityGroup.id],
        name: "example-db-instance",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.timestreaminfluxdb.DbInstance("example",
        allocated_storage=20,
        bucket="example-bucket-name",
        db_instance_type="db.influx.medium",
        username="admin",
        password="example-password",
        port=8086,
        organization="organization",
        vpc_subnet_ids=[exampleid],
        vpc_security_group_ids=[example_aws_security_group["id"]],
        name="example-db-instance")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/timestreaminfluxdb"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := timestreaminfluxdb.NewDbInstance(ctx, "example", &timestreaminfluxdb.DbInstanceArgs{
    			AllocatedStorage: pulumi.Int(20),
    			Bucket:           pulumi.String("example-bucket-name"),
    			DbInstanceType:   pulumi.String("db.influx.medium"),
    			Username:         pulumi.String("admin"),
    			Password:         pulumi.String("example-password"),
    			Port:             pulumi.Int(8086),
    			Organization:     pulumi.String("organization"),
    			VpcSubnetIds: pulumi.StringArray{
    				exampleid,
    			},
    			VpcSecurityGroupIds: pulumi.StringArray{
    				exampleAwsSecurityGroup.Id,
    			},
    			Name: pulumi.String("example-db-instance"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.TimestreamInfluxDB.DbInstance("example", new()
        {
            AllocatedStorage = 20,
            Bucket = "example-bucket-name",
            DbInstanceType = "db.influx.medium",
            Username = "admin",
            Password = "example-password",
            Port = 8086,
            Organization = "organization",
            VpcSubnetIds = new[]
            {
                exampleid,
            },
            VpcSecurityGroupIds = new[]
            {
                exampleAwsSecurityGroup.Id,
            },
            Name = "example-db-instance",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.timestreaminfluxdb.DbInstance;
    import com.pulumi.aws.timestreaminfluxdb.DbInstanceArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new DbInstance("example", DbInstanceArgs.builder()
                .allocatedStorage(20)
                .bucket("example-bucket-name")
                .dbInstanceType("db.influx.medium")
                .username("admin")
                .password("example-password")
                .port(8086)
                .organization("organization")
                .vpcSubnetIds(exampleid)
                .vpcSecurityGroupIds(exampleAwsSecurityGroup.id())
                .name("example-db-instance")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:timestreaminfluxdb:DbInstance
        properties:
          allocatedStorage: 20
          bucket: example-bucket-name
          dbInstanceType: db.influx.medium
          username: admin
          password: example-password
          port: 8086
          organization: organization
          vpcSubnetIds:
            - ${exampleid}
          vpcSecurityGroupIds:
            - ${exampleAwsSecurityGroup.id}
          name: example-db-instance
    
    Example coming soon!
    

    Usage with Prerequisite Resources

    All Timestream for InfluxDB instances require a VPC, subnet, and security group. The following example shows how these prerequisite resources can be created and used with aws.timestreaminfluxdb.DbInstance.

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.ec2.Vpc("example", {cidrBlock: "10.0.0.0/16"});
    const exampleSubnet = new aws.ec2.Subnet("example", {
        vpcId: example.id,
        cidrBlock: "10.0.1.0/24",
    });
    const exampleSecurityGroup = new aws.ec2.SecurityGroup("example", {
        name: "example",
        vpcId: example.id,
    });
    const exampleDbInstance = new aws.timestreaminfluxdb.DbInstance("example", {
        allocatedStorage: 20,
        bucket: "example-bucket-name",
        dbInstanceType: "db.influx.medium",
        username: "admin",
        password: "example-password",
        organization: "organization",
        vpcSubnetIds: [exampleSubnet.id],
        vpcSecurityGroupIds: [exampleSecurityGroup.id],
        name: "example-db-instance",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.ec2.Vpc("example", cidr_block="10.0.0.0/16")
    example_subnet = aws.ec2.Subnet("example",
        vpc_id=example.id,
        cidr_block="10.0.1.0/24")
    example_security_group = aws.ec2.SecurityGroup("example",
        name="example",
        vpc_id=example.id)
    example_db_instance = aws.timestreaminfluxdb.DbInstance("example",
        allocated_storage=20,
        bucket="example-bucket-name",
        db_instance_type="db.influx.medium",
        username="admin",
        password="example-password",
        organization="organization",
        vpc_subnet_ids=[example_subnet.id],
        vpc_security_group_ids=[example_security_group.id],
        name="example-db-instance")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/ec2"
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/timestreaminfluxdb"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := ec2.NewVpc(ctx, "example", &ec2.VpcArgs{
    			CidrBlock: pulumi.String("10.0.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleSubnet, err := ec2.NewSubnet(ctx, "example", &ec2.SubnetArgs{
    			VpcId:     example.ID(),
    			CidrBlock: pulumi.String("10.0.1.0/24"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleSecurityGroup, err := ec2.NewSecurityGroup(ctx, "example", &ec2.SecurityGroupArgs{
    			Name:  pulumi.String("example"),
    			VpcId: example.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = timestreaminfluxdb.NewDbInstance(ctx, "example", &timestreaminfluxdb.DbInstanceArgs{
    			AllocatedStorage: pulumi.Int(20),
    			Bucket:           pulumi.String("example-bucket-name"),
    			DbInstanceType:   pulumi.String("db.influx.medium"),
    			Username:         pulumi.String("admin"),
    			Password:         pulumi.String("example-password"),
    			Organization:     pulumi.String("organization"),
    			VpcSubnetIds: pulumi.StringArray{
    				exampleSubnet.ID(),
    			},
    			VpcSecurityGroupIds: pulumi.StringArray{
    				exampleSecurityGroup.ID(),
    			},
    			Name: pulumi.String("example-db-instance"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Ec2.Vpc("example", new()
        {
            CidrBlock = "10.0.0.0/16",
        });
    
        var exampleSubnet = new Aws.Ec2.Subnet("example", new()
        {
            VpcId = example.Id,
            CidrBlock = "10.0.1.0/24",
        });
    
        var exampleSecurityGroup = new Aws.Ec2.SecurityGroup("example", new()
        {
            Name = "example",
            VpcId = example.Id,
        });
    
        var exampleDbInstance = new Aws.TimestreamInfluxDB.DbInstance("example", new()
        {
            AllocatedStorage = 20,
            Bucket = "example-bucket-name",
            DbInstanceType = "db.influx.medium",
            Username = "admin",
            Password = "example-password",
            Organization = "organization",
            VpcSubnetIds = new[]
            {
                exampleSubnet.Id,
            },
            VpcSecurityGroupIds = new[]
            {
                exampleSecurityGroup.Id,
            },
            Name = "example-db-instance",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ec2.Vpc;
    import com.pulumi.aws.ec2.VpcArgs;
    import com.pulumi.aws.ec2.Subnet;
    import com.pulumi.aws.ec2.SubnetArgs;
    import com.pulumi.aws.ec2.SecurityGroup;
    import com.pulumi.aws.ec2.SecurityGroupArgs;
    import com.pulumi.aws.timestreaminfluxdb.DbInstance;
    import com.pulumi.aws.timestreaminfluxdb.DbInstanceArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Vpc("example", VpcArgs.builder()
                .cidrBlock("10.0.0.0/16")
                .build());
    
            var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
                .vpcId(example.id())
                .cidrBlock("10.0.1.0/24")
                .build());
    
            var exampleSecurityGroup = new SecurityGroup("exampleSecurityGroup", SecurityGroupArgs.builder()
                .name("example")
                .vpcId(example.id())
                .build());
    
            var exampleDbInstance = new DbInstance("exampleDbInstance", DbInstanceArgs.builder()
                .allocatedStorage(20)
                .bucket("example-bucket-name")
                .dbInstanceType("db.influx.medium")
                .username("admin")
                .password("example-password")
                .organization("organization")
                .vpcSubnetIds(exampleSubnet.id())
                .vpcSecurityGroupIds(exampleSecurityGroup.id())
                .name("example-db-instance")
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:ec2:Vpc
        properties:
          cidrBlock: 10.0.0.0/16
      exampleSubnet:
        type: aws:ec2:Subnet
        name: example
        properties:
          vpcId: ${example.id}
          cidrBlock: 10.0.1.0/24
      exampleSecurityGroup:
        type: aws:ec2:SecurityGroup
        name: example
        properties:
          name: example
          vpcId: ${example.id}
      exampleDbInstance:
        type: aws:timestreaminfluxdb:DbInstance
        name: example
        properties:
          allocatedStorage: 20
          bucket: example-bucket-name
          dbInstanceType: db.influx.medium
          username: admin
          password: example-password
          organization: organization
          vpcSubnetIds:
            - ${exampleSubnet.id}
          vpcSecurityGroupIds:
            - ${exampleSecurityGroup.id}
          name: example-db-instance
    
    Example coming soon!
    

    Usage with S3 Log Delivery Enabled

    You can use an S3 bucket to store logs generated by your Timestream for InfluxDB instance. The following example shows what resources and arguments are required to configure an S3 bucket for logging, including the IAM policy that needs to be set in order to allow Timestream for InfluxDB to place logs in your S3 bucket. The configuration of the required VPC, security group, and subnet have been left out of the example for brevity.

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const exampleBucket = new aws.s3.Bucket("example", {
        bucket: "example-s3-bucket",
        forceDestroy: true,
    });
    const example = aws.iam.getPolicyDocumentOutput({
        statements: [{
            actions: ["s3:PutObject"],
            principals: [{
                type: "Service",
                identifiers: ["timestream-influxdb.amazonaws.com"],
            }],
            resources: [pulumi.interpolate`${exampleBucket.arn}/*`],
        }],
    });
    const exampleBucketPolicy = new aws.s3.BucketPolicy("example", {
        bucket: exampleBucket.id,
        policy: example.apply(example => example.json),
    });
    const exampleDbInstance = new aws.timestreaminfluxdb.DbInstance("example", {
        allocatedStorage: 20,
        bucket: "example-bucket-name",
        dbInstanceType: "db.influx.medium",
        username: "admin",
        password: "example-password",
        organization: "organization",
        vpcSubnetIds: [exampleAwsSubnet.id],
        vpcSecurityGroupIds: [exampleAwsSecurityGroup.id],
        name: "example-db-instance",
        logDeliveryConfiguration: {
            s3Configuration: {
                bucketName: exampleBucket.bucket,
                enabled: true,
            },
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example_bucket = aws.s3.Bucket("example",
        bucket="example-s3-bucket",
        force_destroy=True)
    example = aws.iam.get_policy_document_output(statements=[{
        "actions": ["s3:PutObject"],
        "principals": [{
            "type": "Service",
            "identifiers": ["timestream-influxdb.amazonaws.com"],
        }],
        "resources": [example_bucket.arn.apply(lambda arn: f"{arn}/*")],
    }])
    example_bucket_policy = aws.s3.BucketPolicy("example",
        bucket=example_bucket.id,
        policy=example.json)
    example_db_instance = aws.timestreaminfluxdb.DbInstance("example",
        allocated_storage=20,
        bucket="example-bucket-name",
        db_instance_type="db.influx.medium",
        username="admin",
        password="example-password",
        organization="organization",
        vpc_subnet_ids=[example_aws_subnet["id"]],
        vpc_security_group_ids=[example_aws_security_group["id"]],
        name="example-db-instance",
        log_delivery_configuration={
            "s3_configuration": {
                "bucket_name": example_bucket.bucket,
                "enabled": True,
            },
        })
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/iam"
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/s3"
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/timestreaminfluxdb"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleBucket, err := s3.NewBucket(ctx, "example", &s3.BucketArgs{
    			Bucket:       pulumi.String("example-s3-bucket"),
    			ForceDestroy: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		example := iam.GetPolicyDocumentOutput(ctx, iam.GetPolicyDocumentOutputArgs{
    			Statements: iam.GetPolicyDocumentStatementArray{
    				&iam.GetPolicyDocumentStatementArgs{
    					Actions: pulumi.StringArray{
    						pulumi.String("s3:PutObject"),
    					},
    					Principals: iam.GetPolicyDocumentStatementPrincipalArray{
    						&iam.GetPolicyDocumentStatementPrincipalArgs{
    							Type: pulumi.String("Service"),
    							Identifiers: pulumi.StringArray{
    								pulumi.String("timestream-influxdb.amazonaws.com"),
    							},
    						},
    					},
    					Resources: pulumi.StringArray{
    						exampleBucket.Arn.ApplyT(func(arn string) (string, error) {
    							return fmt.Sprintf("%v/*", arn), nil
    						}).(pulumi.StringOutput),
    					},
    				},
    			},
    		}, nil)
    		_, err = s3.NewBucketPolicy(ctx, "example", &s3.BucketPolicyArgs{
    			Bucket: exampleBucket.ID(),
    			Policy: pulumi.String(example.ApplyT(func(example iam.GetPolicyDocumentResult) (*string, error) {
    				return &example.Json, nil
    			}).(pulumi.StringPtrOutput)),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = timestreaminfluxdb.NewDbInstance(ctx, "example", &timestreaminfluxdb.DbInstanceArgs{
    			AllocatedStorage: pulumi.Int(20),
    			Bucket:           pulumi.String("example-bucket-name"),
    			DbInstanceType:   pulumi.String("db.influx.medium"),
    			Username:         pulumi.String("admin"),
    			Password:         pulumi.String("example-password"),
    			Organization:     pulumi.String("organization"),
    			VpcSubnetIds: pulumi.StringArray{
    				exampleAwsSubnet.Id,
    			},
    			VpcSecurityGroupIds: pulumi.StringArray{
    				exampleAwsSecurityGroup.Id,
    			},
    			Name: pulumi.String("example-db-instance"),
    			LogDeliveryConfiguration: &timestreaminfluxdb.DbInstanceLogDeliveryConfigurationArgs{
    				S3Configuration: &timestreaminfluxdb.DbInstanceLogDeliveryConfigurationS3ConfigurationArgs{
    					BucketName: exampleBucket.Bucket,
    					Enabled:    pulumi.Bool(true),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleBucket = new Aws.S3.Bucket("example", new()
        {
            BucketName = "example-s3-bucket",
            ForceDestroy = true,
        });
    
        var example = Aws.Iam.GetPolicyDocument.Invoke(new()
        {
            Statements = new[]
            {
                new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
                {
                    Actions = new[]
                    {
                        "s3:PutObject",
                    },
                    Principals = new[]
                    {
                        new Aws.Iam.Inputs.GetPolicyDocumentStatementPrincipalInputArgs
                        {
                            Type = "Service",
                            Identifiers = new[]
                            {
                                "timestream-influxdb.amazonaws.com",
                            },
                        },
                    },
                    Resources = new[]
                    {
                        $"{exampleBucket.Arn}/*",
                    },
                },
            },
        });
    
        var exampleBucketPolicy = new Aws.S3.BucketPolicy("example", new()
        {
            Bucket = exampleBucket.Id,
            Policy = example.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
        });
    
        var exampleDbInstance = new Aws.TimestreamInfluxDB.DbInstance("example", new()
        {
            AllocatedStorage = 20,
            Bucket = "example-bucket-name",
            DbInstanceType = "db.influx.medium",
            Username = "admin",
            Password = "example-password",
            Organization = "organization",
            VpcSubnetIds = new[]
            {
                exampleAwsSubnet.Id,
            },
            VpcSecurityGroupIds = new[]
            {
                exampleAwsSecurityGroup.Id,
            },
            Name = "example-db-instance",
            LogDeliveryConfiguration = new Aws.TimestreamInfluxDB.Inputs.DbInstanceLogDeliveryConfigurationArgs
            {
                S3Configuration = new Aws.TimestreamInfluxDB.Inputs.DbInstanceLogDeliveryConfigurationS3ConfigurationArgs
                {
                    BucketName = exampleBucket.BucketName,
                    Enabled = true,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.s3.Bucket;
    import com.pulumi.aws.s3.BucketArgs;
    import com.pulumi.aws.iam.IamFunctions;
    import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
    import com.pulumi.aws.s3.BucketPolicy;
    import com.pulumi.aws.s3.BucketPolicyArgs;
    import com.pulumi.aws.timestreaminfluxdb.DbInstance;
    import com.pulumi.aws.timestreaminfluxdb.DbInstanceArgs;
    import com.pulumi.aws.timestreaminfluxdb.inputs.DbInstanceLogDeliveryConfigurationArgs;
    import com.pulumi.aws.timestreaminfluxdb.inputs.DbInstanceLogDeliveryConfigurationS3ConfigurationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var exampleBucket = new Bucket("exampleBucket", BucketArgs.builder()
                .bucket("example-s3-bucket")
                .forceDestroy(true)
                .build());
    
            final var example = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
                .statements(GetPolicyDocumentStatementArgs.builder()
                    .actions("s3:PutObject")
                    .principals(GetPolicyDocumentStatementPrincipalArgs.builder()
                        .type("Service")
                        .identifiers("timestream-influxdb.amazonaws.com")
                        .build())
                    .resources(exampleBucket.arn().applyValue(_arn -> String.format("%s/*", _arn)))
                    .build())
                .build());
    
            var exampleBucketPolicy = new BucketPolicy("exampleBucketPolicy", BucketPolicyArgs.builder()
                .bucket(exampleBucket.id())
                .policy(example.applyValue(_example -> _example.json()))
                .build());
    
            var exampleDbInstance = new DbInstance("exampleDbInstance", DbInstanceArgs.builder()
                .allocatedStorage(20)
                .bucket("example-bucket-name")
                .dbInstanceType("db.influx.medium")
                .username("admin")
                .password("example-password")
                .organization("organization")
                .vpcSubnetIds(exampleAwsSubnet.id())
                .vpcSecurityGroupIds(exampleAwsSecurityGroup.id())
                .name("example-db-instance")
                .logDeliveryConfiguration(DbInstanceLogDeliveryConfigurationArgs.builder()
                    .s3Configuration(DbInstanceLogDeliveryConfigurationS3ConfigurationArgs.builder()
                        .bucketName(exampleBucket.bucket())
                        .enabled(true)
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      exampleBucket:
        type: aws:s3:Bucket
        name: example
        properties:
          bucket: example-s3-bucket
          forceDestroy: true
      exampleBucketPolicy:
        type: aws:s3:BucketPolicy
        name: example
        properties:
          bucket: ${exampleBucket.id}
          policy: ${example.json}
      exampleDbInstance:
        type: aws:timestreaminfluxdb:DbInstance
        name: example
        properties:
          allocatedStorage: 20
          bucket: example-bucket-name
          dbInstanceType: db.influx.medium
          username: admin
          password: example-password
          organization: organization
          vpcSubnetIds:
            - ${exampleAwsSubnet.id}
          vpcSecurityGroupIds:
            - ${exampleAwsSecurityGroup.id}
          name: example-db-instance
          logDeliveryConfiguration:
            s3Configuration:
              bucketName: ${exampleBucket.bucket}
              enabled: true
    variables:
      example:
        fn::invoke:
          function: aws:iam:getPolicyDocument
          arguments:
            statements:
              - actions:
                  - s3:PutObject
                principals:
                  - type: Service
                    identifiers:
                      - timestream-influxdb.amazonaws.com
                resources:
                  - ${exampleBucket.arn}/*
    
    Example coming soon!
    

    Usage with MultiAZ Deployment

    To use multi-region availability, at least two subnets must be created in different availability zones and used with your Timestream for InfluxDB instance.

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example1 = new aws.ec2.Subnet("example_1", {
        vpcId: exampleAwsVpc.id,
        cidrBlock: "10.0.1.0/24",
        availabilityZone: "us-west-2a",
    });
    const example2 = new aws.ec2.Subnet("example_2", {
        vpcId: exampleAwsVpc.id,
        cidrBlock: "10.0.2.0/24",
        availabilityZone: "us-west-2b",
    });
    const example = new aws.timestreaminfluxdb.DbInstance("example", {
        allocatedStorage: 20,
        bucket: "example-bucket-name",
        dbInstanceType: "db.influx.medium",
        deploymentType: "WITH_MULTIAZ_STANDBY",
        username: "admin",
        password: "example-password",
        organization: "organization",
        vpcSubnetIds: [
            example1.id,
            example2.id,
        ],
        vpcSecurityGroupIds: [exampleAwsSecurityGroup.id],
        name: "example-db-instance",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example1 = aws.ec2.Subnet("example_1",
        vpc_id=example_aws_vpc["id"],
        cidr_block="10.0.1.0/24",
        availability_zone="us-west-2a")
    example2 = aws.ec2.Subnet("example_2",
        vpc_id=example_aws_vpc["id"],
        cidr_block="10.0.2.0/24",
        availability_zone="us-west-2b")
    example = aws.timestreaminfluxdb.DbInstance("example",
        allocated_storage=20,
        bucket="example-bucket-name",
        db_instance_type="db.influx.medium",
        deployment_type="WITH_MULTIAZ_STANDBY",
        username="admin",
        password="example-password",
        organization="organization",
        vpc_subnet_ids=[
            example1.id,
            example2.id,
        ],
        vpc_security_group_ids=[example_aws_security_group["id"]],
        name="example-db-instance")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/ec2"
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/timestreaminfluxdb"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example1, err := ec2.NewSubnet(ctx, "example_1", &ec2.SubnetArgs{
    			VpcId:            pulumi.Any(exampleAwsVpc.Id),
    			CidrBlock:        pulumi.String("10.0.1.0/24"),
    			AvailabilityZone: pulumi.String("us-west-2a"),
    		})
    		if err != nil {
    			return err
    		}
    		example2, err := ec2.NewSubnet(ctx, "example_2", &ec2.SubnetArgs{
    			VpcId:            pulumi.Any(exampleAwsVpc.Id),
    			CidrBlock:        pulumi.String("10.0.2.0/24"),
    			AvailabilityZone: pulumi.String("us-west-2b"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = timestreaminfluxdb.NewDbInstance(ctx, "example", &timestreaminfluxdb.DbInstanceArgs{
    			AllocatedStorage: pulumi.Int(20),
    			Bucket:           pulumi.String("example-bucket-name"),
    			DbInstanceType:   pulumi.String("db.influx.medium"),
    			DeploymentType:   pulumi.String("WITH_MULTIAZ_STANDBY"),
    			Username:         pulumi.String("admin"),
    			Password:         pulumi.String("example-password"),
    			Organization:     pulumi.String("organization"),
    			VpcSubnetIds: pulumi.StringArray{
    				example1.ID(),
    				example2.ID(),
    			},
    			VpcSecurityGroupIds: pulumi.StringArray{
    				exampleAwsSecurityGroup.Id,
    			},
    			Name: pulumi.String("example-db-instance"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example1 = new Aws.Ec2.Subnet("example_1", new()
        {
            VpcId = exampleAwsVpc.Id,
            CidrBlock = "10.0.1.0/24",
            AvailabilityZone = "us-west-2a",
        });
    
        var example2 = new Aws.Ec2.Subnet("example_2", new()
        {
            VpcId = exampleAwsVpc.Id,
            CidrBlock = "10.0.2.0/24",
            AvailabilityZone = "us-west-2b",
        });
    
        var example = new Aws.TimestreamInfluxDB.DbInstance("example", new()
        {
            AllocatedStorage = 20,
            Bucket = "example-bucket-name",
            DbInstanceType = "db.influx.medium",
            DeploymentType = "WITH_MULTIAZ_STANDBY",
            Username = "admin",
            Password = "example-password",
            Organization = "organization",
            VpcSubnetIds = new[]
            {
                example1.Id,
                example2.Id,
            },
            VpcSecurityGroupIds = new[]
            {
                exampleAwsSecurityGroup.Id,
            },
            Name = "example-db-instance",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ec2.Subnet;
    import com.pulumi.aws.ec2.SubnetArgs;
    import com.pulumi.aws.timestreaminfluxdb.DbInstance;
    import com.pulumi.aws.timestreaminfluxdb.DbInstanceArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example1 = new Subnet("example1", SubnetArgs.builder()
                .vpcId(exampleAwsVpc.id())
                .cidrBlock("10.0.1.0/24")
                .availabilityZone("us-west-2a")
                .build());
    
            var example2 = new Subnet("example2", SubnetArgs.builder()
                .vpcId(exampleAwsVpc.id())
                .cidrBlock("10.0.2.0/24")
                .availabilityZone("us-west-2b")
                .build());
    
            var example = new DbInstance("example", DbInstanceArgs.builder()
                .allocatedStorage(20)
                .bucket("example-bucket-name")
                .dbInstanceType("db.influx.medium")
                .deploymentType("WITH_MULTIAZ_STANDBY")
                .username("admin")
                .password("example-password")
                .organization("organization")
                .vpcSubnetIds(            
                    example1.id(),
                    example2.id())
                .vpcSecurityGroupIds(exampleAwsSecurityGroup.id())
                .name("example-db-instance")
                .build());
    
        }
    }
    
    resources:
      example1:
        type: aws:ec2:Subnet
        name: example_1
        properties:
          vpcId: ${exampleAwsVpc.id}
          cidrBlock: 10.0.1.0/24
          availabilityZone: us-west-2a
      example2:
        type: aws:ec2:Subnet
        name: example_2
        properties:
          vpcId: ${exampleAwsVpc.id}
          cidrBlock: 10.0.2.0/24
          availabilityZone: us-west-2b
      example:
        type: aws:timestreaminfluxdb:DbInstance
        properties:
          allocatedStorage: 20
          bucket: example-bucket-name
          dbInstanceType: db.influx.medium
          deploymentType: WITH_MULTIAZ_STANDBY
          username: admin
          password: example-password
          organization: organization
          vpcSubnetIds:
            - ${example1.id}
            - ${example2.id}
          vpcSecurityGroupIds:
            - ${exampleAwsSecurityGroup.id}
          name: example-db-instance
    
    Example coming soon!
    

    Create DbInstance Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DbInstance(name: string, args: DbInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def DbInstance(resource_name: str,
                   args: DbInstanceArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def DbInstance(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   organization: Optional[str] = None,
                   bucket: Optional[str] = None,
                   db_instance_type: Optional[str] = None,
                   vpc_subnet_ids: Optional[Sequence[str]] = None,
                   vpc_security_group_ids: Optional[Sequence[str]] = None,
                   allocated_storage: Optional[int] = None,
                   username: Optional[str] = None,
                   password: Optional[str] = None,
                   deployment_type: Optional[str] = None,
                   network_type: Optional[str] = None,
                   name: Optional[str] = None,
                   maintenance_schedule: Optional[DbInstanceMaintenanceScheduleArgs] = None,
                   port: Optional[int] = None,
                   publicly_accessible: Optional[bool] = None,
                   region: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   timeouts: Optional[DbInstanceTimeoutsArgs] = None,
                   log_delivery_configuration: Optional[DbInstanceLogDeliveryConfigurationArgs] = None,
                   db_storage_type: Optional[str] = None,
                   db_parameter_group_identifier: Optional[str] = None)
    func NewDbInstance(ctx *Context, name string, args DbInstanceArgs, opts ...ResourceOption) (*DbInstance, error)
    public DbInstance(string name, DbInstanceArgs args, CustomResourceOptions? opts = null)
    public DbInstance(String name, DbInstanceArgs args)
    public DbInstance(String name, DbInstanceArgs args, CustomResourceOptions options)
    
    type: aws:timestreaminfluxdb:DbInstance
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aws_timestreaminfluxdb_dbinstance" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args DbInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DbInstanceArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DbInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DbInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DbInstanceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var dbInstanceResource = new Aws.TimestreamInfluxDB.DbInstance("dbInstanceResource", new()
    {
        Organization = "string",
        Bucket = "string",
        DbInstanceType = "string",
        VpcSubnetIds = new[]
        {
            "string",
        },
        VpcSecurityGroupIds = new[]
        {
            "string",
        },
        AllocatedStorage = 0,
        Username = "string",
        Password = "string",
        DeploymentType = "string",
        NetworkType = "string",
        Name = "string",
        MaintenanceSchedule = new Aws.TimestreamInfluxDB.Inputs.DbInstanceMaintenanceScheduleArgs
        {
            PreferredMaintenanceWindow = "string",
            Timezone = "string",
        },
        Port = 0,
        PubliclyAccessible = false,
        Region = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.TimestreamInfluxDB.Inputs.DbInstanceTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        LogDeliveryConfiguration = new Aws.TimestreamInfluxDB.Inputs.DbInstanceLogDeliveryConfigurationArgs
        {
            S3Configuration = new Aws.TimestreamInfluxDB.Inputs.DbInstanceLogDeliveryConfigurationS3ConfigurationArgs
            {
                BucketName = "string",
                Enabled = false,
            },
        },
        DbStorageType = "string",
        DbParameterGroupIdentifier = "string",
    });
    
    example, err := timestreaminfluxdb.NewDbInstance(ctx, "dbInstanceResource", &timestreaminfluxdb.DbInstanceArgs{
    	Organization:   pulumi.String("string"),
    	Bucket:         pulumi.String("string"),
    	DbInstanceType: pulumi.String("string"),
    	VpcSubnetIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	VpcSecurityGroupIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AllocatedStorage: pulumi.Int(0),
    	Username:         pulumi.String("string"),
    	Password:         pulumi.String("string"),
    	DeploymentType:   pulumi.String("string"),
    	NetworkType:      pulumi.String("string"),
    	Name:             pulumi.String("string"),
    	MaintenanceSchedule: &timestreaminfluxdb.DbInstanceMaintenanceScheduleArgs{
    		PreferredMaintenanceWindow: pulumi.String("string"),
    		Timezone:                   pulumi.String("string"),
    	},
    	Port:               pulumi.Int(0),
    	PubliclyAccessible: pulumi.Bool(false),
    	Region:             pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &timestreaminfluxdb.DbInstanceTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	LogDeliveryConfiguration: &timestreaminfluxdb.DbInstanceLogDeliveryConfigurationArgs{
    		S3Configuration: &timestreaminfluxdb.DbInstanceLogDeliveryConfigurationS3ConfigurationArgs{
    			BucketName: pulumi.String("string"),
    			Enabled:    pulumi.Bool(false),
    		},
    	},
    	DbStorageType:              pulumi.String("string"),
    	DbParameterGroupIdentifier: pulumi.String("string"),
    })
    
    resource "aws_timestreaminfluxdb_dbinstance" "dbInstanceResource" {
      organization           = "string"
      bucket                 = "string"
      db_instance_type       = "string"
      vpc_subnet_ids         = ["string"]
      vpc_security_group_ids = ["string"]
      allocated_storage      = 0
      username               = "string"
      password               = "string"
      deployment_type        = "string"
      network_type           = "string"
      name                   = "string"
      maintenance_schedule = {
        preferred_maintenance_window = "string"
        timezone                     = "string"
      }
      port                = 0
      publicly_accessible = false
      region              = "string"
      tags = {
        "string" = "string"
      }
      timeouts = {
        create = "string"
        delete = "string"
        update = "string"
      }
      log_delivery_configuration = {
        s3_configuration = {
          bucket_name = "string"
          enabled     = false
        }
      }
      db_storage_type               = "string"
      db_parameter_group_identifier = "string"
    }
    
    var dbInstanceResource = new DbInstance("dbInstanceResource", DbInstanceArgs.builder()
        .organization("string")
        .bucket("string")
        .dbInstanceType("string")
        .vpcSubnetIds("string")
        .vpcSecurityGroupIds("string")
        .allocatedStorage(0)
        .username("string")
        .password("string")
        .deploymentType("string")
        .networkType("string")
        .name("string")
        .maintenanceSchedule(DbInstanceMaintenanceScheduleArgs.builder()
            .preferredMaintenanceWindow("string")
            .timezone("string")
            .build())
        .port(0)
        .publiclyAccessible(false)
        .region("string")
        .tags(Map.of("string", "string"))
        .timeouts(DbInstanceTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .logDeliveryConfiguration(DbInstanceLogDeliveryConfigurationArgs.builder()
            .s3Configuration(DbInstanceLogDeliveryConfigurationS3ConfigurationArgs.builder()
                .bucketName("string")
                .enabled(false)
                .build())
            .build())
        .dbStorageType("string")
        .dbParameterGroupIdentifier("string")
        .build());
    
    db_instance_resource = aws.timestreaminfluxdb.DbInstance("dbInstanceResource",
        organization="string",
        bucket="string",
        db_instance_type="string",
        vpc_subnet_ids=["string"],
        vpc_security_group_ids=["string"],
        allocated_storage=0,
        username="string",
        password="string",
        deployment_type="string",
        network_type="string",
        name="string",
        maintenance_schedule={
            "preferred_maintenance_window": "string",
            "timezone": "string",
        },
        port=0,
        publicly_accessible=False,
        region="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        log_delivery_configuration={
            "s3_configuration": {
                "bucket_name": "string",
                "enabled": False,
            },
        },
        db_storage_type="string",
        db_parameter_group_identifier="string")
    
    const dbInstanceResource = new aws.timestreaminfluxdb.DbInstance("dbInstanceResource", {
        organization: "string",
        bucket: "string",
        dbInstanceType: "string",
        vpcSubnetIds: ["string"],
        vpcSecurityGroupIds: ["string"],
        allocatedStorage: 0,
        username: "string",
        password: "string",
        deploymentType: "string",
        networkType: "string",
        name: "string",
        maintenanceSchedule: {
            preferredMaintenanceWindow: "string",
            timezone: "string",
        },
        port: 0,
        publiclyAccessible: false,
        region: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        logDeliveryConfiguration: {
            s3Configuration: {
                bucketName: "string",
                enabled: false,
            },
        },
        dbStorageType: "string",
        dbParameterGroupIdentifier: "string",
    });
    
    type: aws:timestreaminfluxdb:DbInstance
    properties:
        allocatedStorage: 0
        bucket: string
        dbInstanceType: string
        dbParameterGroupIdentifier: string
        dbStorageType: string
        deploymentType: string
        logDeliveryConfiguration:
            s3Configuration:
                bucketName: string
                enabled: false
        maintenanceSchedule:
            preferredMaintenanceWindow: string
            timezone: string
        name: string
        networkType: string
        organization: string
        password: string
        port: 0
        publiclyAccessible: false
        region: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
        username: string
        vpcSecurityGroupIds:
            - string
        vpcSubnetIds:
            - string
    

    DbInstance Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DbInstance resource accepts the following input properties:

    AllocatedStorage int
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    Bucket string
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    DbInstanceType string
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    Organization string
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    Password string
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    Username string
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    VpcSecurityGroupIds List<string>
    List of VPC security group IDs to associate with the DB instance.
    VpcSubnetIds List<string>

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    DbParameterGroupIdentifier string
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    DbStorageType string
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    DeploymentType string
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    LogDeliveryConfiguration DbInstanceLogDeliveryConfiguration
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    MaintenanceSchedule DbInstanceMaintenanceSchedule
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    Name string
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    NetworkType string
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    Port int
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    PubliclyAccessible bool
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags Dictionary<string, string>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts DbInstanceTimeouts
    AllocatedStorage int
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    Bucket string
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    DbInstanceType string
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    Organization string
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    Password string
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    Username string
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    VpcSecurityGroupIds []string
    List of VPC security group IDs to associate with the DB instance.
    VpcSubnetIds []string

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    DbParameterGroupIdentifier string
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    DbStorageType string
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    DeploymentType string
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    LogDeliveryConfiguration DbInstanceLogDeliveryConfigurationArgs
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    MaintenanceSchedule DbInstanceMaintenanceScheduleArgs
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    Name string
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    NetworkType string
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    Port int
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    PubliclyAccessible bool
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Tags map[string]string
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts DbInstanceTimeoutsArgs
    allocated_storage number
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    bucket string
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    db_instance_type string
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    organization string
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    password string
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    username string
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    vpc_security_group_ids list(string)
    List of VPC security group IDs to associate with the DB instance.
    vpc_subnet_ids list(string)

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    db_parameter_group_identifier string
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    db_storage_type string
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    deployment_type string
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    log_delivery_configuration object
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    maintenance_schedule object
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    name string
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    network_type string
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    port number
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    publicly_accessible bool
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags map(string)
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts object
    allocatedStorage Integer
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    bucket String
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    dbInstanceType String
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    organization String
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    password String
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    username String
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    vpcSecurityGroupIds List<String>
    List of VPC security group IDs to associate with the DB instance.
    vpcSubnetIds List<String>

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    dbParameterGroupIdentifier String
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    dbStorageType String
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    deploymentType String
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    logDeliveryConfiguration DbInstanceLogDeliveryConfiguration
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    maintenanceSchedule DbInstanceMaintenanceSchedule
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    name String
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    networkType String
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    port Integer
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    publiclyAccessible Boolean
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String,String>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts DbInstanceTimeouts
    allocatedStorage number
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    bucket string
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    dbInstanceType string
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    organization string
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    password string
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    username string
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    vpcSecurityGroupIds string[]
    List of VPC security group IDs to associate with the DB instance.
    vpcSubnetIds string[]

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    dbParameterGroupIdentifier string
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    dbStorageType string
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    deploymentType string
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    logDeliveryConfiguration DbInstanceLogDeliveryConfiguration
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    maintenanceSchedule DbInstanceMaintenanceSchedule
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    name string
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    networkType string
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    port number
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    publiclyAccessible boolean
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags {[key: string]: string}
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts DbInstanceTimeouts
    allocated_storage int
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    bucket str
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    db_instance_type str
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    organization str
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    password str
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    username str
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    vpc_security_group_ids Sequence[str]
    List of VPC security group IDs to associate with the DB instance.
    vpc_subnet_ids Sequence[str]

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    db_parameter_group_identifier str
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    db_storage_type str
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    deployment_type str
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    log_delivery_configuration DbInstanceLogDeliveryConfigurationArgs
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    maintenance_schedule DbInstanceMaintenanceScheduleArgs
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    name str
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    network_type str
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    port int
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    publicly_accessible bool
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Mapping[str, str]
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts DbInstanceTimeoutsArgs
    allocatedStorage Number
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    bucket String
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    dbInstanceType String
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    organization String
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    password String
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    username String
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    vpcSecurityGroupIds List<String>
    List of VPC security group IDs to associate with the DB instance.
    vpcSubnetIds List<String>

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    dbParameterGroupIdentifier String
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    dbStorageType String
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    deploymentType String
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    logDeliveryConfiguration Property Map
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    maintenanceSchedule Property Map
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    name String
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    networkType String
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    port Number
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    publiclyAccessible Boolean
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DbInstance resource produces the following output properties:

    Arn string
    ARN of the Timestream for InfluxDB Instance.
    AvailabilityZone string
    Availability Zone in which the DB instance resides.
    Endpoint string
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    Id string
    The provider-assigned unique ID for this managed resource.
    InfluxAuthParametersSecretArn string
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    SecondaryAvailabilityZone string
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    Arn string
    ARN of the Timestream for InfluxDB Instance.
    AvailabilityZone string
    Availability Zone in which the DB instance resides.
    Endpoint string
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    Id string
    The provider-assigned unique ID for this managed resource.
    InfluxAuthParametersSecretArn string
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    SecondaryAvailabilityZone string
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    arn string
    ARN of the Timestream for InfluxDB Instance.
    availability_zone string
    Availability Zone in which the DB instance resides.
    endpoint string
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    id string
    The provider-assigned unique ID for this managed resource.
    influx_auth_parameters_secret_arn string
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    secondary_availability_zone string
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    tags_all map(string)
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    arn String
    ARN of the Timestream for InfluxDB Instance.
    availabilityZone String
    Availability Zone in which the DB instance resides.
    endpoint String
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    id String
    The provider-assigned unique ID for this managed resource.
    influxAuthParametersSecretArn String
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    secondaryAvailabilityZone String
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    arn string
    ARN of the Timestream for InfluxDB Instance.
    availabilityZone string
    Availability Zone in which the DB instance resides.
    endpoint string
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    id string
    The provider-assigned unique ID for this managed resource.
    influxAuthParametersSecretArn string
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    secondaryAvailabilityZone string
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    arn str
    ARN of the Timestream for InfluxDB Instance.
    availability_zone str
    Availability Zone in which the DB instance resides.
    endpoint str
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    id str
    The provider-assigned unique ID for this managed resource.
    influx_auth_parameters_secret_arn str
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    secondary_availability_zone str
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    arn String
    ARN of the Timestream for InfluxDB Instance.
    availabilityZone String
    Availability Zone in which the DB instance resides.
    endpoint String
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    id String
    The provider-assigned unique ID for this managed resource.
    influxAuthParametersSecretArn String
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    secondaryAvailabilityZone String
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.

    Look up Existing DbInstance Resource

    Get an existing DbInstance resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DbInstanceState, opts?: CustomResourceOptions): DbInstance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allocated_storage: Optional[int] = None,
            arn: Optional[str] = None,
            availability_zone: Optional[str] = None,
            bucket: Optional[str] = None,
            db_instance_type: Optional[str] = None,
            db_parameter_group_identifier: Optional[str] = None,
            db_storage_type: Optional[str] = None,
            deployment_type: Optional[str] = None,
            endpoint: Optional[str] = None,
            influx_auth_parameters_secret_arn: Optional[str] = None,
            log_delivery_configuration: Optional[DbInstanceLogDeliveryConfigurationArgs] = None,
            maintenance_schedule: Optional[DbInstanceMaintenanceScheduleArgs] = None,
            name: Optional[str] = None,
            network_type: Optional[str] = None,
            organization: Optional[str] = None,
            password: Optional[str] = None,
            port: Optional[int] = None,
            publicly_accessible: Optional[bool] = None,
            region: Optional[str] = None,
            secondary_availability_zone: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[DbInstanceTimeoutsArgs] = None,
            username: Optional[str] = None,
            vpc_security_group_ids: Optional[Sequence[str]] = None,
            vpc_subnet_ids: Optional[Sequence[str]] = None) -> DbInstance
    func GetDbInstance(ctx *Context, name string, id IDInput, state *DbInstanceState, opts ...ResourceOption) (*DbInstance, error)
    public static DbInstance Get(string name, Input<string> id, DbInstanceState? state, CustomResourceOptions? opts = null)
    public static DbInstance get(String name, Output<String> id, DbInstanceState state, CustomResourceOptions options)
    resources:  _:    type: aws:timestreaminfluxdb:DbInstance    get:      id: ${id}
    import {
      to = aws_timestreaminfluxdb_dbinstance.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AllocatedStorage int
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    Arn string
    ARN of the Timestream for InfluxDB Instance.
    AvailabilityZone string
    Availability Zone in which the DB instance resides.
    Bucket string
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    DbInstanceType string
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    DbParameterGroupIdentifier string
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    DbStorageType string
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    DeploymentType string
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    Endpoint string
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    InfluxAuthParametersSecretArn string
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    LogDeliveryConfiguration DbInstanceLogDeliveryConfiguration
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    MaintenanceSchedule DbInstanceMaintenanceSchedule
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    Name string
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    NetworkType string
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    Organization string
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    Password string
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    Port int
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    PubliclyAccessible bool
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    SecondaryAvailabilityZone string
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    Tags Dictionary<string, string>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    Timeouts DbInstanceTimeouts
    Username string
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    VpcSecurityGroupIds List<string>
    List of VPC security group IDs to associate with the DB instance.
    VpcSubnetIds List<string>

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    AllocatedStorage int
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    Arn string
    ARN of the Timestream for InfluxDB Instance.
    AvailabilityZone string
    Availability Zone in which the DB instance resides.
    Bucket string
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    DbInstanceType string
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    DbParameterGroupIdentifier string
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    DbStorageType string
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    DeploymentType string
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    Endpoint string
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    InfluxAuthParametersSecretArn string
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    LogDeliveryConfiguration DbInstanceLogDeliveryConfigurationArgs
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    MaintenanceSchedule DbInstanceMaintenanceScheduleArgs
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    Name string
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    NetworkType string
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    Organization string
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    Password string
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    Port int
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    PubliclyAccessible bool
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    SecondaryAvailabilityZone string
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    Tags map[string]string
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    Timeouts DbInstanceTimeoutsArgs
    Username string
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    VpcSecurityGroupIds []string
    List of VPC security group IDs to associate with the DB instance.
    VpcSubnetIds []string

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    allocated_storage number
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    arn string
    ARN of the Timestream for InfluxDB Instance.
    availability_zone string
    Availability Zone in which the DB instance resides.
    bucket string
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    db_instance_type string
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    db_parameter_group_identifier string
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    db_storage_type string
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    deployment_type string
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    endpoint string
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    influx_auth_parameters_secret_arn string
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    log_delivery_configuration object
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    maintenance_schedule object
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    name string
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    network_type string
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    organization string
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    password string
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    port number
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    publicly_accessible bool
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    secondary_availability_zone string
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    tags map(string)
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all map(string)
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts object
    username string
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    vpc_security_group_ids list(string)
    List of VPC security group IDs to associate with the DB instance.
    vpc_subnet_ids list(string)

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    allocatedStorage Integer
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    arn String
    ARN of the Timestream for InfluxDB Instance.
    availabilityZone String
    Availability Zone in which the DB instance resides.
    bucket String
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    dbInstanceType String
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    dbParameterGroupIdentifier String
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    dbStorageType String
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    deploymentType String
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    endpoint String
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    influxAuthParametersSecretArn String
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    logDeliveryConfiguration DbInstanceLogDeliveryConfiguration
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    maintenanceSchedule DbInstanceMaintenanceSchedule
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    name String
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    networkType String
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    organization String
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    password String
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    port Integer
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    publiclyAccessible Boolean
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    secondaryAvailabilityZone String
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    tags Map<String,String>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts DbInstanceTimeouts
    username String
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    vpcSecurityGroupIds List<String>
    List of VPC security group IDs to associate with the DB instance.
    vpcSubnetIds List<String>

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    allocatedStorage number
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    arn string
    ARN of the Timestream for InfluxDB Instance.
    availabilityZone string
    Availability Zone in which the DB instance resides.
    bucket string
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    dbInstanceType string
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    dbParameterGroupIdentifier string
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    dbStorageType string
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    deploymentType string
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    endpoint string
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    influxAuthParametersSecretArn string
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    logDeliveryConfiguration DbInstanceLogDeliveryConfiguration
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    maintenanceSchedule DbInstanceMaintenanceSchedule
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    name string
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    networkType string
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    organization string
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    password string
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    port number
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    publiclyAccessible boolean
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    secondaryAvailabilityZone string
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    tags {[key: string]: string}
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts DbInstanceTimeouts
    username string
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    vpcSecurityGroupIds string[]
    List of VPC security group IDs to associate with the DB instance.
    vpcSubnetIds string[]

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    allocated_storage int
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    arn str
    ARN of the Timestream for InfluxDB Instance.
    availability_zone str
    Availability Zone in which the DB instance resides.
    bucket str
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    db_instance_type str
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    db_parameter_group_identifier str
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    db_storage_type str
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    deployment_type str
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    endpoint str
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    influx_auth_parameters_secret_arn str
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    log_delivery_configuration DbInstanceLogDeliveryConfigurationArgs
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    maintenance_schedule DbInstanceMaintenanceScheduleArgs
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    name str
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    network_type str
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    organization str
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    password str
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    port int
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    publicly_accessible bool
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    secondary_availability_zone str
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    tags Mapping[str, str]
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts DbInstanceTimeoutsArgs
    username str
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    vpc_security_group_ids Sequence[str]
    List of VPC security group IDs to associate with the DB instance.
    vpc_subnet_ids Sequence[str]

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    allocatedStorage Number
    Amount of storage in GiB (gibibytes). The minimum value is 20, the maximum value is 16384. This argument is updatable. The argument dbStorageType places restrictions on this argument's minimum value. The following is a list of dbStorageType values and the corresponding minimum value for allocatedStorage: "InfluxIOIncludedT1": 20, "InfluxIOIncludedT2" and "InfluxIOIncludedT3": 400`.
    arn String
    ARN of the Timestream for InfluxDB Instance.
    availabilityZone String
    Availability Zone in which the DB instance resides.
    bucket String
    Name of the initial InfluxDB bucket. All InfluxDB data is stored in a bucket. A bucket combines the concept of a database and a retention period (the duration of time that each data point persists). A bucket belongs to an organization. Along with organization, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    dbInstanceType String
    Timestream for InfluxDB DB instance type to run InfluxDB on. Valid options are: "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", and "db.influx.16xlarge". This argument is updatable.
    dbParameterGroupIdentifier String
    ID of the DB parameter group assigned to your DB instance. This argument is updatable. If added to an existing Timestream for InfluxDB instance or given a new value, will cause an in-place update to the instance. However, if an instance already has a value for dbParameterGroupIdentifier, removing dbParameterGroupIdentifier will cause the instance to be destroyed and recreated.
    dbStorageType String
    Timestream for InfluxDB DB storage type to read and write InfluxDB data. You can choose between 3 different types of provisioned Influx IOPS included storage according to your workloads requirements: Influx IO Included 3000 IOPS, Influx IO Included 12000 IOPS, Influx IO Included 16000 IOPS. Valid options are: "InfluxIOIncludedT1", "InfluxIOIncludedT2", and "InfluxIOIncludedT3". If you use "InfluxIOIncludedT2" or "InfluxIOIncludedT3", the minimum value for allocatedStorage` is 400. This argument is updatable. For a single instance, after this argument has been updated once, it can only be updated again after 6 hours have passed.
    deploymentType String
    Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability. Valid options are: "SINGLE_AZ", "WITH_MULTIAZ_STANDBY". This argument is updatable.
    endpoint String
    Endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.
    influxAuthParametersSecretArn String
    ARN of the AWS Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.
    logDeliveryConfiguration Property Map
    Configuration for sending InfluxDB engine logs to a specified S3 bucket. This argument is updatable.
    maintenanceSchedule Property Map
    Maintenance schedule for the DB instance, including the preferred maintenance window and timezone. This argument is updatable.
    name String
    Name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. This name will also be a prefix included in the endpoint. DB instance names must be unique per customer and per region. The argument must start with a letter, cannot contain consecutive hyphens (-) and cannot end with a hyphen.
    networkType String
    Specifies whether the networkType of the Timestream for InfluxDB instance is IPV4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.
    organization String
    Name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users. Along with bucket, username, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    password String
    Password of the initial admin user created in InfluxDB. This password will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, username, and organization, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    port Number
    The port on which the instance accepts connections. Valid values: 1024-65535. Cannot be 2375-2376, 7788-7799, 8090, or 51678-51680. This argument is updatable.
    publiclyAccessible Boolean
    Configures the DB instance with a public IP to facilitate access. Other resources, such as a VPC, a subnet, an internet gateway, and a route table with routes, are also required to enabled public access, in addition to this argument. See "Usage with Public Internet Access Enabled" for an example configuration with all required resources for public internet access.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    secondaryAvailabilityZone String
    Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.
    tags Map<String>
    Map of tags assigned to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.
    timeouts Property Map
    username String
    Username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. Along with bucket, organization, and password, this argument will be stored in the secret referred to by the influxAuthParametersSecretArn attribute.
    vpcSecurityGroupIds List<String>
    List of VPC security group IDs to associate with the DB instance.
    vpcSubnetIds List<String>

    List of VPC subnet IDs to associate with the DB instance. Provide at least two VPC subnet IDs in different availability zones when deploying with a Multi-AZ standby.

    The following arguments are optional:

    Supporting Types

    DbInstanceLogDeliveryConfiguration, DbInstanceLogDeliveryConfigurationArgs

    s3_configuration object
    Configuration for S3 bucket log delivery.
    s3Configuration Property Map
    Configuration for S3 bucket log delivery.

    DbInstanceLogDeliveryConfigurationS3Configuration, DbInstanceLogDeliveryConfigurationS3ConfigurationArgs

    BucketName string
    Name of the S3 bucket to deliver logs to.
    Enabled bool

    Indicates whether log delivery to the S3 bucket is enabled.

    Note: The following arguments do updates in-place: dbParameterGroupIdentifier, logDeliveryConfiguration, maintenanceSchedule, port, deploymentType, dbInstanceType, and tags. Changes to any other argument after a DB instance has been deployed will cause destruction and re-creation of the DB instance. Additionally, when dbParameterGroupIdentifier is added to a DB instance or modified, the DB instance will be updated in-place but if dbParameterGroupIdentifier is removed from a DB instance, the DB instance will be destroyed and re-created.

    BucketName string
    Name of the S3 bucket to deliver logs to.
    Enabled bool

    Indicates whether log delivery to the S3 bucket is enabled.

    Note: The following arguments do updates in-place: dbParameterGroupIdentifier, logDeliveryConfiguration, maintenanceSchedule, port, deploymentType, dbInstanceType, and tags. Changes to any other argument after a DB instance has been deployed will cause destruction and re-creation of the DB instance. Additionally, when dbParameterGroupIdentifier is added to a DB instance or modified, the DB instance will be updated in-place but if dbParameterGroupIdentifier is removed from a DB instance, the DB instance will be destroyed and re-created.

    bucket_name string
    Name of the S3 bucket to deliver logs to.
    enabled bool

    Indicates whether log delivery to the S3 bucket is enabled.

    Note: The following arguments do updates in-place: dbParameterGroupIdentifier, logDeliveryConfiguration, maintenanceSchedule, port, deploymentType, dbInstanceType, and tags. Changes to any other argument after a DB instance has been deployed will cause destruction and re-creation of the DB instance. Additionally, when dbParameterGroupIdentifier is added to a DB instance or modified, the DB instance will be updated in-place but if dbParameterGroupIdentifier is removed from a DB instance, the DB instance will be destroyed and re-created.

    bucketName String
    Name of the S3 bucket to deliver logs to.
    enabled Boolean

    Indicates whether log delivery to the S3 bucket is enabled.

    Note: The following arguments do updates in-place: dbParameterGroupIdentifier, logDeliveryConfiguration, maintenanceSchedule, port, deploymentType, dbInstanceType, and tags. Changes to any other argument after a DB instance has been deployed will cause destruction and re-creation of the DB instance. Additionally, when dbParameterGroupIdentifier is added to a DB instance or modified, the DB instance will be updated in-place but if dbParameterGroupIdentifier is removed from a DB instance, the DB instance will be destroyed and re-created.

    bucketName string
    Name of the S3 bucket to deliver logs to.
    enabled boolean

    Indicates whether log delivery to the S3 bucket is enabled.

    Note: The following arguments do updates in-place: dbParameterGroupIdentifier, logDeliveryConfiguration, maintenanceSchedule, port, deploymentType, dbInstanceType, and tags. Changes to any other argument after a DB instance has been deployed will cause destruction and re-creation of the DB instance. Additionally, when dbParameterGroupIdentifier is added to a DB instance or modified, the DB instance will be updated in-place but if dbParameterGroupIdentifier is removed from a DB instance, the DB instance will be destroyed and re-created.

    bucket_name str
    Name of the S3 bucket to deliver logs to.
    enabled bool

    Indicates whether log delivery to the S3 bucket is enabled.

    Note: The following arguments do updates in-place: dbParameterGroupIdentifier, logDeliveryConfiguration, maintenanceSchedule, port, deploymentType, dbInstanceType, and tags. Changes to any other argument after a DB instance has been deployed will cause destruction and re-creation of the DB instance. Additionally, when dbParameterGroupIdentifier is added to a DB instance or modified, the DB instance will be updated in-place but if dbParameterGroupIdentifier is removed from a DB instance, the DB instance will be destroyed and re-created.

    bucketName String
    Name of the S3 bucket to deliver logs to.
    enabled Boolean

    Indicates whether log delivery to the S3 bucket is enabled.

    Note: The following arguments do updates in-place: dbParameterGroupIdentifier, logDeliveryConfiguration, maintenanceSchedule, port, deploymentType, dbInstanceType, and tags. Changes to any other argument after a DB instance has been deployed will cause destruction and re-creation of the DB instance. Additionally, when dbParameterGroupIdentifier is added to a DB instance or modified, the DB instance will be updated in-place but if dbParameterGroupIdentifier is removed from a DB instance, the DB instance will be destroyed and re-created.

    DbInstanceMaintenanceSchedule, DbInstanceMaintenanceScheduleArgs

    PreferredMaintenanceWindow string
    Preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM. Day must be one of Mon, Tue, Wed, Thu, Fri, Sat, or Sun. Provide an empty string to let the system choose a window.
    Timezone string
    IANA timezone identifier for the maintenance window. For example, America/New_York or UTC.
    PreferredMaintenanceWindow string
    Preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM. Day must be one of Mon, Tue, Wed, Thu, Fri, Sat, or Sun. Provide an empty string to let the system choose a window.
    Timezone string
    IANA timezone identifier for the maintenance window. For example, America/New_York or UTC.
    preferred_maintenance_window string
    Preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM. Day must be one of Mon, Tue, Wed, Thu, Fri, Sat, or Sun. Provide an empty string to let the system choose a window.
    timezone string
    IANA timezone identifier for the maintenance window. For example, America/New_York or UTC.
    preferredMaintenanceWindow String
    Preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM. Day must be one of Mon, Tue, Wed, Thu, Fri, Sat, or Sun. Provide an empty string to let the system choose a window.
    timezone String
    IANA timezone identifier for the maintenance window. For example, America/New_York or UTC.
    preferredMaintenanceWindow string
    Preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM. Day must be one of Mon, Tue, Wed, Thu, Fri, Sat, or Sun. Provide an empty string to let the system choose a window.
    timezone string
    IANA timezone identifier for the maintenance window. For example, America/New_York or UTC.
    preferred_maintenance_window str
    Preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM. Day must be one of Mon, Tue, Wed, Thu, Fri, Sat, or Sun. Provide an empty string to let the system choose a window.
    timezone str
    IANA timezone identifier for the maintenance window. For example, America/New_York or UTC.
    preferredMaintenanceWindow String
    Preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM. Day must be one of Mon, Tue, Wed, Thu, Fri, Sat, or Sun. Provide an empty string to let the system choose a window.
    timezone String
    IANA timezone identifier for the maintenance window. For example, America/New_York or UTC.

    DbInstanceTimeouts, DbInstanceTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Identity Schema

    Required

    • id (String) ID of the Timestream for InfluxDB cluster.

    Optional

    • accountId (String) AWS Account where this resource is managed.
    • region (String) Region where this resource is managed.

    Using pulumi import, import Timestream for InfluxDB instances using id. For example:

    $ pulumi import aws:timestreaminfluxdb/dbInstance:DbInstance example 0oo7rzble5
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    Viewing docs for AWS v7.30.0
    published on Thursday, May 14, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.