Timestream InfluxDB

2025/10/15 - Timestream InfluxDB - 9 updated api methods

Changes  This release adds support for creating and managing InfluxDB 3 Core and Enterprise DbClusters.

CreateDbInstance (updated) Link ¶
Changes (response)
{'instanceMode': {'INGEST', 'COMPACT', 'PROCESS', 'QUERY'},
 'instanceModes': ['PRIMARY | STANDBY | REPLICA | INGEST | QUERY | COMPACT | '
                   'PROCESS']}

Creates a new Timestream for InfluxDB DB instance.

See also: AWS API Documentation

Request Syntax

client.create_db_instance(
    name='string',
    username='string',
    password='string',
    organization='string',
    bucket='string',
    dbInstanceType='db.influx.medium'|'db.influx.large'|'db.influx.xlarge'|'db.influx.2xlarge'|'db.influx.4xlarge'|'db.influx.8xlarge'|'db.influx.12xlarge'|'db.influx.16xlarge'|'db.influx.24xlarge',
    vpcSubnetIds=[
        'string',
    ],
    vpcSecurityGroupIds=[
        'string',
    ],
    publiclyAccessible=True|False,
    dbStorageType='InfluxIOIncludedT1'|'InfluxIOIncludedT2'|'InfluxIOIncludedT3',
    allocatedStorage=123,
    dbParameterGroupIdentifier='string',
    deploymentType='SINGLE_AZ'|'WITH_MULTIAZ_STANDBY',
    logDeliveryConfiguration={
        's3Configuration': {
            'bucketName': 'string',
            'enabled': True|False
        }
    },
    tags={
        'string': 'string'
    },
    port=123,
    networkType='IPV4'|'DUAL'
)
type name:

string

param name:

[REQUIRED]

The 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.

type username:

string

param username:

The 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. For example, my-user1. 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. These attributes will be stored in a Secret created in Amazon Secrets Manager in your account.

type password:

string

param password:

[REQUIRED]

The password of the initial admin user created in InfluxDB v2. 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. These attributes will be stored in a Secret created in Secrets Manager in your account.

type organization:

string

param organization:

The name of the initial organization for the initial admin user in InfluxDB. An InfluxDB organization is a workspace for a group of users.

type bucket:

string

param bucket:

The 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.

type dbInstanceType:

string

param dbInstanceType:

[REQUIRED]

The Timestream for InfluxDB DB instance type to run InfluxDB on.

type vpcSubnetIds:

list

param vpcSubnetIds:

[REQUIRED]

A 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.

  • (string) --

type vpcSecurityGroupIds:

list

param vpcSecurityGroupIds:

[REQUIRED]

A list of VPC security group IDs to associate with the DB instance.

  • (string) --

type publiclyAccessible:

boolean

param publiclyAccessible:

Configures the DB instance with a public IP to facilitate access.

type dbStorageType:

string

param dbStorageType:

The 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

type allocatedStorage:

integer

param allocatedStorage:

[REQUIRED]

The amount of storage to allocate for your DB storage type in GiB (gibibytes).

type dbParameterGroupIdentifier:

string

param dbParameterGroupIdentifier:

The id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.

type deploymentType:

string

param deploymentType:

Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability.

type logDeliveryConfiguration:

dict

param logDeliveryConfiguration:

Configuration for sending InfluxDB engine logs to a specified S3 bucket.

  • s3Configuration (dict) -- [REQUIRED]

    Configuration for S3 bucket log delivery.

    • bucketName (string) -- [REQUIRED]

      The name of the S3 bucket to deliver logs to.

    • enabled (boolean) -- [REQUIRED]

      Indicates whether log delivery to the S3 bucket is enabled.

type tags:

dict

param tags:

A list of key-value pairs to associate with the DB instance.

  • (string) --

    • (string) --

type port:

integer

param port:

The port number on which InfluxDB accepts connections.

Valid Values: 1024-65535

Default: 8086

Constraints: The value can't be 2375-2376, 7788-7799, 8090, or 51678-51680

type networkType:

string

param networkType:

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.

rtype:

dict

returns:

Response Syntax

{
    'id': 'string',
    'name': 'string',
    'arn': 'string',
    'status': 'CREATING'|'AVAILABLE'|'DELETING'|'MODIFYING'|'UPDATING'|'DELETED'|'FAILED'|'UPDATING_DEPLOYMENT_TYPE'|'UPDATING_INSTANCE_TYPE'|'MAINTENANCE',
    'endpoint': 'string',
    'port': 123,
    'networkType': 'IPV4'|'DUAL',
    'dbInstanceType': 'db.influx.medium'|'db.influx.large'|'db.influx.xlarge'|'db.influx.2xlarge'|'db.influx.4xlarge'|'db.influx.8xlarge'|'db.influx.12xlarge'|'db.influx.16xlarge'|'db.influx.24xlarge',
    'dbStorageType': 'InfluxIOIncludedT1'|'InfluxIOIncludedT2'|'InfluxIOIncludedT3',
    'allocatedStorage': 123,
    'deploymentType': 'SINGLE_AZ'|'WITH_MULTIAZ_STANDBY',
    'vpcSubnetIds': [
        'string',
    ],
    'publiclyAccessible': True|False,
    'vpcSecurityGroupIds': [
        'string',
    ],
    'dbParameterGroupIdentifier': 'string',
    'availabilityZone': 'string',
    'secondaryAvailabilityZone': 'string',
    'logDeliveryConfiguration': {
        's3Configuration': {
            'bucketName': 'string',
            'enabled': True|False
        }
    },
    'influxAuthParametersSecretArn': 'string',
    'dbClusterId': 'string',
    'instanceMode': 'PRIMARY'|'STANDBY'|'REPLICA'|'INGEST'|'QUERY'|'COMPACT'|'PROCESS',
    'instanceModes': [
        'PRIMARY'|'STANDBY'|'REPLICA'|'INGEST'|'QUERY'|'COMPACT'|'PROCESS',
    ]
}

Response Structure

  • (dict) --

    • id (string) --

      A service-generated unique identifier.

    • name (string) --

      The customer-supplied name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands.

    • arn (string) --

      The Amazon Resource Name (ARN) of the DB instance.

    • status (string) --

      The status of the DB instance.

    • endpoint (string) --

      The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.

    • port (integer) --

      The port number on which InfluxDB accepts connections. The default value is 8086.

    • 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.

    • dbInstanceType (string) --

      The Timestream for InfluxDB instance type that InfluxDB runs on.

    • dbStorageType (string) --

      The Timestream for InfluxDB DB storage type that InfluxDB stores data on.

    • allocatedStorage (integer) --

      The amount of storage allocated for your DB storage type (in gibibytes).

    • deploymentType (string) --

      Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.

    • vpcSubnetIds (list) --

      A list of VPC subnet IDs associated with the DB instance.

      • (string) --

    • publiclyAccessible (boolean) --

      Indicates if the DB instance has a public IP to facilitate access.

    • vpcSecurityGroupIds (list) --

      A list of VPC security group IDs associated with the DB instance.

      • (string) --

    • dbParameterGroupIdentifier (string) --

      The id of the DB parameter group assigned to your DB instance.

    • availabilityZone (string) --

      The Availability Zone in which the DB instance resides.

    • secondaryAvailabilityZone (string) --

      The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.

    • logDeliveryConfiguration (dict) --

      Configuration for sending InfluxDB engine logs to send to specified S3 bucket.

      • s3Configuration (dict) --

        Configuration for S3 bucket log delivery.

        • bucketName (string) --

          The name of the S3 bucket to deliver logs to.

        • enabled (boolean) --

          Indicates whether log delivery to the S3 bucket is enabled.

    • influxAuthParametersSecretArn (string) --

      The Amazon Resource Name (ARN) of the 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.

    • dbClusterId (string) --

      Specifies the DbCluster to which this DbInstance belongs to.

    • instanceMode (string) --

      Specifies the DbInstance's role in the cluster.

    • instanceModes (list) --

      Specifies the DbInstance's roles in the cluster.

      • (string) --

CreateDbParameterGroup (updated) Link ¶
Changes (both)
{'parameters': {'InfluxDBv2': {'httpIdleTimeout': {'durationType': {'days'}},
                               'httpReadHeaderTimeout': {'durationType': {'days'}},
                               'httpReadTimeout': {'durationType': {'days'}},
                               'httpWriteTimeout': {'durationType': {'days'}},
                               'storageCacheSnapshotWriteColdDuration': {'durationType': {'days'}},
                               'storageCompactFullWriteColdDuration': {'durationType': {'days'}},
                               'storageRetentionCheckInterval': {'durationType': {'days'}},
                               'storageWalMaxWriteDelay': {'durationType': {'days'}},
                               'tracingType': {'disabled'}},
                'InfluxDBv3Core': {'dataFusionConfig': 'string',
                                   'dataFusionMaxParquetFanout': 'integer',
                                   'dataFusionNumThreads': 'integer',
                                   'dataFusionRuntimeDisableLifoSlot': 'boolean',
                                   'dataFusionRuntimeEventInterval': 'integer',
                                   'dataFusionRuntimeGlobalQueueInterval': 'integer',
                                   'dataFusionRuntimeMaxBlockingThreads': 'integer',
                                   'dataFusionRuntimeMaxIoEventsPerTick': 'integer',
                                   'dataFusionRuntimeThreadKeepAlive': {'durationType': 'hours '
                                                                                        '| '
                                                                                        'minutes '
                                                                                        '| '
                                                                                        'seconds '
                                                                                        '| '
                                                                                        'milliseconds '
                                                                                        '| '
                                                                                        'days',
                                                                        'value': 'long'},
                                   'dataFusionRuntimeThreadPriority': 'integer',
                                   'dataFusionRuntimeType': 'multi-thread | '
                                                            'multi-thread-alt',
                                   'dataFusionUseCachedParquetLoader': 'boolean',
                                   'deleteGracePeriod': {'durationType': 'hours '
                                                                         '| '
                                                                         'minutes '
                                                                         '| '
                                                                         'seconds '
                                                                         '| '
                                                                         'milliseconds '
                                                                         '| '
                                                                         'days',
                                                         'value': 'long'},
                                   'disableParquetMemCache': 'boolean',
                                   'distinctCacheEvictionInterval': {'durationType': 'hours '
                                                                                     '| '
                                                                                     'minutes '
                                                                                     '| '
                                                                                     'seconds '
                                                                                     '| '
                                                                                     'milliseconds '
                                                                                     '| '
                                                                                     'days',
                                                                     'value': 'long'},
                                   'execMemPoolBytes': {'absolute': 'long',
                                                        'percent': 'string'},
                                   'forceSnapshotMemThreshold': {'absolute': 'long',
                                                                 'percent': 'string'},
                                   'gen1Duration': {'durationType': 'hours | '
                                                                    'minutes | '
                                                                    'seconds | '
                                                                    'milliseconds '
                                                                    '| days',
                                                    'value': 'long'},
                                   'gen1LookbackDuration': {'durationType': 'hours '
                                                                            '| '
                                                                            'minutes '
                                                                            '| '
                                                                            'seconds '
                                                                            '| '
                                                                            'milliseconds '
                                                                            '| '
                                                                            'days',
                                                            'value': 'long'},
                                   'hardDeleteDefaultDuration': {'durationType': 'hours '
                                                                                 '| '
                                                                                 'minutes '
                                                                                 '| '
                                                                                 'seconds '
                                                                                 '| '
                                                                                 'milliseconds '
                                                                                 '| '
                                                                                 'days',
                                                                 'value': 'long'},
                                   'lastCacheEvictionInterval': {'durationType': 'hours '
                                                                                 '| '
                                                                                 'minutes '
                                                                                 '| '
                                                                                 'seconds '
                                                                                 '| '
                                                                                 'milliseconds '
                                                                                 '| '
                                                                                 'days',
                                                                 'value': 'long'},
                                   'logFilter': 'string',
                                   'logFormat': 'full',
                                   'maxHttpRequestSize': 'long',
                                   'parquetMemCachePruneInterval': {'durationType': 'hours '
                                                                                    '| '
                                                                                    'minutes '
                                                                                    '| '
                                                                                    'seconds '
                                                                                    '| '
                                                                                    'milliseconds '
                                                                                    '| '
                                                                                    'days',
                                                                    'value': 'long'},
                                   'parquetMemCachePrunePercentage': 'float',
                                   'parquetMemCacheQueryPathDuration': {'durationType': 'hours '
                                                                                        '| '
                                                                                        'minutes '
                                                                                        '| '
                                                                                        'seconds '
                                                                                        '| '
                                                                                        'milliseconds '
                                                                                        '| '
                                                                                        'days',
                                                                        'value': 'long'},
                                   'parquetMemCacheSize': {'absolute': 'long',
                                                           'percent': 'string'},
                                   'preemptiveCacheAge': {'durationType': 'hours '
                                                                          '| '
                                                                          'minutes '
                                                                          '| '
                                                                          'seconds '
                                                                          '| '
                                                                          'milliseconds '
                                                                          '| '
                                                                          'days',
                                                          'value': 'long'},
                                   'queryFileLimit': 'integer',
                                   'queryLogSize': 'integer',
                                   'retentionCheckInterval': {'durationType': 'hours '
                                                                              '| '
                                                                              'minutes '
                                                                              '| '
                                                                              'seconds '
                                                                              '| '
                                                                              'milliseconds '
                                                                              '| '
                                                                              'days',
                                                              'value': 'long'},
                                   'snapshottedWalFilesToKeep': 'integer',
                                   'tableIndexCacheConcurrencyLimit': 'integer',
                                   'tableIndexCacheMaxEntries': 'integer',
                                   'walMaxWriteBufferSize': 'integer',
                                   'walReplayConcurrencyLimit': 'integer',
                                   'walReplayFailOnError': 'boolean',
                                   'walSnapshotSize': 'integer'},
                'InfluxDBv3Enterprise': {'catalogSyncInterval': {'durationType': 'hours '
                                                                                 '| '
                                                                                 'minutes '
                                                                                 '| '
                                                                                 'seconds '
                                                                                 '| '
                                                                                 'milliseconds '
                                                                                 '| '
                                                                                 'days',
                                                                 'value': 'long'},
                                         'compactionCheckInterval': {'durationType': 'hours '
                                                                                     '| '
                                                                                     'minutes '
                                                                                     '| '
                                                                                     'seconds '
                                                                                     '| '
                                                                                     'milliseconds '
                                                                                     '| '
                                                                                     'days',
                                                                     'value': 'long'},
                                         'compactionCleanupWait': {'durationType': 'hours '
                                                                                   '| '
                                                                                   'minutes '
                                                                                   '| '
                                                                                   'seconds '
                                                                                   '| '
                                                                                   'milliseconds '
                                                                                   '| '
                                                                                   'days',
                                                                   'value': 'long'},
                                         'compactionGen2Duration': {'durationType': 'hours '
                                                                                    '| '
                                                                                    'minutes '
                                                                                    '| '
                                                                                    'seconds '
                                                                                    '| '
                                                                                    'milliseconds '
                                                                                    '| '
                                                                                    'days',
                                                                    'value': 'long'},
                                         'compactionMaxNumFilesPerPlan': 'integer',
                                         'compactionMultipliers': 'string',
                                         'compactionRowLimit': 'integer',
                                         'dataFusionConfig': 'string',
                                         'dataFusionMaxParquetFanout': 'integer',
                                         'dataFusionNumThreads': 'integer',
                                         'dataFusionRuntimeDisableLifoSlot': 'boolean',
                                         'dataFusionRuntimeEventInterval': 'integer',
                                         'dataFusionRuntimeGlobalQueueInterval': 'integer',
                                         'dataFusionRuntimeMaxBlockingThreads': 'integer',
                                         'dataFusionRuntimeMaxIoEventsPerTick': 'integer',
                                         'dataFusionRuntimeThreadKeepAlive': {'durationType': 'hours '
                                                                                              '| '
                                                                                              'minutes '
                                                                                              '| '
                                                                                              'seconds '
                                                                                              '| '
                                                                                              'milliseconds '
                                                                                              '| '
                                                                                              'days',
                                                                              'value': 'long'},
                                         'dataFusionRuntimeThreadPriority': 'integer',
                                         'dataFusionRuntimeType': 'multi-thread '
                                                                  '| '
                                                                  'multi-thread-alt',
                                         'dataFusionUseCachedParquetLoader': 'boolean',
                                         'dedicatedCompactor': 'boolean',
                                         'deleteGracePeriod': {'durationType': 'hours '
                                                                               '| '
                                                                               'minutes '
                                                                               '| '
                                                                               'seconds '
                                                                               '| '
                                                                               'milliseconds '
                                                                               '| '
                                                                               'days',
                                                               'value': 'long'},
                                         'disableParquetMemCache': 'boolean',
                                         'distinctCacheEvictionInterval': {'durationType': 'hours '
                                                                                           '| '
                                                                                           'minutes '
                                                                                           '| '
                                                                                           'seconds '
                                                                                           '| '
                                                                                           'milliseconds '
                                                                                           '| '
                                                                                           'days',
                                                                           'value': 'long'},
                                         'distinctValueCacheDisableFromHistory': 'boolean',
                                         'execMemPoolBytes': {'absolute': 'long',
                                                              'percent': 'string'},
                                         'forceSnapshotMemThreshold': {'absolute': 'long',
                                                                       'percent': 'string'},
                                         'gen1Duration': {'durationType': 'hours '
                                                                          '| '
                                                                          'minutes '
                                                                          '| '
                                                                          'seconds '
                                                                          '| '
                                                                          'milliseconds '
                                                                          '| '
                                                                          'days',
                                                          'value': 'long'},
                                         'gen1LookbackDuration': {'durationType': 'hours '
                                                                                  '| '
                                                                                  'minutes '
                                                                                  '| '
                                                                                  'seconds '
                                                                                  '| '
                                                                                  'milliseconds '
                                                                                  '| '
                                                                                  'days',
                                                                  'value': 'long'},
                                         'hardDeleteDefaultDuration': {'durationType': 'hours '
                                                                                       '| '
                                                                                       'minutes '
                                                                                       '| '
                                                                                       'seconds '
                                                                                       '| '
                                                                                       'milliseconds '
                                                                                       '| '
                                                                                       'days',
                                                                       'value': 'long'},
                                         'ingestQueryInstances': 'integer',
                                         'lastCacheEvictionInterval': {'durationType': 'hours '
                                                                                       '| '
                                                                                       'minutes '
                                                                                       '| '
                                                                                       'seconds '
                                                                                       '| '
                                                                                       'milliseconds '
                                                                                       '| '
                                                                                       'days',
                                                                       'value': 'long'},
                                         'lastValueCacheDisableFromHistory': 'boolean',
                                         'logFilter': 'string',
                                         'logFormat': 'full',
                                         'maxHttpRequestSize': 'long',
                                         'parquetMemCachePruneInterval': {'durationType': 'hours '
                                                                                          '| '
                                                                                          'minutes '
                                                                                          '| '
                                                                                          'seconds '
                                                                                          '| '
                                                                                          'milliseconds '
                                                                                          '| '
                                                                                          'days',
                                                                          'value': 'long'},
                                         'parquetMemCachePrunePercentage': 'float',
                                         'parquetMemCacheQueryPathDuration': {'durationType': 'hours '
                                                                                              '| '
                                                                                              'minutes '
                                                                                              '| '
                                                                                              'seconds '
                                                                                              '| '
                                                                                              'milliseconds '
                                                                                              '| '
                                                                                              'days',
                                                                              'value': 'long'},
                                         'parquetMemCacheSize': {'absolute': 'long',
                                                                 'percent': 'string'},
                                         'preemptiveCacheAge': {'durationType': 'hours '
                                                                                '| '
                                                                                'minutes '
                                                                                '| '
                                                                                'seconds '
                                                                                '| '
                                                                                'milliseconds '
                                                                                '| '
                                                                                'days',
                                                                'value': 'long'},
                                         'queryFileLimit': 'integer',
                                         'queryLogSize': 'integer',
                                         'queryOnlyInstances': 'integer',
                                         'replicationInterval': {'durationType': 'hours '
                                                                                 '| '
                                                                                 'minutes '
                                                                                 '| '
                                                                                 'seconds '
                                                                                 '| '
                                                                                 'milliseconds '
                                                                                 '| '
                                                                                 'days',
                                                                 'value': 'long'},
                                         'retentionCheckInterval': {'durationType': 'hours '
                                                                                    '| '
                                                                                    'minutes '
                                                                                    '| '
                                                                                    'seconds '
                                                                                    '| '
                                                                                    'milliseconds '
                                                                                    '| '
                                                                                    'days',
                                                                    'value': 'long'},
                                         'snapshottedWalFilesToKeep': 'integer',
                                         'tableIndexCacheConcurrencyLimit': 'integer',
                                         'tableIndexCacheMaxEntries': 'integer',
                                         'walMaxWriteBufferSize': 'integer',
                                         'walReplayConcurrencyLimit': 'integer',
                                         'walReplayFailOnError': 'boolean',
                                         'walSnapshotSize': 'integer'}}}

Creates a new Timestream for InfluxDB DB parameter group to associate with DB instances.

See also: AWS API Documentation

Request Syntax

client.create_db_parameter_group(
    name='string',
    description='string',
    parameters={
        'InfluxDBv2': {
            'fluxLogEnabled': True|False,
            'logLevel': 'debug'|'info'|'error',
            'noTasks': True|False,
            'queryConcurrency': 123,
            'queryQueueSize': 123,
            'tracingType': 'log'|'jaeger'|'disabled',
            'metricsDisabled': True|False,
            'httpIdleTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'httpReadHeaderTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'httpReadTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'httpWriteTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'influxqlMaxSelectBuckets': 123,
            'influxqlMaxSelectPoint': 123,
            'influxqlMaxSelectSeries': 123,
            'pprofDisabled': True|False,
            'queryInitialMemoryBytes': 123,
            'queryMaxMemoryBytes': 123,
            'queryMemoryBytes': 123,
            'sessionLength': 123,
            'sessionRenewDisabled': True|False,
            'storageCacheMaxMemorySize': 123,
            'storageCacheSnapshotMemorySize': 123,
            'storageCacheSnapshotWriteColdDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'storageCompactFullWriteColdDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'storageCompactThroughputBurst': 123,
            'storageMaxConcurrentCompactions': 123,
            'storageMaxIndexLogFileSize': 123,
            'storageNoValidateFieldSize': True|False,
            'storageRetentionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'storageSeriesFileMaxConcurrentSnapshotCompactions': 123,
            'storageSeriesIdSetCacheSize': 123,
            'storageWalMaxConcurrentWrites': 123,
            'storageWalMaxWriteDelay': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'uiDisabled': True|False
        },
        'InfluxDBv3Core': {
            'queryFileLimit': 123,
            'queryLogSize': 123,
            'logFilter': 'string',
            'logFormat': 'full',
            'dataFusionNumThreads': 123,
            'dataFusionRuntimeType': 'multi-thread'|'multi-thread-alt',
            'dataFusionRuntimeDisableLifoSlot': True|False,
            'dataFusionRuntimeEventInterval': 123,
            'dataFusionRuntimeGlobalQueueInterval': 123,
            'dataFusionRuntimeMaxBlockingThreads': 123,
            'dataFusionRuntimeMaxIoEventsPerTick': 123,
            'dataFusionRuntimeThreadKeepAlive': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'dataFusionRuntimeThreadPriority': 123,
            'dataFusionMaxParquetFanout': 123,
            'dataFusionUseCachedParquetLoader': True|False,
            'dataFusionConfig': 'string',
            'maxHttpRequestSize': 123,
            'forceSnapshotMemThreshold': {
                'percent': 'string',
                'absolute': 123
            },
            'walSnapshotSize': 123,
            'walMaxWriteBufferSize': 123,
            'snapshottedWalFilesToKeep': 123,
            'preemptiveCacheAge': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'parquetMemCachePrunePercentage': ...,
            'parquetMemCachePruneInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'disableParquetMemCache': True|False,
            'parquetMemCacheQueryPathDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'lastCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'distinctCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'gen1Duration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'execMemPoolBytes': {
                'percent': 'string',
                'absolute': 123
            },
            'parquetMemCacheSize': {
                'percent': 'string',
                'absolute': 123
            },
            'walReplayFailOnError': True|False,
            'walReplayConcurrencyLimit': 123,
            'tableIndexCacheMaxEntries': 123,
            'tableIndexCacheConcurrencyLimit': 123,
            'gen1LookbackDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'retentionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'deleteGracePeriod': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'hardDeleteDefaultDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            }
        },
        'InfluxDBv3Enterprise': {
            'queryFileLimit': 123,
            'queryLogSize': 123,
            'logFilter': 'string',
            'logFormat': 'full',
            'dataFusionNumThreads': 123,
            'dataFusionRuntimeType': 'multi-thread'|'multi-thread-alt',
            'dataFusionRuntimeDisableLifoSlot': True|False,
            'dataFusionRuntimeEventInterval': 123,
            'dataFusionRuntimeGlobalQueueInterval': 123,
            'dataFusionRuntimeMaxBlockingThreads': 123,
            'dataFusionRuntimeMaxIoEventsPerTick': 123,
            'dataFusionRuntimeThreadKeepAlive': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'dataFusionRuntimeThreadPriority': 123,
            'dataFusionMaxParquetFanout': 123,
            'dataFusionUseCachedParquetLoader': True|False,
            'dataFusionConfig': 'string',
            'maxHttpRequestSize': 123,
            'forceSnapshotMemThreshold': {
                'percent': 'string',
                'absolute': 123
            },
            'walSnapshotSize': 123,
            'walMaxWriteBufferSize': 123,
            'snapshottedWalFilesToKeep': 123,
            'preemptiveCacheAge': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'parquetMemCachePrunePercentage': ...,
            'parquetMemCachePruneInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'disableParquetMemCache': True|False,
            'parquetMemCacheQueryPathDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'lastCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'distinctCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'gen1Duration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'execMemPoolBytes': {
                'percent': 'string',
                'absolute': 123
            },
            'parquetMemCacheSize': {
                'percent': 'string',
                'absolute': 123
            },
            'walReplayFailOnError': True|False,
            'walReplayConcurrencyLimit': 123,
            'tableIndexCacheMaxEntries': 123,
            'tableIndexCacheConcurrencyLimit': 123,
            'gen1LookbackDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'retentionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'deleteGracePeriod': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'hardDeleteDefaultDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'ingestQueryInstances': 123,
            'queryOnlyInstances': 123,
            'dedicatedCompactor': True|False,
            'compactionRowLimit': 123,
            'compactionMaxNumFilesPerPlan': 123,
            'compactionGen2Duration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'compactionMultipliers': 'string',
            'compactionCleanupWait': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'compactionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'lastValueCacheDisableFromHistory': True|False,
            'distinctValueCacheDisableFromHistory': True|False,
            'replicationInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'catalogSyncInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            }
        }
    },
    tags={
        'string': 'string'
    }
)
type name:

string

param name:

[REQUIRED]

The name of the DB parameter group. The name must be unique per customer and per region.

type description:

string

param description:

A description of the DB parameter group.

type parameters:

dict

param parameters:

A list of the parameters that comprise the DB parameter group.

  • InfluxDBv2 (dict) --

    All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.

    • fluxLogEnabled (boolean) --

      Include option to show detailed logs for Flux queries.

      Default: false

    • logLevel (string) --

      Log output level. InfluxDB outputs log entries with severity levels greater than or equal to the level specified.

      Default: info

    • noTasks (boolean) --

      Disable the task scheduler. If problematic tasks prevent InfluxDB from starting, use this option to start InfluxDB without scheduling or executing tasks.

      Default: false

    • queryConcurrency (integer) --

      Number of queries allowed to execute concurrently. Setting to 0 allows an unlimited number of concurrent queries.

      Default: 0

    • queryQueueSize (integer) --

      Maximum number of queries allowed in execution queue. When queue limit is reached, new queries are rejected. Setting to 0 allows an unlimited number of queries in the queue.

      Default: 0

    • tracingType (string) --

      Enable tracing in InfluxDB and specifies the tracing type. Tracing is disabled by default.

    • metricsDisabled (boolean) --

      Disable the HTTP /metrics endpoint which exposes internal InfluxDB metrics.

      Default: false

    • httpIdleTimeout (dict) --

      Maximum duration the server should keep established connections alive while waiting for new requests. Set to 0 for no timeout.

      Default: 3 minutes

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • httpReadHeaderTimeout (dict) --

      Maximum duration the server should try to read HTTP headers for new requests. Set to 0 for no timeout.

      Default: 10 seconds

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • httpReadTimeout (dict) --

      Maximum duration the server should try to read the entirety of new requests. Set to 0 for no timeout.

      Default: 0

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • httpWriteTimeout (dict) --

      Maximum duration the server should spend processing and responding to write requests. Set to 0 for no timeout.

      Default: 0

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • influxqlMaxSelectBuckets (integer) --

      Maximum number of group by time buckets a SELECT statement can create. 0 allows an unlimited number of buckets.

      Default: 0

    • influxqlMaxSelectPoint (integer) --

      Maximum number of points a SELECT statement can process. 0 allows an unlimited number of points. InfluxDB checks the point count every second (so queries exceeding the maximum aren’t immediately aborted).

      Default: 0

    • influxqlMaxSelectSeries (integer) --

      Maximum number of series a SELECT statement can return. 0 allows an unlimited number of series.

      Default: 0

    • pprofDisabled (boolean) --

      Disable the /debug/pprof HTTP endpoint. This endpoint provides runtime profiling data and can be helpful when debugging.

      Default: true

    • queryInitialMemoryBytes (integer) --

      Initial bytes of memory allocated for a query.

      Default: 0

    • queryMaxMemoryBytes (integer) --

      Maximum number of queries allowed in execution queue. When queue limit is reached, new queries are rejected. Setting to 0 allows an unlimited number of queries in the queue.

      Default: 0

    • queryMemoryBytes (integer) --

      Maximum bytes of memory allowed for a single query. Must be greater or equal to queryInitialMemoryBytes.

      Default: 0

    • sessionLength (integer) --

      Specifies the Time to Live (TTL) in minutes for newly created user sessions.

      Default: 60

    • sessionRenewDisabled (boolean) --

      Disables automatically extending a user’s session TTL on each request. By default, every request sets the session’s expiration time to five minutes from now. When disabled, sessions expire after the specified session length and the user is redirected to the login page, even if recently active.

      Default: false

    • storageCacheMaxMemorySize (integer) --

      Maximum size (in bytes) a shard’s cache can reach before it starts rejecting writes. Must be greater than storageCacheSnapShotMemorySize and lower than instance’s total memory capacity. We recommend setting it to below 15% of the total memory capacity.

      Default: 1073741824

    • storageCacheSnapshotMemorySize (integer) --

      Size (in bytes) at which the storage engine will snapshot the cache and write it to a TSM file to make more memory available. Must not be greater than storageCacheMaxMemorySize.

      Default: 26214400

    • storageCacheSnapshotWriteColdDuration (dict) --

      Duration at which the storage engine will snapshot the cache and write it to a new TSM file if the shard hasn’t received writes or deletes.

      Default: 10 minutes

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • storageCompactFullWriteColdDuration (dict) --

      Duration at which the storage engine will compact all TSM files in a shard if it hasn't received writes or deletes.

      Default: 4 hours

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • storageCompactThroughputBurst (integer) --

      Rate limit (in bytes per second) that TSM compactions can write to disk.

      Default: 50331648

    • storageMaxConcurrentCompactions (integer) --

      Maximum number of full and level compactions that can run concurrently. A value of 0 results in 50% of runtime.GOMAXPROCS(0) used at runtime. Any number greater than zero limits compactions to that value. This setting does not apply to cache snapshotting.

      Default: 0

    • storageMaxIndexLogFileSize (integer) --

      Size (in bytes) at which an index write-ahead log (WAL) file will compact into an index file. Lower sizes will cause log files to be compacted more quickly and result in lower heap usage at the expense of write throughput.

      Default: 1048576

    • storageNoValidateFieldSize (boolean) --

      Skip field size validation on incoming write requests.

      Default: false

    • storageRetentionCheckInterval (dict) --

      Interval of retention policy enforcement checks. Must be greater than 0.

      Default: 30 minutes

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • storageSeriesFileMaxConcurrentSnapshotCompactions (integer) --

      Maximum number of snapshot compactions that can run concurrently across all series partitions in a database.

      Default: 0

    • storageSeriesIdSetCacheSize (integer) --

      Size of the internal cache used in the TSI index to store previously calculated series results. Cached results are returned quickly rather than needing to be recalculated when a subsequent query with the same tag key/value predicate is executed. Setting this value to 0 will disable the cache and may decrease query performance.

      Default: 100

    • storageWalMaxConcurrentWrites (integer) --

      Maximum number writes to the WAL directory to attempt at the same time. Setting this value to 0 results in number of processing units available x2.

      Default: 0

    • storageWalMaxWriteDelay (dict) --

      Maximum amount of time a write request to the WAL directory will wait when the maximum number of concurrent active writes to the WAL directory has been met. Set to 0 to disable the timeout.

      Default: 10 minutes

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • uiDisabled (boolean) --

      Disable the InfluxDB user interface (UI). The UI is enabled by default.

      Default: false

  • InfluxDBv3Core (dict) --

    All the customer-modifiable InfluxDB v3 Core parameters in Timestream for InfluxDB.

    • queryFileLimit (integer) --

      Limits the number of Parquet files a query can access. If a query attempts to read more than this limit, InfluxDB 3 returns an error.

      Default: 432

    • queryLogSize (integer) --

      Defines the size of the query log. Up to this many queries remain in the log before older queries are evicted to make room for new ones.

      Default: 1000

    • logFilter (string) --

      Sets the filter directive for logs.

    • logFormat (string) --

      Defines the message format for logs.

      Default: full

    • dataFusionNumThreads (integer) --

      Sets the maximum number of DataFusion runtime threads to use.

    • dataFusionRuntimeType (string) --

      Specifies the DataFusion tokio runtime type.

      Default: multi-thread

    • dataFusionRuntimeDisableLifoSlot (boolean) --

      Disables the LIFO slot of the DataFusion runtime.

    • dataFusionRuntimeEventInterval (integer) --

      Sets the number of scheduler ticks after which the scheduler of the DataFusion tokio runtime polls for external events–for example: timers, I/O.

    • dataFusionRuntimeGlobalQueueInterval (integer) --

      Sets the number of scheduler ticks after which the scheduler of the DataFusion runtime polls the global task queue.

    • dataFusionRuntimeMaxBlockingThreads (integer) --

      Specifies the limit for additional threads spawned by the DataFusion runtime.

    • dataFusionRuntimeMaxIoEventsPerTick (integer) --

      Configures the maximum number of events processed per tick by the tokio DataFusion runtime.

    • dataFusionRuntimeThreadKeepAlive (dict) --

      Sets a custom timeout for a thread in the blocking pool of the tokio DataFusion runtime.

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • dataFusionRuntimeThreadPriority (integer) --

      Sets the thread priority for tokio DataFusion runtime workers.

      Default: 10

    • dataFusionMaxParquetFanout (integer) --

      When multiple parquet files are required in a sorted way (deduplication for example), specifies the maximum fanout.

      Default: 1000

    • dataFusionUseCachedParquetLoader (boolean) --

      Uses a cached parquet loader when reading parquet files from the object store.

    • dataFusionConfig (string) --

      Provides custom configuration to DataFusion as a comma-separated list of key:value pairs.

    • maxHttpRequestSize (integer) --

      Specifies the maximum size of HTTP requests.

      Default: 10485760

    • forceSnapshotMemThreshold (dict) --

      Specifies the threshold for the internal memory buffer. Supports either a percentage (portion of available memory) or absolute value in MB–for example: 70% or 100

      Default: 70%

      • percent (string) --

        Percent for InfluxDB parameters.

      • absolute (integer) --

        Absolute long for InfluxDB parameters.

    • walSnapshotSize (integer) --

      Defines the number of WAL files to attempt to remove in a snapshot. This, multiplied by the interval, determines how often snapshots are taken.

      Default: 600

    • walMaxWriteBufferSize (integer) --

      Specifies the maximum number of write requests that can be buffered before a flush must be executed and succeed.

      Default: 100000

    • snapshottedWalFilesToKeep (integer) --

      Specifies the number of snapshotted WAL files to retain in the object store. Flushing the WAL files does not clear the WAL files immediately; they are deleted when the number of snapshotted WAL files exceeds this number.

      Default: 300

    • preemptiveCacheAge (dict) --

      Specifies the interval to prefetch into the Parquet cache during compaction.

      Default: 3d

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • parquetMemCachePrunePercentage (float) --

      Specifies the percentage of entries to prune during a prune operation on the in-memory Parquet cache.

      Default: 0.1

    • parquetMemCachePruneInterval (dict) --

      Sets the interval to check if the in-memory Parquet cache needs to be pruned.

      Default: 1s

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • disableParquetMemCache (boolean) --

      Disables the in-memory Parquet cache. By default, the cache is enabled.

    • parquetMemCacheQueryPathDuration (dict) --

      Specifies the time window for caching recent Parquet files in memory.

      Default: 5h

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • lastCacheEvictionInterval (dict) --

      Specifies the interval to evict expired entries from the Last-N-Value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

      Default: 10s

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • distinctCacheEvictionInterval (dict) --

      Specifies the interval to evict expired entries from the distinct value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

      Default: 10s

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • gen1Duration (dict) --

      Specifies the duration that Parquet files are arranged into. Data timestamps land each row into a file of this duration. Supported durations are 1m, 5m, and 10m. These files are known as “generation 1” files that the compactor in InfluxDB 3 Enterprise can merge into larger generations.

      Default: 10m

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • execMemPoolBytes (dict) --

      Specifies the size of memory pool used during query execution. Can be given as absolute value in bytes or as a percentage of the total available memory–for example: 8000000000 or 10%.

      Default: 20%

      • percent (string) --

        Percent for InfluxDB parameters.

      • absolute (integer) --

        Absolute long for InfluxDB parameters.

    • parquetMemCacheSize (dict) --

      Specifies the size of the in-memory Parquet cache in megabytes or percentage of total available memory.

      Default: 20%

      • percent (string) --

        Percent for InfluxDB parameters.

      • absolute (integer) --

        Absolute long for InfluxDB parameters.

    • walReplayFailOnError (boolean) --

      Determines whether WAL replay should fail when encountering errors.

      Default: false

    • walReplayConcurrencyLimit (integer) --

      Concurrency limit during WAL replay. Setting this number too high can lead to OOM. The default is dynamically determined.

      Default: max(num_cpus, 10)

    • tableIndexCacheMaxEntries (integer) --

      Specifies the maximum number of entries in the table index cache.

      Default: 1000

    • tableIndexCacheConcurrencyLimit (integer) --

      Limits the concurrency level for table index cache operations.

      Default: 8

    • gen1LookbackDuration (dict) --

      Specifies how far back to look when creating generation 1 Parquet files.

      Default: 24h

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • retentionCheckInterval (dict) --

      The interval at which retention policies are checked and enforced. Enter as a human-readable time–for example: 30m or 1h.

      Default: 30m

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • deleteGracePeriod (dict) --

      Specifies the grace period before permanently deleting data.

      Default: 24h

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • hardDeleteDefaultDuration (dict) --

      Sets the default duration for hard deletion of data.

      Default: 90d

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

  • InfluxDBv3Enterprise (dict) --

    All the customer-modifiable InfluxDB v3 Enterprise parameters in Timestream for InfluxDB.

    • queryFileLimit (integer) --

      Limits the number of Parquet files a query can access. If a query attempts to read more than this limit, InfluxDB 3 returns an error.

      Default: 432

    • queryLogSize (integer) --

      Defines the size of the query log. Up to this many queries remain in the log before older queries are evicted to make room for new ones.

      Default: 1000

    • logFilter (string) --

      Sets the filter directive for logs.

    • logFormat (string) --

      Defines the message format for logs.

      Default: full

    • dataFusionNumThreads (integer) --

      Sets the maximum number of DataFusion runtime threads to use.

    • dataFusionRuntimeType (string) --

      Specifies the DataFusion tokio runtime type.

      Default: multi-thread

    • dataFusionRuntimeDisableLifoSlot (boolean) --

      Disables the LIFO slot of the DataFusion runtime.

    • dataFusionRuntimeEventInterval (integer) --

      Sets the number of scheduler ticks after which the scheduler of the DataFusion tokio runtime polls for external events–for example: timers, I/O.

    • dataFusionRuntimeGlobalQueueInterval (integer) --

      Sets the number of scheduler ticks after which the scheduler of the DataFusion runtime polls the global task queue.

    • dataFusionRuntimeMaxBlockingThreads (integer) --

      Specifies the limit for additional threads spawned by the DataFusion runtime.

    • dataFusionRuntimeMaxIoEventsPerTick (integer) --

      Configures the maximum number of events processed per tick by the tokio DataFusion runtime.

    • dataFusionRuntimeThreadKeepAlive (dict) --

      Sets a custom timeout for a thread in the blocking pool of the tokio DataFusion runtime.

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • dataFusionRuntimeThreadPriority (integer) --

      Sets the thread priority for tokio DataFusion runtime workers.

      Default: 10

    • dataFusionMaxParquetFanout (integer) --

      When multiple parquet files are required in a sorted way (deduplication for example), specifies the maximum fanout.

      Default: 1000

    • dataFusionUseCachedParquetLoader (boolean) --

      Uses a cached parquet loader when reading parquet files from the object store.

    • dataFusionConfig (string) --

      Provides custom configuration to DataFusion as a comma-separated list of key:value pairs.

    • maxHttpRequestSize (integer) --

      Specifies the maximum size of HTTP requests.

      Default: 10485760

    • forceSnapshotMemThreshold (dict) --

      Specifies the threshold for the internal memory buffer. Supports either a percentage (portion of available memory) or absolute value in MB–for example: 70% or 100

      Default: 70%

      • percent (string) --

        Percent for InfluxDB parameters.

      • absolute (integer) --

        Absolute long for InfluxDB parameters.

    • walSnapshotSize (integer) --

      Defines the number of WAL files to attempt to remove in a snapshot. This, multiplied by the interval, determines how often snapshots are taken.

      Default: 600

    • walMaxWriteBufferSize (integer) --

      Specifies the maximum number of write requests that can be buffered before a flush must be executed and succeed.

      Default: 100000

    • snapshottedWalFilesToKeep (integer) --

      Specifies the number of snapshotted WAL files to retain in the object store. Flushing the WAL files does not clear the WAL files immediately; they are deleted when the number of snapshotted WAL files exceeds this number.

      Default: 300

    • preemptiveCacheAge (dict) --

      Specifies the interval to prefetch into the Parquet cache during compaction.

      Default: 3d

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • parquetMemCachePrunePercentage (float) --

      Specifies the percentage of entries to prune during a prune operation on the in-memory Parquet cache.

      Default: 0.1

    • parquetMemCachePruneInterval (dict) --

      Sets the interval to check if the in-memory Parquet cache needs to be pruned.

      Default: 1s

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • disableParquetMemCache (boolean) --

      Disables the in-memory Parquet cache. By default, the cache is enabled.

    • parquetMemCacheQueryPathDuration (dict) --

      Specifies the time window for caching recent Parquet files in memory.

      Default: 5h

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • lastCacheEvictionInterval (dict) --

      Specifies the interval to evict expired entries from the Last-N-Value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

      Default: 10s

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • distinctCacheEvictionInterval (dict) --

      Specifies the interval to evict expired entries from the distinct value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

      Default: 10s

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • gen1Duration (dict) --

      Specifies the duration that Parquet files are arranged into. Data timestamps land each row into a file of this duration. Supported durations are 1m, 5m, and 10m. These files are known as “generation 1” files, which the compactor can merge into larger generations.

      Default: 10m

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • execMemPoolBytes (dict) --

      Specifies the size of memory pool used during query execution. Can be given as absolute value in bytes or as a percentage of the total available memory–for example: 8000000000 or 10%.

      Default: 20%

      • percent (string) --

        Percent for InfluxDB parameters.

      • absolute (integer) --

        Absolute long for InfluxDB parameters.

    • parquetMemCacheSize (dict) --

      Specifies the size of the in-memory Parquet cache in megabytes or percentage of total available memory.

      Default: 20%

      • percent (string) --

        Percent for InfluxDB parameters.

      • absolute (integer) --

        Absolute long for InfluxDB parameters.

    • walReplayFailOnError (boolean) --

      Determines whether WAL replay should fail when encountering errors.

      Default: false

    • walReplayConcurrencyLimit (integer) --

      Concurrency limit during WAL replay. Setting this number too high can lead to OOM. The default is dynamically determined.

      Default: max(num_cpus, 10)

    • tableIndexCacheMaxEntries (integer) --

      Specifies the maximum number of entries in the table index cache.

      Default: 1000

    • tableIndexCacheConcurrencyLimit (integer) --

      Limits the concurrency level for table index cache operations.

      Default: 8

    • gen1LookbackDuration (dict) --

      Specifies how far back to look when creating generation 1 Parquet files.

      Default: 24h

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • retentionCheckInterval (dict) --

      The interval at which retention policies are checked and enforced. Enter as a human-readable time–for example: 30m or 1h.

      Default: 30m

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • deleteGracePeriod (dict) --

      Specifies the grace period before permanently deleting data.

      Default: 24h

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • hardDeleteDefaultDuration (dict) --

      Sets the default duration for hard deletion of data.

      Default: 90d

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • ingestQueryInstances (integer) -- [REQUIRED]

      Specifies number of instances in the DbCluster which can both ingest and query.

    • queryOnlyInstances (integer) -- [REQUIRED]

      Specifies number of instances in the DbCluster which can only query.

    • dedicatedCompactor (boolean) -- [REQUIRED]

      Specifies if the compactor instance should be a standalone instance or not.

    • compactionRowLimit (integer) --

      Specifies the soft limit for the number of rows per file that the compactor writes. The compactor may write more rows than this limit.

      Default: 1000000

    • compactionMaxNumFilesPerPlan (integer) --

      Sets the maximum number of files included in any compaction plan.

      Default: 500

    • compactionGen2Duration (dict) --

      Specifies the duration of the first level of compaction (gen2). Later levels of compaction are multiples of this duration. This value should be equal to or greater than the gen1 duration.

      Default: 20m

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • compactionMultipliers (string) --

      Specifies a comma-separated list of multiples defining the duration of each level of compaction. The number of elements in the list determines the number of compaction levels. The first element specifies the duration of the first level (gen3); subsequent levels are multiples of the previous level.

      Default: 3,4,6,5

    • compactionCleanupWait (dict) --

      Specifies the amount of time that the compactor waits after finishing a compaction run to delete files marked as needing deletion during that compaction run.

      Default: 10m

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • compactionCheckInterval (dict) --

      Specifies how often the compactor checks for new compaction work to perform.

      Default: 10s

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • lastValueCacheDisableFromHistory (boolean) --

      Disables populating the last-N-value cache from historical data. If disabled, the cache is still populated with data from the write-ahead log (WAL).

    • distinctValueCacheDisableFromHistory (boolean) --

      Disables populating the distinct value cache from historical data. If disabled, the cache is still populated with data from the write-ahead log (WAL).

    • replicationInterval (dict) --

      Specifies the interval at which data replication occurs between cluster nodes.

      Default: 250ms

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

    • catalogSyncInterval (dict) --

      Defines how often the catalog synchronizes across cluster nodes.

      Default: 10s

      • durationType (string) -- [REQUIRED]

        The type of duration for InfluxDB parameters.

      • value (integer) -- [REQUIRED]

        The value of duration for InfluxDB parameters.

type tags:

dict

param tags:

A list of key-value pairs to associate with the DB parameter group.

  • (string) --

    • (string) --

rtype:

dict

returns:

Response Syntax

{
    'id': 'string',
    'name': 'string',
    'arn': 'string',
    'description': 'string',
    'parameters': {
        'InfluxDBv2': {
            'fluxLogEnabled': True|False,
            'logLevel': 'debug'|'info'|'error',
            'noTasks': True|False,
            'queryConcurrency': 123,
            'queryQueueSize': 123,
            'tracingType': 'log'|'jaeger'|'disabled',
            'metricsDisabled': True|False,
            'httpIdleTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'httpReadHeaderTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'httpReadTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'httpWriteTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'influxqlMaxSelectBuckets': 123,
            'influxqlMaxSelectPoint': 123,
            'influxqlMaxSelectSeries': 123,
            'pprofDisabled': True|False,
            'queryInitialMemoryBytes': 123,
            'queryMaxMemoryBytes': 123,
            'queryMemoryBytes': 123,
            'sessionLength': 123,
            'sessionRenewDisabled': True|False,
            'storageCacheMaxMemorySize': 123,
            'storageCacheSnapshotMemorySize': 123,
            'storageCacheSnapshotWriteColdDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'storageCompactFullWriteColdDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'storageCompactThroughputBurst': 123,
            'storageMaxConcurrentCompactions': 123,
            'storageMaxIndexLogFileSize': 123,
            'storageNoValidateFieldSize': True|False,
            'storageRetentionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'storageSeriesFileMaxConcurrentSnapshotCompactions': 123,
            'storageSeriesIdSetCacheSize': 123,
            'storageWalMaxConcurrentWrites': 123,
            'storageWalMaxWriteDelay': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'uiDisabled': True|False
        },
        'InfluxDBv3Core': {
            'queryFileLimit': 123,
            'queryLogSize': 123,
            'logFilter': 'string',
            'logFormat': 'full',
            'dataFusionNumThreads': 123,
            'dataFusionRuntimeType': 'multi-thread'|'multi-thread-alt',
            'dataFusionRuntimeDisableLifoSlot': True|False,
            'dataFusionRuntimeEventInterval': 123,
            'dataFusionRuntimeGlobalQueueInterval': 123,
            'dataFusionRuntimeMaxBlockingThreads': 123,
            'dataFusionRuntimeMaxIoEventsPerTick': 123,
            'dataFusionRuntimeThreadKeepAlive': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'dataFusionRuntimeThreadPriority': 123,
            'dataFusionMaxParquetFanout': 123,
            'dataFusionUseCachedParquetLoader': True|False,
            'dataFusionConfig': 'string',
            'maxHttpRequestSize': 123,
            'forceSnapshotMemThreshold': {
                'percent': 'string',
                'absolute': 123
            },
            'walSnapshotSize': 123,
            'walMaxWriteBufferSize': 123,
            'snapshottedWalFilesToKeep': 123,
            'preemptiveCacheAge': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'parquetMemCachePrunePercentage': ...,
            'parquetMemCachePruneInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'disableParquetMemCache': True|False,
            'parquetMemCacheQueryPathDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'lastCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'distinctCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'gen1Duration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'execMemPoolBytes': {
                'percent': 'string',
                'absolute': 123
            },
            'parquetMemCacheSize': {
                'percent': 'string',
                'absolute': 123
            },
            'walReplayFailOnError': True|False,
            'walReplayConcurrencyLimit': 123,
            'tableIndexCacheMaxEntries': 123,
            'tableIndexCacheConcurrencyLimit': 123,
            'gen1LookbackDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'retentionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'deleteGracePeriod': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'hardDeleteDefaultDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            }
        },
        'InfluxDBv3Enterprise': {
            'queryFileLimit': 123,
            'queryLogSize': 123,
            'logFilter': 'string',
            'logFormat': 'full',
            'dataFusionNumThreads': 123,
            'dataFusionRuntimeType': 'multi-thread'|'multi-thread-alt',
            'dataFusionRuntimeDisableLifoSlot': True|False,
            'dataFusionRuntimeEventInterval': 123,
            'dataFusionRuntimeGlobalQueueInterval': 123,
            'dataFusionRuntimeMaxBlockingThreads': 123,
            'dataFusionRuntimeMaxIoEventsPerTick': 123,
            'dataFusionRuntimeThreadKeepAlive': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'dataFusionRuntimeThreadPriority': 123,
            'dataFusionMaxParquetFanout': 123,
            'dataFusionUseCachedParquetLoader': True|False,
            'dataFusionConfig': 'string',
            'maxHttpRequestSize': 123,
            'forceSnapshotMemThreshold': {
                'percent': 'string',
                'absolute': 123
            },
            'walSnapshotSize': 123,
            'walMaxWriteBufferSize': 123,
            'snapshottedWalFilesToKeep': 123,
            'preemptiveCacheAge': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'parquetMemCachePrunePercentage': ...,
            'parquetMemCachePruneInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'disableParquetMemCache': True|False,
            'parquetMemCacheQueryPathDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'lastCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'distinctCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'gen1Duration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'execMemPoolBytes': {
                'percent': 'string',
                'absolute': 123
            },
            'parquetMemCacheSize': {
                'percent': 'string',
                'absolute': 123
            },
            'walReplayFailOnError': True|False,
            'walReplayConcurrencyLimit': 123,
            'tableIndexCacheMaxEntries': 123,
            'tableIndexCacheConcurrencyLimit': 123,
            'gen1LookbackDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'retentionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'deleteGracePeriod': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'hardDeleteDefaultDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'ingestQueryInstances': 123,
            'queryOnlyInstances': 123,
            'dedicatedCompactor': True|False,
            'compactionRowLimit': 123,
            'compactionMaxNumFilesPerPlan': 123,
            'compactionGen2Duration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'compactionMultipliers': 'string',
            'compactionCleanupWait': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'compactionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'lastValueCacheDisableFromHistory': True|False,
            'distinctValueCacheDisableFromHistory': True|False,
            'replicationInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'catalogSyncInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            }
        }
    }
}

Response Structure

  • (dict) --

    • id (string) --

      A service-generated unique identifier.

    • name (string) --

      The customer-supplied name that uniquely identifies the DB parameter group when interacting with the Amazon Timestream for InfluxDB API and CLI commands.

    • arn (string) --

      The Amazon Resource Name (ARM) of the DB parameter group.

    • description (string) --

      The description of the DB parameter group.

    • parameters (dict) --

      A list of the parameters that comprise the DB parameter group.

      • InfluxDBv2 (dict) --

        All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.

        • fluxLogEnabled (boolean) --

          Include option to show detailed logs for Flux queries.

          Default: false

        • logLevel (string) --

          Log output level. InfluxDB outputs log entries with severity levels greater than or equal to the level specified.

          Default: info

        • noTasks (boolean) --

          Disable the task scheduler. If problematic tasks prevent InfluxDB from starting, use this option to start InfluxDB without scheduling or executing tasks.

          Default: false

        • queryConcurrency (integer) --

          Number of queries allowed to execute concurrently. Setting to 0 allows an unlimited number of concurrent queries.

          Default: 0

        • queryQueueSize (integer) --

          Maximum number of queries allowed in execution queue. When queue limit is reached, new queries are rejected. Setting to 0 allows an unlimited number of queries in the queue.

          Default: 0

        • tracingType (string) --

          Enable tracing in InfluxDB and specifies the tracing type. Tracing is disabled by default.

        • metricsDisabled (boolean) --

          Disable the HTTP /metrics endpoint which exposes internal InfluxDB metrics.

          Default: false

        • httpIdleTimeout (dict) --

          Maximum duration the server should keep established connections alive while waiting for new requests. Set to 0 for no timeout.

          Default: 3 minutes

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • httpReadHeaderTimeout (dict) --

          Maximum duration the server should try to read HTTP headers for new requests. Set to 0 for no timeout.

          Default: 10 seconds

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • httpReadTimeout (dict) --

          Maximum duration the server should try to read the entirety of new requests. Set to 0 for no timeout.

          Default: 0

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • httpWriteTimeout (dict) --

          Maximum duration the server should spend processing and responding to write requests. Set to 0 for no timeout.

          Default: 0

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • influxqlMaxSelectBuckets (integer) --

          Maximum number of group by time buckets a SELECT statement can create. 0 allows an unlimited number of buckets.

          Default: 0

        • influxqlMaxSelectPoint (integer) --

          Maximum number of points a SELECT statement can process. 0 allows an unlimited number of points. InfluxDB checks the point count every second (so queries exceeding the maximum aren’t immediately aborted).

          Default: 0

        • influxqlMaxSelectSeries (integer) --

          Maximum number of series a SELECT statement can return. 0 allows an unlimited number of series.

          Default: 0

        • pprofDisabled (boolean) --

          Disable the /debug/pprof HTTP endpoint. This endpoint provides runtime profiling data and can be helpful when debugging.

          Default: true

        • queryInitialMemoryBytes (integer) --

          Initial bytes of memory allocated for a query.

          Default: 0

        • queryMaxMemoryBytes (integer) --

          Maximum number of queries allowed in execution queue. When queue limit is reached, new queries are rejected. Setting to 0 allows an unlimited number of queries in the queue.

          Default: 0

        • queryMemoryBytes (integer) --

          Maximum bytes of memory allowed for a single query. Must be greater or equal to queryInitialMemoryBytes.

          Default: 0

        • sessionLength (integer) --

          Specifies the Time to Live (TTL) in minutes for newly created user sessions.

          Default: 60

        • sessionRenewDisabled (boolean) --

          Disables automatically extending a user’s session TTL on each request. By default, every request sets the session’s expiration time to five minutes from now. When disabled, sessions expire after the specified session length and the user is redirected to the login page, even if recently active.

          Default: false

        • storageCacheMaxMemorySize (integer) --

          Maximum size (in bytes) a shard’s cache can reach before it starts rejecting writes. Must be greater than storageCacheSnapShotMemorySize and lower than instance’s total memory capacity. We recommend setting it to below 15% of the total memory capacity.

          Default: 1073741824

        • storageCacheSnapshotMemorySize (integer) --

          Size (in bytes) at which the storage engine will snapshot the cache and write it to a TSM file to make more memory available. Must not be greater than storageCacheMaxMemorySize.

          Default: 26214400

        • storageCacheSnapshotWriteColdDuration (dict) --

          Duration at which the storage engine will snapshot the cache and write it to a new TSM file if the shard hasn’t received writes or deletes.

          Default: 10 minutes

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • storageCompactFullWriteColdDuration (dict) --

          Duration at which the storage engine will compact all TSM files in a shard if it hasn't received writes or deletes.

          Default: 4 hours

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • storageCompactThroughputBurst (integer) --

          Rate limit (in bytes per second) that TSM compactions can write to disk.

          Default: 50331648

        • storageMaxConcurrentCompactions (integer) --

          Maximum number of full and level compactions that can run concurrently. A value of 0 results in 50% of runtime.GOMAXPROCS(0) used at runtime. Any number greater than zero limits compactions to that value. This setting does not apply to cache snapshotting.

          Default: 0

        • storageMaxIndexLogFileSize (integer) --

          Size (in bytes) at which an index write-ahead log (WAL) file will compact into an index file. Lower sizes will cause log files to be compacted more quickly and result in lower heap usage at the expense of write throughput.

          Default: 1048576

        • storageNoValidateFieldSize (boolean) --

          Skip field size validation on incoming write requests.

          Default: false

        • storageRetentionCheckInterval (dict) --

          Interval of retention policy enforcement checks. Must be greater than 0.

          Default: 30 minutes

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • storageSeriesFileMaxConcurrentSnapshotCompactions (integer) --

          Maximum number of snapshot compactions that can run concurrently across all series partitions in a database.

          Default: 0

        • storageSeriesIdSetCacheSize (integer) --

          Size of the internal cache used in the TSI index to store previously calculated series results. Cached results are returned quickly rather than needing to be recalculated when a subsequent query with the same tag key/value predicate is executed. Setting this value to 0 will disable the cache and may decrease query performance.

          Default: 100

        • storageWalMaxConcurrentWrites (integer) --

          Maximum number writes to the WAL directory to attempt at the same time. Setting this value to 0 results in number of processing units available x2.

          Default: 0

        • storageWalMaxWriteDelay (dict) --

          Maximum amount of time a write request to the WAL directory will wait when the maximum number of concurrent active writes to the WAL directory has been met. Set to 0 to disable the timeout.

          Default: 10 minutes

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • uiDisabled (boolean) --

          Disable the InfluxDB user interface (UI). The UI is enabled by default.

          Default: false

      • InfluxDBv3Core (dict) --

        All the customer-modifiable InfluxDB v3 Core parameters in Timestream for InfluxDB.

        • queryFileLimit (integer) --

          Limits the number of Parquet files a query can access. If a query attempts to read more than this limit, InfluxDB 3 returns an error.

          Default: 432

        • queryLogSize (integer) --

          Defines the size of the query log. Up to this many queries remain in the log before older queries are evicted to make room for new ones.

          Default: 1000

        • logFilter (string) --

          Sets the filter directive for logs.

        • logFormat (string) --

          Defines the message format for logs.

          Default: full

        • dataFusionNumThreads (integer) --

          Sets the maximum number of DataFusion runtime threads to use.

        • dataFusionRuntimeType (string) --

          Specifies the DataFusion tokio runtime type.

          Default: multi-thread

        • dataFusionRuntimeDisableLifoSlot (boolean) --

          Disables the LIFO slot of the DataFusion runtime.

        • dataFusionRuntimeEventInterval (integer) --

          Sets the number of scheduler ticks after which the scheduler of the DataFusion tokio runtime polls for external events–for example: timers, I/O.

        • dataFusionRuntimeGlobalQueueInterval (integer) --

          Sets the number of scheduler ticks after which the scheduler of the DataFusion runtime polls the global task queue.

        • dataFusionRuntimeMaxBlockingThreads (integer) --

          Specifies the limit for additional threads spawned by the DataFusion runtime.

        • dataFusionRuntimeMaxIoEventsPerTick (integer) --

          Configures the maximum number of events processed per tick by the tokio DataFusion runtime.

        • dataFusionRuntimeThreadKeepAlive (dict) --

          Sets a custom timeout for a thread in the blocking pool of the tokio DataFusion runtime.

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • dataFusionRuntimeThreadPriority (integer) --

          Sets the thread priority for tokio DataFusion runtime workers.

          Default: 10

        • dataFusionMaxParquetFanout (integer) --

          When multiple parquet files are required in a sorted way (deduplication for example), specifies the maximum fanout.

          Default: 1000

        • dataFusionUseCachedParquetLoader (boolean) --

          Uses a cached parquet loader when reading parquet files from the object store.

        • dataFusionConfig (string) --

          Provides custom configuration to DataFusion as a comma-separated list of key:value pairs.

        • maxHttpRequestSize (integer) --

          Specifies the maximum size of HTTP requests.

          Default: 10485760

        • forceSnapshotMemThreshold (dict) --

          Specifies the threshold for the internal memory buffer. Supports either a percentage (portion of available memory) or absolute value in MB–for example: 70% or 100

          Default: 70%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • walSnapshotSize (integer) --

          Defines the number of WAL files to attempt to remove in a snapshot. This, multiplied by the interval, determines how often snapshots are taken.

          Default: 600

        • walMaxWriteBufferSize (integer) --

          Specifies the maximum number of write requests that can be buffered before a flush must be executed and succeed.

          Default: 100000

        • snapshottedWalFilesToKeep (integer) --

          Specifies the number of snapshotted WAL files to retain in the object store. Flushing the WAL files does not clear the WAL files immediately; they are deleted when the number of snapshotted WAL files exceeds this number.

          Default: 300

        • preemptiveCacheAge (dict) --

          Specifies the interval to prefetch into the Parquet cache during compaction.

          Default: 3d

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • parquetMemCachePrunePercentage (float) --

          Specifies the percentage of entries to prune during a prune operation on the in-memory Parquet cache.

          Default: 0.1

        • parquetMemCachePruneInterval (dict) --

          Sets the interval to check if the in-memory Parquet cache needs to be pruned.

          Default: 1s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • disableParquetMemCache (boolean) --

          Disables the in-memory Parquet cache. By default, the cache is enabled.

        • parquetMemCacheQueryPathDuration (dict) --

          Specifies the time window for caching recent Parquet files in memory.

          Default: 5h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • lastCacheEvictionInterval (dict) --

          Specifies the interval to evict expired entries from the Last-N-Value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • distinctCacheEvictionInterval (dict) --

          Specifies the interval to evict expired entries from the distinct value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • gen1Duration (dict) --

          Specifies the duration that Parquet files are arranged into. Data timestamps land each row into a file of this duration. Supported durations are 1m, 5m, and 10m. These files are known as “generation 1” files that the compactor in InfluxDB 3 Enterprise can merge into larger generations.

          Default: 10m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • execMemPoolBytes (dict) --

          Specifies the size of memory pool used during query execution. Can be given as absolute value in bytes or as a percentage of the total available memory–for example: 8000000000 or 10%.

          Default: 20%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • parquetMemCacheSize (dict) --

          Specifies the size of the in-memory Parquet cache in megabytes or percentage of total available memory.

          Default: 20%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • walReplayFailOnError (boolean) --

          Determines whether WAL replay should fail when encountering errors.

          Default: false

        • walReplayConcurrencyLimit (integer) --

          Concurrency limit during WAL replay. Setting this number too high can lead to OOM. The default is dynamically determined.

          Default: max(num_cpus, 10)

        • tableIndexCacheMaxEntries (integer) --

          Specifies the maximum number of entries in the table index cache.

          Default: 1000

        • tableIndexCacheConcurrencyLimit (integer) --

          Limits the concurrency level for table index cache operations.

          Default: 8

        • gen1LookbackDuration (dict) --

          Specifies how far back to look when creating generation 1 Parquet files.

          Default: 24h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • retentionCheckInterval (dict) --

          The interval at which retention policies are checked and enforced. Enter as a human-readable time–for example: 30m or 1h.

          Default: 30m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • deleteGracePeriod (dict) --

          Specifies the grace period before permanently deleting data.

          Default: 24h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • hardDeleteDefaultDuration (dict) --

          Sets the default duration for hard deletion of data.

          Default: 90d

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

      • InfluxDBv3Enterprise (dict) --

        All the customer-modifiable InfluxDB v3 Enterprise parameters in Timestream for InfluxDB.

        • queryFileLimit (integer) --

          Limits the number of Parquet files a query can access. If a query attempts to read more than this limit, InfluxDB 3 returns an error.

          Default: 432

        • queryLogSize (integer) --

          Defines the size of the query log. Up to this many queries remain in the log before older queries are evicted to make room for new ones.

          Default: 1000

        • logFilter (string) --

          Sets the filter directive for logs.

        • logFormat (string) --

          Defines the message format for logs.

          Default: full

        • dataFusionNumThreads (integer) --

          Sets the maximum number of DataFusion runtime threads to use.

        • dataFusionRuntimeType (string) --

          Specifies the DataFusion tokio runtime type.

          Default: multi-thread

        • dataFusionRuntimeDisableLifoSlot (boolean) --

          Disables the LIFO slot of the DataFusion runtime.

        • dataFusionRuntimeEventInterval (integer) --

          Sets the number of scheduler ticks after which the scheduler of the DataFusion tokio runtime polls for external events–for example: timers, I/O.

        • dataFusionRuntimeGlobalQueueInterval (integer) --

          Sets the number of scheduler ticks after which the scheduler of the DataFusion runtime polls the global task queue.

        • dataFusionRuntimeMaxBlockingThreads (integer) --

          Specifies the limit for additional threads spawned by the DataFusion runtime.

        • dataFusionRuntimeMaxIoEventsPerTick (integer) --

          Configures the maximum number of events processed per tick by the tokio DataFusion runtime.

        • dataFusionRuntimeThreadKeepAlive (dict) --

          Sets a custom timeout for a thread in the blocking pool of the tokio DataFusion runtime.

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • dataFusionRuntimeThreadPriority (integer) --

          Sets the thread priority for tokio DataFusion runtime workers.

          Default: 10

        • dataFusionMaxParquetFanout (integer) --

          When multiple parquet files are required in a sorted way (deduplication for example), specifies the maximum fanout.

          Default: 1000

        • dataFusionUseCachedParquetLoader (boolean) --

          Uses a cached parquet loader when reading parquet files from the object store.

        • dataFusionConfig (string) --

          Provides custom configuration to DataFusion as a comma-separated list of key:value pairs.

        • maxHttpRequestSize (integer) --

          Specifies the maximum size of HTTP requests.

          Default: 10485760

        • forceSnapshotMemThreshold (dict) --

          Specifies the threshold for the internal memory buffer. Supports either a percentage (portion of available memory) or absolute value in MB–for example: 70% or 100

          Default: 70%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • walSnapshotSize (integer) --

          Defines the number of WAL files to attempt to remove in a snapshot. This, multiplied by the interval, determines how often snapshots are taken.

          Default: 600

        • walMaxWriteBufferSize (integer) --

          Specifies the maximum number of write requests that can be buffered before a flush must be executed and succeed.

          Default: 100000

        • snapshottedWalFilesToKeep (integer) --

          Specifies the number of snapshotted WAL files to retain in the object store. Flushing the WAL files does not clear the WAL files immediately; they are deleted when the number of snapshotted WAL files exceeds this number.

          Default: 300

        • preemptiveCacheAge (dict) --

          Specifies the interval to prefetch into the Parquet cache during compaction.

          Default: 3d

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • parquetMemCachePrunePercentage (float) --

          Specifies the percentage of entries to prune during a prune operation on the in-memory Parquet cache.

          Default: 0.1

        • parquetMemCachePruneInterval (dict) --

          Sets the interval to check if the in-memory Parquet cache needs to be pruned.

          Default: 1s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • disableParquetMemCache (boolean) --

          Disables the in-memory Parquet cache. By default, the cache is enabled.

        • parquetMemCacheQueryPathDuration (dict) --

          Specifies the time window for caching recent Parquet files in memory.

          Default: 5h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • lastCacheEvictionInterval (dict) --

          Specifies the interval to evict expired entries from the Last-N-Value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • distinctCacheEvictionInterval (dict) --

          Specifies the interval to evict expired entries from the distinct value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • gen1Duration (dict) --

          Specifies the duration that Parquet files are arranged into. Data timestamps land each row into a file of this duration. Supported durations are 1m, 5m, and 10m. These files are known as “generation 1” files, which the compactor can merge into larger generations.

          Default: 10m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • execMemPoolBytes (dict) --

          Specifies the size of memory pool used during query execution. Can be given as absolute value in bytes or as a percentage of the total available memory–for example: 8000000000 or 10%.

          Default: 20%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • parquetMemCacheSize (dict) --

          Specifies the size of the in-memory Parquet cache in megabytes or percentage of total available memory.

          Default: 20%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • walReplayFailOnError (boolean) --

          Determines whether WAL replay should fail when encountering errors.

          Default: false

        • walReplayConcurrencyLimit (integer) --

          Concurrency limit during WAL replay. Setting this number too high can lead to OOM. The default is dynamically determined.

          Default: max(num_cpus, 10)

        • tableIndexCacheMaxEntries (integer) --

          Specifies the maximum number of entries in the table index cache.

          Default: 1000

        • tableIndexCacheConcurrencyLimit (integer) --

          Limits the concurrency level for table index cache operations.

          Default: 8

        • gen1LookbackDuration (dict) --

          Specifies how far back to look when creating generation 1 Parquet files.

          Default: 24h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • retentionCheckInterval (dict) --

          The interval at which retention policies are checked and enforced. Enter as a human-readable time–for example: 30m or 1h.

          Default: 30m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • deleteGracePeriod (dict) --

          Specifies the grace period before permanently deleting data.

          Default: 24h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • hardDeleteDefaultDuration (dict) --

          Sets the default duration for hard deletion of data.

          Default: 90d

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • ingestQueryInstances (integer) --

          Specifies number of instances in the DbCluster which can both ingest and query.

        • queryOnlyInstances (integer) --

          Specifies number of instances in the DbCluster which can only query.

        • dedicatedCompactor (boolean) --

          Specifies if the compactor instance should be a standalone instance or not.

        • compactionRowLimit (integer) --

          Specifies the soft limit for the number of rows per file that the compactor writes. The compactor may write more rows than this limit.

          Default: 1000000

        • compactionMaxNumFilesPerPlan (integer) --

          Sets the maximum number of files included in any compaction plan.

          Default: 500

        • compactionGen2Duration (dict) --

          Specifies the duration of the first level of compaction (gen2). Later levels of compaction are multiples of this duration. This value should be equal to or greater than the gen1 duration.

          Default: 20m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • compactionMultipliers (string) --

          Specifies a comma-separated list of multiples defining the duration of each level of compaction. The number of elements in the list determines the number of compaction levels. The first element specifies the duration of the first level (gen3); subsequent levels are multiples of the previous level.

          Default: 3,4,6,5

        • compactionCleanupWait (dict) --

          Specifies the amount of time that the compactor waits after finishing a compaction run to delete files marked as needing deletion during that compaction run.

          Default: 10m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • compactionCheckInterval (dict) --

          Specifies how often the compactor checks for new compaction work to perform.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • lastValueCacheDisableFromHistory (boolean) --

          Disables populating the last-N-value cache from historical data. If disabled, the cache is still populated with data from the write-ahead log (WAL).

        • distinctValueCacheDisableFromHistory (boolean) --

          Disables populating the distinct value cache from historical data. If disabled, the cache is still populated with data from the write-ahead log (WAL).

        • replicationInterval (dict) --

          Specifies the interval at which data replication occurs between cluster nodes.

          Default: 250ms

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • catalogSyncInterval (dict) --

          Defines how often the catalog synchronizes across cluster nodes.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

DeleteDbInstance (updated) Link ¶
Changes (response)
{'instanceMode': {'INGEST', 'COMPACT', 'PROCESS', 'QUERY'},
 'instanceModes': ['PRIMARY | STANDBY | REPLICA | INGEST | QUERY | COMPACT | '
                   'PROCESS']}

Deletes a Timestream for InfluxDB DB instance.

See also: AWS API Documentation

Request Syntax

client.delete_db_instance(
    identifier='string'
)
type identifier:

string

param identifier:

[REQUIRED]

The id of the DB instance.

rtype:

dict

returns:

Response Syntax

{
    'id': 'string',
    'name': 'string',
    'arn': 'string',
    'status': 'CREATING'|'AVAILABLE'|'DELETING'|'MODIFYING'|'UPDATING'|'DELETED'|'FAILED'|'UPDATING_DEPLOYMENT_TYPE'|'UPDATING_INSTANCE_TYPE'|'MAINTENANCE',
    'endpoint': 'string',
    'port': 123,
    'networkType': 'IPV4'|'DUAL',
    'dbInstanceType': 'db.influx.medium'|'db.influx.large'|'db.influx.xlarge'|'db.influx.2xlarge'|'db.influx.4xlarge'|'db.influx.8xlarge'|'db.influx.12xlarge'|'db.influx.16xlarge'|'db.influx.24xlarge',
    'dbStorageType': 'InfluxIOIncludedT1'|'InfluxIOIncludedT2'|'InfluxIOIncludedT3',
    'allocatedStorage': 123,
    'deploymentType': 'SINGLE_AZ'|'WITH_MULTIAZ_STANDBY',
    'vpcSubnetIds': [
        'string',
    ],
    'publiclyAccessible': True|False,
    'vpcSecurityGroupIds': [
        'string',
    ],
    'dbParameterGroupIdentifier': 'string',
    'availabilityZone': 'string',
    'secondaryAvailabilityZone': 'string',
    'logDeliveryConfiguration': {
        's3Configuration': {
            'bucketName': 'string',
            'enabled': True|False
        }
    },
    'influxAuthParametersSecretArn': 'string',
    'dbClusterId': 'string',
    'instanceMode': 'PRIMARY'|'STANDBY'|'REPLICA'|'INGEST'|'QUERY'|'COMPACT'|'PROCESS',
    'instanceModes': [
        'PRIMARY'|'STANDBY'|'REPLICA'|'INGEST'|'QUERY'|'COMPACT'|'PROCESS',
    ]
}

Response Structure

  • (dict) --

    • id (string) --

      A service-generated unique identifier.

    • name (string) --

      The customer-supplied name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands.

    • arn (string) --

      The Amazon Resource Name (ARN) of the DB instance.

    • status (string) --

      The status of the DB instance.

    • endpoint (string) --

      The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.

    • port (integer) --

      The port number on which InfluxDB accepts connections.

    • 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.

    • dbInstanceType (string) --

      The Timestream for InfluxDB instance type that InfluxDB runs on.

    • dbStorageType (string) --

      The Timestream for InfluxDB DB storage type that InfluxDB stores data on.

    • allocatedStorage (integer) --

      The amount of storage allocated for your DB storage type (in gibibytes).

    • deploymentType (string) --

      Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.

    • vpcSubnetIds (list) --

      A list of VPC subnet IDs associated with the DB instance.

      • (string) --

    • publiclyAccessible (boolean) --

      Indicates if the DB instance has a public IP to facilitate access.

    • vpcSecurityGroupIds (list) --

      A list of VPC security group IDs associated with the DB instance.

      • (string) --

    • dbParameterGroupIdentifier (string) --

      The id of the DB parameter group assigned to your DB instance.

    • availabilityZone (string) --

      The Availability Zone in which the DB instance resides.

    • secondaryAvailabilityZone (string) --

      The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.

    • logDeliveryConfiguration (dict) --

      Configuration for sending InfluxDB engine logs to send to specified S3 bucket.

      • s3Configuration (dict) --

        Configuration for S3 bucket log delivery.

        • bucketName (string) --

          The name of the S3 bucket to deliver logs to.

        • enabled (boolean) --

          Indicates whether log delivery to the S3 bucket is enabled.

    • influxAuthParametersSecretArn (string) --

      The Amazon Resource Name (ARN) of the 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.

    • dbClusterId (string) --

      Specifies the DbCluster to which this DbInstance belongs to.

    • instanceMode (string) --

      Specifies the DbInstance's role in the cluster.

    • instanceModes (list) --

      Specifies the DbInstance's roles in the cluster.

      • (string) --

GetDbCluster (updated) Link ¶
Changes (response)
{'engineType': 'INFLUXDB_V2 | INFLUXDB_V3_CORE | INFLUXDB_V3_ENTERPRISE'}

Retrieves information about a Timestream for InfluxDB cluster.

See also: AWS API Documentation

Request Syntax

client.get_db_cluster(
    dbClusterId='string'
)
type dbClusterId:

string

param dbClusterId:

[REQUIRED]

Service-generated unique identifier of the DB cluster to retrieve.

rtype:

dict

returns:

Response Syntax

{
    'id': 'string',
    'name': 'string',
    'arn': 'string',
    'status': 'CREATING'|'UPDATING'|'DELETING'|'AVAILABLE'|'FAILED'|'DELETED'|'MAINTENANCE',
    'endpoint': 'string',
    'readerEndpoint': 'string',
    'port': 123,
    'deploymentType': 'MULTI_NODE_READ_REPLICAS',
    'dbInstanceType': 'db.influx.medium'|'db.influx.large'|'db.influx.xlarge'|'db.influx.2xlarge'|'db.influx.4xlarge'|'db.influx.8xlarge'|'db.influx.12xlarge'|'db.influx.16xlarge'|'db.influx.24xlarge',
    'networkType': 'IPV4'|'DUAL',
    'dbStorageType': 'InfluxIOIncludedT1'|'InfluxIOIncludedT2'|'InfluxIOIncludedT3',
    'allocatedStorage': 123,
    'engineType': 'INFLUXDB_V2'|'INFLUXDB_V3_CORE'|'INFLUXDB_V3_ENTERPRISE',
    'publiclyAccessible': True|False,
    'dbParameterGroupIdentifier': 'string',
    'logDeliveryConfiguration': {
        's3Configuration': {
            'bucketName': 'string',
            'enabled': True|False
        }
    },
    'influxAuthParametersSecretArn': 'string',
    'vpcSubnetIds': [
        'string',
    ],
    'vpcSecurityGroupIds': [
        'string',
    ],
    'failoverMode': 'AUTOMATIC'|'NO_FAILOVER'
}

Response Structure

  • (dict) --

    • id (string) --

      Service-generated unique identifier of the DB cluster to retrieve.

    • name (string) --

      Customer-supplied name of the Timestream for InfluxDB cluster.

    • arn (string) --

      The Amazon Resource Name (ARN) of the DB cluster.

    • status (string) --

      The status of the DB cluster.

    • endpoint (string) --

      The endpoint used to connect to the Timestream for InfluxDB cluster for write and read operations.

    • readerEndpoint (string) --

      The endpoint used to connect to the Timestream for InfluxDB cluster for read-only operations.

    • port (integer) --

      The port number on which InfluxDB accepts connections.

    • deploymentType (string) --

      Deployment type of the DB cluster.

    • dbInstanceType (string) --

      The Timestream for InfluxDB instance type that InfluxDB runs on.

    • networkType (string) --

      Specifies whether the network type of the Timestream for InfluxDB cluster is IPv4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.

    • dbStorageType (string) --

      The Timestream for InfluxDB DB storage type that InfluxDB stores data on.

    • allocatedStorage (integer) --

      The amount of storage allocated for your DB storage type (in gibibytes).

    • engineType (string) --

      The engine type of your DB cluster.

    • publiclyAccessible (boolean) --

      Indicates if the DB cluster has a public IP to facilitate access from outside the VPC.

    • dbParameterGroupIdentifier (string) --

      The ID of the DB parameter group assigned to your DB cluster.

    • logDeliveryConfiguration (dict) --

      Configuration for sending InfluxDB engine logs to send to specified S3 bucket.

      • s3Configuration (dict) --

        Configuration for S3 bucket log delivery.

        • bucketName (string) --

          The name of the S3 bucket to deliver logs to.

        • enabled (boolean) --

          Indicates whether log delivery to the S3 bucket is enabled.

    • influxAuthParametersSecretArn (string) --

      The Amazon Resource Name (ARN) of the 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.

    • vpcSubnetIds (list) --

      A list of VPC subnet IDs associated with the DB cluster.

      • (string) --

    • vpcSecurityGroupIds (list) --

      A list of VPC security group IDs associated with the DB cluster.

      • (string) --

    • failoverMode (string) --

      The configured failover mode for the DB cluster.

GetDbInstance (updated) Link ¶
Changes (response)
{'instanceMode': {'INGEST', 'COMPACT', 'PROCESS', 'QUERY'},
 'instanceModes': ['PRIMARY | STANDBY | REPLICA | INGEST | QUERY | COMPACT | '
                   'PROCESS']}

Returns a Timestream for InfluxDB DB instance.

See also: AWS API Documentation

Request Syntax

client.get_db_instance(
    identifier='string'
)
type identifier:

string

param identifier:

[REQUIRED]

The id of the DB instance.

rtype:

dict

returns:

Response Syntax

{
    'id': 'string',
    'name': 'string',
    'arn': 'string',
    'status': 'CREATING'|'AVAILABLE'|'DELETING'|'MODIFYING'|'UPDATING'|'DELETED'|'FAILED'|'UPDATING_DEPLOYMENT_TYPE'|'UPDATING_INSTANCE_TYPE'|'MAINTENANCE',
    'endpoint': 'string',
    'port': 123,
    'networkType': 'IPV4'|'DUAL',
    'dbInstanceType': 'db.influx.medium'|'db.influx.large'|'db.influx.xlarge'|'db.influx.2xlarge'|'db.influx.4xlarge'|'db.influx.8xlarge'|'db.influx.12xlarge'|'db.influx.16xlarge'|'db.influx.24xlarge',
    'dbStorageType': 'InfluxIOIncludedT1'|'InfluxIOIncludedT2'|'InfluxIOIncludedT3',
    'allocatedStorage': 123,
    'deploymentType': 'SINGLE_AZ'|'WITH_MULTIAZ_STANDBY',
    'vpcSubnetIds': [
        'string',
    ],
    'publiclyAccessible': True|False,
    'vpcSecurityGroupIds': [
        'string',
    ],
    'dbParameterGroupIdentifier': 'string',
    'availabilityZone': 'string',
    'secondaryAvailabilityZone': 'string',
    'logDeliveryConfiguration': {
        's3Configuration': {
            'bucketName': 'string',
            'enabled': True|False
        }
    },
    'influxAuthParametersSecretArn': 'string',
    'dbClusterId': 'string',
    'instanceMode': 'PRIMARY'|'STANDBY'|'REPLICA'|'INGEST'|'QUERY'|'COMPACT'|'PROCESS',
    'instanceModes': [
        'PRIMARY'|'STANDBY'|'REPLICA'|'INGEST'|'QUERY'|'COMPACT'|'PROCESS',
    ]
}

Response Structure

  • (dict) --

    • id (string) --

      A service-generated unique identifier.

    • name (string) --

      The customer-supplied name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands.

    • arn (string) --

      The Amazon Resource Name (ARN) of the DB instance.

    • status (string) --

      The status of the DB instance.

    • endpoint (string) --

      The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.

    • port (integer) --

      The port number on which InfluxDB accepts connections.

    • 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.

    • dbInstanceType (string) --

      The Timestream for InfluxDB instance type that InfluxDB runs on.

    • dbStorageType (string) --

      The Timestream for InfluxDB DB storage type that InfluxDB stores data on.

    • allocatedStorage (integer) --

      The amount of storage allocated for your DB storage type (in gibibytes).

    • deploymentType (string) --

      Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.

    • vpcSubnetIds (list) --

      A list of VPC subnet IDs associated with the DB instance.

      • (string) --

    • publiclyAccessible (boolean) --

      Indicates if the DB instance has a public IP to facilitate access.

    • vpcSecurityGroupIds (list) --

      A list of VPC security group IDs associated with the DB instance.

      • (string) --

    • dbParameterGroupIdentifier (string) --

      The id of the DB parameter group assigned to your DB instance.

    • availabilityZone (string) --

      The Availability Zone in which the DB instance resides.

    • secondaryAvailabilityZone (string) --

      The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.

    • logDeliveryConfiguration (dict) --

      Configuration for sending InfluxDB engine logs to send to specified S3 bucket.

      • s3Configuration (dict) --

        Configuration for S3 bucket log delivery.

        • bucketName (string) --

          The name of the S3 bucket to deliver logs to.

        • enabled (boolean) --

          Indicates whether log delivery to the S3 bucket is enabled.

    • influxAuthParametersSecretArn (string) --

      The Amazon Resource Name (ARN) of the 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.

    • dbClusterId (string) --

      Specifies the DbCluster to which this DbInstance belongs to.

    • instanceMode (string) --

      Specifies the DbInstance's role in the cluster.

    • instanceModes (list) --

      Specifies the DbInstance's roles in the cluster.

      • (string) --

GetDbParameterGroup (updated) Link ¶
Changes (response)
{'parameters': {'InfluxDBv2': {'httpIdleTimeout': {'durationType': {'days'}},
                               'httpReadHeaderTimeout': {'durationType': {'days'}},
                               'httpReadTimeout': {'durationType': {'days'}},
                               'httpWriteTimeout': {'durationType': {'days'}},
                               'storageCacheSnapshotWriteColdDuration': {'durationType': {'days'}},
                               'storageCompactFullWriteColdDuration': {'durationType': {'days'}},
                               'storageRetentionCheckInterval': {'durationType': {'days'}},
                               'storageWalMaxWriteDelay': {'durationType': {'days'}},
                               'tracingType': {'disabled'}},
                'InfluxDBv3Core': {'dataFusionConfig': 'string',
                                   'dataFusionMaxParquetFanout': 'integer',
                                   'dataFusionNumThreads': 'integer',
                                   'dataFusionRuntimeDisableLifoSlot': 'boolean',
                                   'dataFusionRuntimeEventInterval': 'integer',
                                   'dataFusionRuntimeGlobalQueueInterval': 'integer',
                                   'dataFusionRuntimeMaxBlockingThreads': 'integer',
                                   'dataFusionRuntimeMaxIoEventsPerTick': 'integer',
                                   'dataFusionRuntimeThreadKeepAlive': {'durationType': 'hours '
                                                                                        '| '
                                                                                        'minutes '
                                                                                        '| '
                                                                                        'seconds '
                                                                                        '| '
                                                                                        'milliseconds '
                                                                                        '| '
                                                                                        'days',
                                                                        'value': 'long'},
                                   'dataFusionRuntimeThreadPriority': 'integer',
                                   'dataFusionRuntimeType': 'multi-thread | '
                                                            'multi-thread-alt',
                                   'dataFusionUseCachedParquetLoader': 'boolean',
                                   'deleteGracePeriod': {'durationType': 'hours '
                                                                         '| '
                                                                         'minutes '
                                                                         '| '
                                                                         'seconds '
                                                                         '| '
                                                                         'milliseconds '
                                                                         '| '
                                                                         'days',
                                                         'value': 'long'},
                                   'disableParquetMemCache': 'boolean',
                                   'distinctCacheEvictionInterval': {'durationType': 'hours '
                                                                                     '| '
                                                                                     'minutes '
                                                                                     '| '
                                                                                     'seconds '
                                                                                     '| '
                                                                                     'milliseconds '
                                                                                     '| '
                                                                                     'days',
                                                                     'value': 'long'},
                                   'execMemPoolBytes': {'absolute': 'long',
                                                        'percent': 'string'},
                                   'forceSnapshotMemThreshold': {'absolute': 'long',
                                                                 'percent': 'string'},
                                   'gen1Duration': {'durationType': 'hours | '
                                                                    'minutes | '
                                                                    'seconds | '
                                                                    'milliseconds '
                                                                    '| days',
                                                    'value': 'long'},
                                   'gen1LookbackDuration': {'durationType': 'hours '
                                                                            '| '
                                                                            'minutes '
                                                                            '| '
                                                                            'seconds '
                                                                            '| '
                                                                            'milliseconds '
                                                                            '| '
                                                                            'days',
                                                            'value': 'long'},
                                   'hardDeleteDefaultDuration': {'durationType': 'hours '
                                                                                 '| '
                                                                                 'minutes '
                                                                                 '| '
                                                                                 'seconds '
                                                                                 '| '
                                                                                 'milliseconds '
                                                                                 '| '
                                                                                 'days',
                                                                 'value': 'long'},
                                   'lastCacheEvictionInterval': {'durationType': 'hours '
                                                                                 '| '
                                                                                 'minutes '
                                                                                 '| '
                                                                                 'seconds '
                                                                                 '| '
                                                                                 'milliseconds '
                                                                                 '| '
                                                                                 'days',
                                                                 'value': 'long'},
                                   'logFilter': 'string',
                                   'logFormat': 'full',
                                   'maxHttpRequestSize': 'long',
                                   'parquetMemCachePruneInterval': {'durationType': 'hours '
                                                                                    '| '
                                                                                    'minutes '
                                                                                    '| '
                                                                                    'seconds '
                                                                                    '| '
                                                                                    'milliseconds '
                                                                                    '| '
                                                                                    'days',
                                                                    'value': 'long'},
                                   'parquetMemCachePrunePercentage': 'float',
                                   'parquetMemCacheQueryPathDuration': {'durationType': 'hours '
                                                                                        '| '
                                                                                        'minutes '
                                                                                        '| '
                                                                                        'seconds '
                                                                                        '| '
                                                                                        'milliseconds '
                                                                                        '| '
                                                                                        'days',
                                                                        'value': 'long'},
                                   'parquetMemCacheSize': {'absolute': 'long',
                                                           'percent': 'string'},
                                   'preemptiveCacheAge': {'durationType': 'hours '
                                                                          '| '
                                                                          'minutes '
                                                                          '| '
                                                                          'seconds '
                                                                          '| '
                                                                          'milliseconds '
                                                                          '| '
                                                                          'days',
                                                          'value': 'long'},
                                   'queryFileLimit': 'integer',
                                   'queryLogSize': 'integer',
                                   'retentionCheckInterval': {'durationType': 'hours '
                                                                              '| '
                                                                              'minutes '
                                                                              '| '
                                                                              'seconds '
                                                                              '| '
                                                                              'milliseconds '
                                                                              '| '
                                                                              'days',
                                                              'value': 'long'},
                                   'snapshottedWalFilesToKeep': 'integer',
                                   'tableIndexCacheConcurrencyLimit': 'integer',
                                   'tableIndexCacheMaxEntries': 'integer',
                                   'walMaxWriteBufferSize': 'integer',
                                   'walReplayConcurrencyLimit': 'integer',
                                   'walReplayFailOnError': 'boolean',
                                   'walSnapshotSize': 'integer'},
                'InfluxDBv3Enterprise': {'catalogSyncInterval': {'durationType': 'hours '
                                                                                 '| '
                                                                                 'minutes '
                                                                                 '| '
                                                                                 'seconds '
                                                                                 '| '
                                                                                 'milliseconds '
                                                                                 '| '
                                                                                 'days',
                                                                 'value': 'long'},
                                         'compactionCheckInterval': {'durationType': 'hours '
                                                                                     '| '
                                                                                     'minutes '
                                                                                     '| '
                                                                                     'seconds '
                                                                                     '| '
                                                                                     'milliseconds '
                                                                                     '| '
                                                                                     'days',
                                                                     'value': 'long'},
                                         'compactionCleanupWait': {'durationType': 'hours '
                                                                                   '| '
                                                                                   'minutes '
                                                                                   '| '
                                                                                   'seconds '
                                                                                   '| '
                                                                                   'milliseconds '
                                                                                   '| '
                                                                                   'days',
                                                                   'value': 'long'},
                                         'compactionGen2Duration': {'durationType': 'hours '
                                                                                    '| '
                                                                                    'minutes '
                                                                                    '| '
                                                                                    'seconds '
                                                                                    '| '
                                                                                    'milliseconds '
                                                                                    '| '
                                                                                    'days',
                                                                    'value': 'long'},
                                         'compactionMaxNumFilesPerPlan': 'integer',
                                         'compactionMultipliers': 'string',
                                         'compactionRowLimit': 'integer',
                                         'dataFusionConfig': 'string',
                                         'dataFusionMaxParquetFanout': 'integer',
                                         'dataFusionNumThreads': 'integer',
                                         'dataFusionRuntimeDisableLifoSlot': 'boolean',
                                         'dataFusionRuntimeEventInterval': 'integer',
                                         'dataFusionRuntimeGlobalQueueInterval': 'integer',
                                         'dataFusionRuntimeMaxBlockingThreads': 'integer',
                                         'dataFusionRuntimeMaxIoEventsPerTick': 'integer',
                                         'dataFusionRuntimeThreadKeepAlive': {'durationType': 'hours '
                                                                                              '| '
                                                                                              'minutes '
                                                                                              '| '
                                                                                              'seconds '
                                                                                              '| '
                                                                                              'milliseconds '
                                                                                              '| '
                                                                                              'days',
                                                                              'value': 'long'},
                                         'dataFusionRuntimeThreadPriority': 'integer',
                                         'dataFusionRuntimeType': 'multi-thread '
                                                                  '| '
                                                                  'multi-thread-alt',
                                         'dataFusionUseCachedParquetLoader': 'boolean',
                                         'dedicatedCompactor': 'boolean',
                                         'deleteGracePeriod': {'durationType': 'hours '
                                                                               '| '
                                                                               'minutes '
                                                                               '| '
                                                                               'seconds '
                                                                               '| '
                                                                               'milliseconds '
                                                                               '| '
                                                                               'days',
                                                               'value': 'long'},
                                         'disableParquetMemCache': 'boolean',
                                         'distinctCacheEvictionInterval': {'durationType': 'hours '
                                                                                           '| '
                                                                                           'minutes '
                                                                                           '| '
                                                                                           'seconds '
                                                                                           '| '
                                                                                           'milliseconds '
                                                                                           '| '
                                                                                           'days',
                                                                           'value': 'long'},
                                         'distinctValueCacheDisableFromHistory': 'boolean',
                                         'execMemPoolBytes': {'absolute': 'long',
                                                              'percent': 'string'},
                                         'forceSnapshotMemThreshold': {'absolute': 'long',
                                                                       'percent': 'string'},
                                         'gen1Duration': {'durationType': 'hours '
                                                                          '| '
                                                                          'minutes '
                                                                          '| '
                                                                          'seconds '
                                                                          '| '
                                                                          'milliseconds '
                                                                          '| '
                                                                          'days',
                                                          'value': 'long'},
                                         'gen1LookbackDuration': {'durationType': 'hours '
                                                                                  '| '
                                                                                  'minutes '
                                                                                  '| '
                                                                                  'seconds '
                                                                                  '| '
                                                                                  'milliseconds '
                                                                                  '| '
                                                                                  'days',
                                                                  'value': 'long'},
                                         'hardDeleteDefaultDuration': {'durationType': 'hours '
                                                                                       '| '
                                                                                       'minutes '
                                                                                       '| '
                                                                                       'seconds '
                                                                                       '| '
                                                                                       'milliseconds '
                                                                                       '| '
                                                                                       'days',
                                                                       'value': 'long'},
                                         'ingestQueryInstances': 'integer',
                                         'lastCacheEvictionInterval': {'durationType': 'hours '
                                                                                       '| '
                                                                                       'minutes '
                                                                                       '| '
                                                                                       'seconds '
                                                                                       '| '
                                                                                       'milliseconds '
                                                                                       '| '
                                                                                       'days',
                                                                       'value': 'long'},
                                         'lastValueCacheDisableFromHistory': 'boolean',
                                         'logFilter': 'string',
                                         'logFormat': 'full',
                                         'maxHttpRequestSize': 'long',
                                         'parquetMemCachePruneInterval': {'durationType': 'hours '
                                                                                          '| '
                                                                                          'minutes '
                                                                                          '| '
                                                                                          'seconds '
                                                                                          '| '
                                                                                          'milliseconds '
                                                                                          '| '
                                                                                          'days',
                                                                          'value': 'long'},
                                         'parquetMemCachePrunePercentage': 'float',
                                         'parquetMemCacheQueryPathDuration': {'durationType': 'hours '
                                                                                              '| '
                                                                                              'minutes '
                                                                                              '| '
                                                                                              'seconds '
                                                                                              '| '
                                                                                              'milliseconds '
                                                                                              '| '
                                                                                              'days',
                                                                              'value': 'long'},
                                         'parquetMemCacheSize': {'absolute': 'long',
                                                                 'percent': 'string'},
                                         'preemptiveCacheAge': {'durationType': 'hours '
                                                                                '| '
                                                                                'minutes '
                                                                                '| '
                                                                                'seconds '
                                                                                '| '
                                                                                'milliseconds '
                                                                                '| '
                                                                                'days',
                                                                'value': 'long'},
                                         'queryFileLimit': 'integer',
                                         'queryLogSize': 'integer',
                                         'queryOnlyInstances': 'integer',
                                         'replicationInterval': {'durationType': 'hours '
                                                                                 '| '
                                                                                 'minutes '
                                                                                 '| '
                                                                                 'seconds '
                                                                                 '| '
                                                                                 'milliseconds '
                                                                                 '| '
                                                                                 'days',
                                                                 'value': 'long'},
                                         'retentionCheckInterval': {'durationType': 'hours '
                                                                                    '| '
                                                                                    'minutes '
                                                                                    '| '
                                                                                    'seconds '
                                                                                    '| '
                                                                                    'milliseconds '
                                                                                    '| '
                                                                                    'days',
                                                                    'value': 'long'},
                                         'snapshottedWalFilesToKeep': 'integer',
                                         'tableIndexCacheConcurrencyLimit': 'integer',
                                         'tableIndexCacheMaxEntries': 'integer',
                                         'walMaxWriteBufferSize': 'integer',
                                         'walReplayConcurrencyLimit': 'integer',
                                         'walReplayFailOnError': 'boolean',
                                         'walSnapshotSize': 'integer'}}}

Returns a Timestream for InfluxDB DB parameter group.

See also: AWS API Documentation

Request Syntax

client.get_db_parameter_group(
    identifier='string'
)
type identifier:

string

param identifier:

[REQUIRED]

The id of the DB parameter group.

rtype:

dict

returns:

Response Syntax

{
    'id': 'string',
    'name': 'string',
    'arn': 'string',
    'description': 'string',
    'parameters': {
        'InfluxDBv2': {
            'fluxLogEnabled': True|False,
            'logLevel': 'debug'|'info'|'error',
            'noTasks': True|False,
            'queryConcurrency': 123,
            'queryQueueSize': 123,
            'tracingType': 'log'|'jaeger'|'disabled',
            'metricsDisabled': True|False,
            'httpIdleTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'httpReadHeaderTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'httpReadTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'httpWriteTimeout': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'influxqlMaxSelectBuckets': 123,
            'influxqlMaxSelectPoint': 123,
            'influxqlMaxSelectSeries': 123,
            'pprofDisabled': True|False,
            'queryInitialMemoryBytes': 123,
            'queryMaxMemoryBytes': 123,
            'queryMemoryBytes': 123,
            'sessionLength': 123,
            'sessionRenewDisabled': True|False,
            'storageCacheMaxMemorySize': 123,
            'storageCacheSnapshotMemorySize': 123,
            'storageCacheSnapshotWriteColdDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'storageCompactFullWriteColdDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'storageCompactThroughputBurst': 123,
            'storageMaxConcurrentCompactions': 123,
            'storageMaxIndexLogFileSize': 123,
            'storageNoValidateFieldSize': True|False,
            'storageRetentionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'storageSeriesFileMaxConcurrentSnapshotCompactions': 123,
            'storageSeriesIdSetCacheSize': 123,
            'storageWalMaxConcurrentWrites': 123,
            'storageWalMaxWriteDelay': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'uiDisabled': True|False
        },
        'InfluxDBv3Core': {
            'queryFileLimit': 123,
            'queryLogSize': 123,
            'logFilter': 'string',
            'logFormat': 'full',
            'dataFusionNumThreads': 123,
            'dataFusionRuntimeType': 'multi-thread'|'multi-thread-alt',
            'dataFusionRuntimeDisableLifoSlot': True|False,
            'dataFusionRuntimeEventInterval': 123,
            'dataFusionRuntimeGlobalQueueInterval': 123,
            'dataFusionRuntimeMaxBlockingThreads': 123,
            'dataFusionRuntimeMaxIoEventsPerTick': 123,
            'dataFusionRuntimeThreadKeepAlive': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'dataFusionRuntimeThreadPriority': 123,
            'dataFusionMaxParquetFanout': 123,
            'dataFusionUseCachedParquetLoader': True|False,
            'dataFusionConfig': 'string',
            'maxHttpRequestSize': 123,
            'forceSnapshotMemThreshold': {
                'percent': 'string',
                'absolute': 123
            },
            'walSnapshotSize': 123,
            'walMaxWriteBufferSize': 123,
            'snapshottedWalFilesToKeep': 123,
            'preemptiveCacheAge': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'parquetMemCachePrunePercentage': ...,
            'parquetMemCachePruneInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'disableParquetMemCache': True|False,
            'parquetMemCacheQueryPathDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'lastCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'distinctCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'gen1Duration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'execMemPoolBytes': {
                'percent': 'string',
                'absolute': 123
            },
            'parquetMemCacheSize': {
                'percent': 'string',
                'absolute': 123
            },
            'walReplayFailOnError': True|False,
            'walReplayConcurrencyLimit': 123,
            'tableIndexCacheMaxEntries': 123,
            'tableIndexCacheConcurrencyLimit': 123,
            'gen1LookbackDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'retentionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'deleteGracePeriod': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'hardDeleteDefaultDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            }
        },
        'InfluxDBv3Enterprise': {
            'queryFileLimit': 123,
            'queryLogSize': 123,
            'logFilter': 'string',
            'logFormat': 'full',
            'dataFusionNumThreads': 123,
            'dataFusionRuntimeType': 'multi-thread'|'multi-thread-alt',
            'dataFusionRuntimeDisableLifoSlot': True|False,
            'dataFusionRuntimeEventInterval': 123,
            'dataFusionRuntimeGlobalQueueInterval': 123,
            'dataFusionRuntimeMaxBlockingThreads': 123,
            'dataFusionRuntimeMaxIoEventsPerTick': 123,
            'dataFusionRuntimeThreadKeepAlive': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'dataFusionRuntimeThreadPriority': 123,
            'dataFusionMaxParquetFanout': 123,
            'dataFusionUseCachedParquetLoader': True|False,
            'dataFusionConfig': 'string',
            'maxHttpRequestSize': 123,
            'forceSnapshotMemThreshold': {
                'percent': 'string',
                'absolute': 123
            },
            'walSnapshotSize': 123,
            'walMaxWriteBufferSize': 123,
            'snapshottedWalFilesToKeep': 123,
            'preemptiveCacheAge': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'parquetMemCachePrunePercentage': ...,
            'parquetMemCachePruneInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'disableParquetMemCache': True|False,
            'parquetMemCacheQueryPathDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'lastCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'distinctCacheEvictionInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'gen1Duration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'execMemPoolBytes': {
                'percent': 'string',
                'absolute': 123
            },
            'parquetMemCacheSize': {
                'percent': 'string',
                'absolute': 123
            },
            'walReplayFailOnError': True|False,
            'walReplayConcurrencyLimit': 123,
            'tableIndexCacheMaxEntries': 123,
            'tableIndexCacheConcurrencyLimit': 123,
            'gen1LookbackDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'retentionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'deleteGracePeriod': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'hardDeleteDefaultDuration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'ingestQueryInstances': 123,
            'queryOnlyInstances': 123,
            'dedicatedCompactor': True|False,
            'compactionRowLimit': 123,
            'compactionMaxNumFilesPerPlan': 123,
            'compactionGen2Duration': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'compactionMultipliers': 'string',
            'compactionCleanupWait': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'compactionCheckInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'lastValueCacheDisableFromHistory': True|False,
            'distinctValueCacheDisableFromHistory': True|False,
            'replicationInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            },
            'catalogSyncInterval': {
                'durationType': 'hours'|'minutes'|'seconds'|'milliseconds'|'days',
                'value': 123
            }
        }
    }
}

Response Structure

  • (dict) --

    • id (string) --

      A service-generated unique identifier.

    • name (string) --

      The customer-supplied name that uniquely identifies the DB parameter group when interacting with the Amazon Timestream for InfluxDB API and CLI commands.

    • arn (string) --

      The Amazon Resource Name (ARN) of the DB parameter group.

    • description (string) --

      A description of the DB parameter group.

    • parameters (dict) --

      The parameters that comprise the DB parameter group.

      • InfluxDBv2 (dict) --

        All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.

        • fluxLogEnabled (boolean) --

          Include option to show detailed logs for Flux queries.

          Default: false

        • logLevel (string) --

          Log output level. InfluxDB outputs log entries with severity levels greater than or equal to the level specified.

          Default: info

        • noTasks (boolean) --

          Disable the task scheduler. If problematic tasks prevent InfluxDB from starting, use this option to start InfluxDB without scheduling or executing tasks.

          Default: false

        • queryConcurrency (integer) --

          Number of queries allowed to execute concurrently. Setting to 0 allows an unlimited number of concurrent queries.

          Default: 0

        • queryQueueSize (integer) --

          Maximum number of queries allowed in execution queue. When queue limit is reached, new queries are rejected. Setting to 0 allows an unlimited number of queries in the queue.

          Default: 0

        • tracingType (string) --

          Enable tracing in InfluxDB and specifies the tracing type. Tracing is disabled by default.

        • metricsDisabled (boolean) --

          Disable the HTTP /metrics endpoint which exposes internal InfluxDB metrics.

          Default: false

        • httpIdleTimeout (dict) --

          Maximum duration the server should keep established connections alive while waiting for new requests. Set to 0 for no timeout.

          Default: 3 minutes

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • httpReadHeaderTimeout (dict) --

          Maximum duration the server should try to read HTTP headers for new requests. Set to 0 for no timeout.

          Default: 10 seconds

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • httpReadTimeout (dict) --

          Maximum duration the server should try to read the entirety of new requests. Set to 0 for no timeout.

          Default: 0

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • httpWriteTimeout (dict) --

          Maximum duration the server should spend processing and responding to write requests. Set to 0 for no timeout.

          Default: 0

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • influxqlMaxSelectBuckets (integer) --

          Maximum number of group by time buckets a SELECT statement can create. 0 allows an unlimited number of buckets.

          Default: 0

        • influxqlMaxSelectPoint (integer) --

          Maximum number of points a SELECT statement can process. 0 allows an unlimited number of points. InfluxDB checks the point count every second (so queries exceeding the maximum aren’t immediately aborted).

          Default: 0

        • influxqlMaxSelectSeries (integer) --

          Maximum number of series a SELECT statement can return. 0 allows an unlimited number of series.

          Default: 0

        • pprofDisabled (boolean) --

          Disable the /debug/pprof HTTP endpoint. This endpoint provides runtime profiling data and can be helpful when debugging.

          Default: true

        • queryInitialMemoryBytes (integer) --

          Initial bytes of memory allocated for a query.

          Default: 0

        • queryMaxMemoryBytes (integer) --

          Maximum number of queries allowed in execution queue. When queue limit is reached, new queries are rejected. Setting to 0 allows an unlimited number of queries in the queue.

          Default: 0

        • queryMemoryBytes (integer) --

          Maximum bytes of memory allowed for a single query. Must be greater or equal to queryInitialMemoryBytes.

          Default: 0

        • sessionLength (integer) --

          Specifies the Time to Live (TTL) in minutes for newly created user sessions.

          Default: 60

        • sessionRenewDisabled (boolean) --

          Disables automatically extending a user’s session TTL on each request. By default, every request sets the session’s expiration time to five minutes from now. When disabled, sessions expire after the specified session length and the user is redirected to the login page, even if recently active.

          Default: false

        • storageCacheMaxMemorySize (integer) --

          Maximum size (in bytes) a shard’s cache can reach before it starts rejecting writes. Must be greater than storageCacheSnapShotMemorySize and lower than instance’s total memory capacity. We recommend setting it to below 15% of the total memory capacity.

          Default: 1073741824

        • storageCacheSnapshotMemorySize (integer) --

          Size (in bytes) at which the storage engine will snapshot the cache and write it to a TSM file to make more memory available. Must not be greater than storageCacheMaxMemorySize.

          Default: 26214400

        • storageCacheSnapshotWriteColdDuration (dict) --

          Duration at which the storage engine will snapshot the cache and write it to a new TSM file if the shard hasn’t received writes or deletes.

          Default: 10 minutes

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • storageCompactFullWriteColdDuration (dict) --

          Duration at which the storage engine will compact all TSM files in a shard if it hasn't received writes or deletes.

          Default: 4 hours

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • storageCompactThroughputBurst (integer) --

          Rate limit (in bytes per second) that TSM compactions can write to disk.

          Default: 50331648

        • storageMaxConcurrentCompactions (integer) --

          Maximum number of full and level compactions that can run concurrently. A value of 0 results in 50% of runtime.GOMAXPROCS(0) used at runtime. Any number greater than zero limits compactions to that value. This setting does not apply to cache snapshotting.

          Default: 0

        • storageMaxIndexLogFileSize (integer) --

          Size (in bytes) at which an index write-ahead log (WAL) file will compact into an index file. Lower sizes will cause log files to be compacted more quickly and result in lower heap usage at the expense of write throughput.

          Default: 1048576

        • storageNoValidateFieldSize (boolean) --

          Skip field size validation on incoming write requests.

          Default: false

        • storageRetentionCheckInterval (dict) --

          Interval of retention policy enforcement checks. Must be greater than 0.

          Default: 30 minutes

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • storageSeriesFileMaxConcurrentSnapshotCompactions (integer) --

          Maximum number of snapshot compactions that can run concurrently across all series partitions in a database.

          Default: 0

        • storageSeriesIdSetCacheSize (integer) --

          Size of the internal cache used in the TSI index to store previously calculated series results. Cached results are returned quickly rather than needing to be recalculated when a subsequent query with the same tag key/value predicate is executed. Setting this value to 0 will disable the cache and may decrease query performance.

          Default: 100

        • storageWalMaxConcurrentWrites (integer) --

          Maximum number writes to the WAL directory to attempt at the same time. Setting this value to 0 results in number of processing units available x2.

          Default: 0

        • storageWalMaxWriteDelay (dict) --

          Maximum amount of time a write request to the WAL directory will wait when the maximum number of concurrent active writes to the WAL directory has been met. Set to 0 to disable the timeout.

          Default: 10 minutes

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • uiDisabled (boolean) --

          Disable the InfluxDB user interface (UI). The UI is enabled by default.

          Default: false

      • InfluxDBv3Core (dict) --

        All the customer-modifiable InfluxDB v3 Core parameters in Timestream for InfluxDB.

        • queryFileLimit (integer) --

          Limits the number of Parquet files a query can access. If a query attempts to read more than this limit, InfluxDB 3 returns an error.

          Default: 432

        • queryLogSize (integer) --

          Defines the size of the query log. Up to this many queries remain in the log before older queries are evicted to make room for new ones.

          Default: 1000

        • logFilter (string) --

          Sets the filter directive for logs.

        • logFormat (string) --

          Defines the message format for logs.

          Default: full

        • dataFusionNumThreads (integer) --

          Sets the maximum number of DataFusion runtime threads to use.

        • dataFusionRuntimeType (string) --

          Specifies the DataFusion tokio runtime type.

          Default: multi-thread

        • dataFusionRuntimeDisableLifoSlot (boolean) --

          Disables the LIFO slot of the DataFusion runtime.

        • dataFusionRuntimeEventInterval (integer) --

          Sets the number of scheduler ticks after which the scheduler of the DataFusion tokio runtime polls for external events–for example: timers, I/O.

        • dataFusionRuntimeGlobalQueueInterval (integer) --

          Sets the number of scheduler ticks after which the scheduler of the DataFusion runtime polls the global task queue.

        • dataFusionRuntimeMaxBlockingThreads (integer) --

          Specifies the limit for additional threads spawned by the DataFusion runtime.

        • dataFusionRuntimeMaxIoEventsPerTick (integer) --

          Configures the maximum number of events processed per tick by the tokio DataFusion runtime.

        • dataFusionRuntimeThreadKeepAlive (dict) --

          Sets a custom timeout for a thread in the blocking pool of the tokio DataFusion runtime.

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • dataFusionRuntimeThreadPriority (integer) --

          Sets the thread priority for tokio DataFusion runtime workers.

          Default: 10

        • dataFusionMaxParquetFanout (integer) --

          When multiple parquet files are required in a sorted way (deduplication for example), specifies the maximum fanout.

          Default: 1000

        • dataFusionUseCachedParquetLoader (boolean) --

          Uses a cached parquet loader when reading parquet files from the object store.

        • dataFusionConfig (string) --

          Provides custom configuration to DataFusion as a comma-separated list of key:value pairs.

        • maxHttpRequestSize (integer) --

          Specifies the maximum size of HTTP requests.

          Default: 10485760

        • forceSnapshotMemThreshold (dict) --

          Specifies the threshold for the internal memory buffer. Supports either a percentage (portion of available memory) or absolute value in MB–for example: 70% or 100

          Default: 70%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • walSnapshotSize (integer) --

          Defines the number of WAL files to attempt to remove in a snapshot. This, multiplied by the interval, determines how often snapshots are taken.

          Default: 600

        • walMaxWriteBufferSize (integer) --

          Specifies the maximum number of write requests that can be buffered before a flush must be executed and succeed.

          Default: 100000

        • snapshottedWalFilesToKeep (integer) --

          Specifies the number of snapshotted WAL files to retain in the object store. Flushing the WAL files does not clear the WAL files immediately; they are deleted when the number of snapshotted WAL files exceeds this number.

          Default: 300

        • preemptiveCacheAge (dict) --

          Specifies the interval to prefetch into the Parquet cache during compaction.

          Default: 3d

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • parquetMemCachePrunePercentage (float) --

          Specifies the percentage of entries to prune during a prune operation on the in-memory Parquet cache.

          Default: 0.1

        • parquetMemCachePruneInterval (dict) --

          Sets the interval to check if the in-memory Parquet cache needs to be pruned.

          Default: 1s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • disableParquetMemCache (boolean) --

          Disables the in-memory Parquet cache. By default, the cache is enabled.

        • parquetMemCacheQueryPathDuration (dict) --

          Specifies the time window for caching recent Parquet files in memory.

          Default: 5h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • lastCacheEvictionInterval (dict) --

          Specifies the interval to evict expired entries from the Last-N-Value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • distinctCacheEvictionInterval (dict) --

          Specifies the interval to evict expired entries from the distinct value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • gen1Duration (dict) --

          Specifies the duration that Parquet files are arranged into. Data timestamps land each row into a file of this duration. Supported durations are 1m, 5m, and 10m. These files are known as “generation 1” files that the compactor in InfluxDB 3 Enterprise can merge into larger generations.

          Default: 10m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • execMemPoolBytes (dict) --

          Specifies the size of memory pool used during query execution. Can be given as absolute value in bytes or as a percentage of the total available memory–for example: 8000000000 or 10%.

          Default: 20%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • parquetMemCacheSize (dict) --

          Specifies the size of the in-memory Parquet cache in megabytes or percentage of total available memory.

          Default: 20%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • walReplayFailOnError (boolean) --

          Determines whether WAL replay should fail when encountering errors.

          Default: false

        • walReplayConcurrencyLimit (integer) --

          Concurrency limit during WAL replay. Setting this number too high can lead to OOM. The default is dynamically determined.

          Default: max(num_cpus, 10)

        • tableIndexCacheMaxEntries (integer) --

          Specifies the maximum number of entries in the table index cache.

          Default: 1000

        • tableIndexCacheConcurrencyLimit (integer) --

          Limits the concurrency level for table index cache operations.

          Default: 8

        • gen1LookbackDuration (dict) --

          Specifies how far back to look when creating generation 1 Parquet files.

          Default: 24h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • retentionCheckInterval (dict) --

          The interval at which retention policies are checked and enforced. Enter as a human-readable time–for example: 30m or 1h.

          Default: 30m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • deleteGracePeriod (dict) --

          Specifies the grace period before permanently deleting data.

          Default: 24h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • hardDeleteDefaultDuration (dict) --

          Sets the default duration for hard deletion of data.

          Default: 90d

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

      • InfluxDBv3Enterprise (dict) --

        All the customer-modifiable InfluxDB v3 Enterprise parameters in Timestream for InfluxDB.

        • queryFileLimit (integer) --

          Limits the number of Parquet files a query can access. If a query attempts to read more than this limit, InfluxDB 3 returns an error.

          Default: 432

        • queryLogSize (integer) --

          Defines the size of the query log. Up to this many queries remain in the log before older queries are evicted to make room for new ones.

          Default: 1000

        • logFilter (string) --

          Sets the filter directive for logs.

        • logFormat (string) --

          Defines the message format for logs.

          Default: full

        • dataFusionNumThreads (integer) --

          Sets the maximum number of DataFusion runtime threads to use.

        • dataFusionRuntimeType (string) --

          Specifies the DataFusion tokio runtime type.

          Default: multi-thread

        • dataFusionRuntimeDisableLifoSlot (boolean) --

          Disables the LIFO slot of the DataFusion runtime.

        • dataFusionRuntimeEventInterval (integer) --

          Sets the number of scheduler ticks after which the scheduler of the DataFusion tokio runtime polls for external events–for example: timers, I/O.

        • dataFusionRuntimeGlobalQueueInterval (integer) --

          Sets the number of scheduler ticks after which the scheduler of the DataFusion runtime polls the global task queue.

        • dataFusionRuntimeMaxBlockingThreads (integer) --

          Specifies the limit for additional threads spawned by the DataFusion runtime.

        • dataFusionRuntimeMaxIoEventsPerTick (integer) --

          Configures the maximum number of events processed per tick by the tokio DataFusion runtime.

        • dataFusionRuntimeThreadKeepAlive (dict) --

          Sets a custom timeout for a thread in the blocking pool of the tokio DataFusion runtime.

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • dataFusionRuntimeThreadPriority (integer) --

          Sets the thread priority for tokio DataFusion runtime workers.

          Default: 10

        • dataFusionMaxParquetFanout (integer) --

          When multiple parquet files are required in a sorted way (deduplication for example), specifies the maximum fanout.

          Default: 1000

        • dataFusionUseCachedParquetLoader (boolean) --

          Uses a cached parquet loader when reading parquet files from the object store.

        • dataFusionConfig (string) --

          Provides custom configuration to DataFusion as a comma-separated list of key:value pairs.

        • maxHttpRequestSize (integer) --

          Specifies the maximum size of HTTP requests.

          Default: 10485760

        • forceSnapshotMemThreshold (dict) --

          Specifies the threshold for the internal memory buffer. Supports either a percentage (portion of available memory) or absolute value in MB–for example: 70% or 100

          Default: 70%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • walSnapshotSize (integer) --

          Defines the number of WAL files to attempt to remove in a snapshot. This, multiplied by the interval, determines how often snapshots are taken.

          Default: 600

        • walMaxWriteBufferSize (integer) --

          Specifies the maximum number of write requests that can be buffered before a flush must be executed and succeed.

          Default: 100000

        • snapshottedWalFilesToKeep (integer) --

          Specifies the number of snapshotted WAL files to retain in the object store. Flushing the WAL files does not clear the WAL files immediately; they are deleted when the number of snapshotted WAL files exceeds this number.

          Default: 300

        • preemptiveCacheAge (dict) --

          Specifies the interval to prefetch into the Parquet cache during compaction.

          Default: 3d

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • parquetMemCachePrunePercentage (float) --

          Specifies the percentage of entries to prune during a prune operation on the in-memory Parquet cache.

          Default: 0.1

        • parquetMemCachePruneInterval (dict) --

          Sets the interval to check if the in-memory Parquet cache needs to be pruned.

          Default: 1s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • disableParquetMemCache (boolean) --

          Disables the in-memory Parquet cache. By default, the cache is enabled.

        • parquetMemCacheQueryPathDuration (dict) --

          Specifies the time window for caching recent Parquet files in memory.

          Default: 5h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • lastCacheEvictionInterval (dict) --

          Specifies the interval to evict expired entries from the Last-N-Value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • distinctCacheEvictionInterval (dict) --

          Specifies the interval to evict expired entries from the distinct value cache, expressed as a human-readable duration–for example: 20s, 1m, 1h.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • gen1Duration (dict) --

          Specifies the duration that Parquet files are arranged into. Data timestamps land each row into a file of this duration. Supported durations are 1m, 5m, and 10m. These files are known as “generation 1” files, which the compactor can merge into larger generations.

          Default: 10m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • execMemPoolBytes (dict) --

          Specifies the size of memory pool used during query execution. Can be given as absolute value in bytes or as a percentage of the total available memory–for example: 8000000000 or 10%.

          Default: 20%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • parquetMemCacheSize (dict) --

          Specifies the size of the in-memory Parquet cache in megabytes or percentage of total available memory.

          Default: 20%

          • percent (string) --

            Percent for InfluxDB parameters.

          • absolute (integer) --

            Absolute long for InfluxDB parameters.

        • walReplayFailOnError (boolean) --

          Determines whether WAL replay should fail when encountering errors.

          Default: false

        • walReplayConcurrencyLimit (integer) --

          Concurrency limit during WAL replay. Setting this number too high can lead to OOM. The default is dynamically determined.

          Default: max(num_cpus, 10)

        • tableIndexCacheMaxEntries (integer) --

          Specifies the maximum number of entries in the table index cache.

          Default: 1000

        • tableIndexCacheConcurrencyLimit (integer) --

          Limits the concurrency level for table index cache operations.

          Default: 8

        • gen1LookbackDuration (dict) --

          Specifies how far back to look when creating generation 1 Parquet files.

          Default: 24h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • retentionCheckInterval (dict) --

          The interval at which retention policies are checked and enforced. Enter as a human-readable time–for example: 30m or 1h.

          Default: 30m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • deleteGracePeriod (dict) --

          Specifies the grace period before permanently deleting data.

          Default: 24h

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • hardDeleteDefaultDuration (dict) --

          Sets the default duration for hard deletion of data.

          Default: 90d

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • ingestQueryInstances (integer) --

          Specifies number of instances in the DbCluster which can both ingest and query.

        • queryOnlyInstances (integer) --

          Specifies number of instances in the DbCluster which can only query.

        • dedicatedCompactor (boolean) --

          Specifies if the compactor instance should be a standalone instance or not.

        • compactionRowLimit (integer) --

          Specifies the soft limit for the number of rows per file that the compactor writes. The compactor may write more rows than this limit.

          Default: 1000000

        • compactionMaxNumFilesPerPlan (integer) --

          Sets the maximum number of files included in any compaction plan.

          Default: 500

        • compactionGen2Duration (dict) --

          Specifies the duration of the first level of compaction (gen2). Later levels of compaction are multiples of this duration. This value should be equal to or greater than the gen1 duration.

          Default: 20m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • compactionMultipliers (string) --

          Specifies a comma-separated list of multiples defining the duration of each level of compaction. The number of elements in the list determines the number of compaction levels. The first element specifies the duration of the first level (gen3); subsequent levels are multiples of the previous level.

          Default: 3,4,6,5

        • compactionCleanupWait (dict) --

          Specifies the amount of time that the compactor waits after finishing a compaction run to delete files marked as needing deletion during that compaction run.

          Default: 10m

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • compactionCheckInterval (dict) --

          Specifies how often the compactor checks for new compaction work to perform.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • lastValueCacheDisableFromHistory (boolean) --

          Disables populating the last-N-value cache from historical data. If disabled, the cache is still populated with data from the write-ahead log (WAL).

        • distinctValueCacheDisableFromHistory (boolean) --

          Disables populating the distinct value cache from historical data. If disabled, the cache is still populated with data from the write-ahead log (WAL).

        • replicationInterval (dict) --

          Specifies the interval at which data replication occurs between cluster nodes.

          Default: 250ms

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

        • catalogSyncInterval (dict) --

          Defines how often the catalog synchronizes across cluster nodes.

          Default: 10s

          • durationType (string) --

            The type of duration for InfluxDB parameters.

          • value (integer) --

            The value of duration for InfluxDB parameters.

ListDbClusters (updated) Link ¶
Changes (response)
{'items': {'engineType': 'INFLUXDB_V2 | INFLUXDB_V3_CORE | '
                         'INFLUXDB_V3_ENTERPRISE'}}

Returns a list of Timestream for InfluxDB DB clusters.

See also: AWS API Documentation

Request Syntax

client.list_db_clusters(
    nextToken='string',
    maxResults=123
)
type nextToken:

string

param nextToken:

The pagination token. To resume pagination, provide the nextToken value as an argument of a subsequent API invocation.

type maxResults:

integer

param maxResults:

The maximum number of items to return in the output. If the total number of items available is more than the value specified, a nextToken is provided in the output. To resume pagination, provide the nextToken value as an argument of a subsequent API invocation.

rtype:

dict

returns:

Response Syntax

{
    'items': [
        {
            'id': 'string',
            'name': 'string',
            'arn': 'string',
            'status': 'CREATING'|'UPDATING'|'DELETING'|'AVAILABLE'|'FAILED'|'DELETED'|'MAINTENANCE',
            'endpoint': 'string',
            'readerEndpoint': 'string',
            'port': 123,
            'deploymentType': 'MULTI_NODE_READ_REPLICAS',
            'dbInstanceType': 'db.influx.medium'|'db.influx.large'|'db.influx.xlarge'|'db.influx.2xlarge'|'db.influx.4xlarge'|'db.influx.8xlarge'|'db.influx.12xlarge'|'db.influx.16xlarge'|'db.influx.24xlarge',
            'networkType': 'IPV4'|'DUAL',
            'dbStorageType': 'InfluxIOIncludedT1'|'InfluxIOIncludedT2'|'InfluxIOIncludedT3',
            'allocatedStorage': 123,
            'engineType': 'INFLUXDB_V2'|'INFLUXDB_V3_CORE'|'INFLUXDB_V3_ENTERPRISE'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • items (list) --

      A list of Timestream for InfluxDB cluster summaries.

      • (dict) --

        Describes a summary of a Timestream for InfluxDB cluster.

        • id (string) --

          Service-generated unique identifier of the DB cluster to retrieve.

        • name (string) --

          Customer supplied name of the Timestream for InfluxDB cluster.

        • arn (string) --

          The Amazon Resource Name (ARN) of the DB cluster.

        • status (string) --

          The status of the DB cluster.

        • endpoint (string) --

          The endpoint used to connect to the Timestream for InfluxDB cluster for write and read operations.

        • readerEndpoint (string) --

          The endpoint used to connect to the Timestream for InfluxDB cluster for read-only operations.

        • port (integer) --

          The port number on which InfluxDB accepts connections.

        • deploymentType (string) --

          Deployment type of the DB cluster

        • dbInstanceType (string) --

          The Timestream for InfluxDB DB instance type that InfluxDB runs on.

        • networkType (string) --

          Specifies whether the network type of the Timestream for InfluxDB Cluster is IPv4, which can communicate over IPv4 protocol only, or DUAL, which can communicate over both IPv4 and IPv6 protocols.

        • dbStorageType (string) --

          The Timestream for InfluxDB DB storage type that InfluxDB stores data on.

        • allocatedStorage (integer) --

          The amount of storage allocated for your DB storage type (in gibibytes).

        • engineType (string) --

          The engine type of your DB cluster.

    • nextToken (string) --

      Token from a previous call of the operation. When this value is provided, the service returns results from where the previous response left off.

ListDbInstancesForCluster (updated) Link ¶
Changes (response)
{'items': {'instanceMode': {'INGEST', 'COMPACT', 'PROCESS', 'QUERY'},
           'instanceModes': ['PRIMARY | STANDBY | REPLICA | INGEST | QUERY | '
                             'COMPACT | PROCESS']}}

Returns a list of Timestream for InfluxDB clusters.

See also: AWS API Documentation

Request Syntax

client.list_db_instances_for_cluster(
    dbClusterId='string',
    nextToken='string',
    maxResults=123
)
type dbClusterId:

string

param dbClusterId:

[REQUIRED]

Service-generated unique identifier of the DB cluster.

type nextToken:

string

param nextToken:

The pagination token. To resume pagination, provide the nextToken value as an argument of a subsequent API invocation.

type maxResults:

integer

param maxResults:

The maximum number of items to return in the output. If the total number of items available is more than the value specified, a nextToken is provided in the output. To resume pagination, provide the nextToken value as an argument of a subsequent API invocation.

rtype:

dict

returns:

Response Syntax

{
    'items': [
        {
            'id': 'string',
            'name': 'string',
            'arn': 'string',
            'status': 'CREATING'|'AVAILABLE'|'DELETING'|'MODIFYING'|'UPDATING'|'DELETED'|'FAILED'|'UPDATING_DEPLOYMENT_TYPE'|'UPDATING_INSTANCE_TYPE'|'MAINTENANCE',
            'endpoint': 'string',
            'port': 123,
            'networkType': 'IPV4'|'DUAL',
            'dbInstanceType': 'db.influx.medium'|'db.influx.large'|'db.influx.xlarge'|'db.influx.2xlarge'|'db.influx.4xlarge'|'db.influx.8xlarge'|'db.influx.12xlarge'|'db.influx.16xlarge'|'db.influx.24xlarge',
            'dbStorageType': 'InfluxIOIncludedT1'|'InfluxIOIncludedT2'|'InfluxIOIncludedT3',
            'allocatedStorage': 123,
            'deploymentType': 'SINGLE_AZ'|'WITH_MULTIAZ_STANDBY',
            'instanceMode': 'PRIMARY'|'STANDBY'|'REPLICA'|'INGEST'|'QUERY'|'COMPACT'|'PROCESS',
            'instanceModes': [
                'PRIMARY'|'STANDBY'|'REPLICA'|'INGEST'|'QUERY'|'COMPACT'|'PROCESS',
            ]
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • items (list) --

      A list of Timestream for InfluxDB instance summaries belonging to the cluster.

      • (dict) --

        Contains a summary of a DB instance belonging to a DB cluster.

        • id (string) --

          The service-generated unique identifier of the DB instance.

        • name (string) --

          A service-generated name for the DB instance based on the customer-supplied name for the DB cluster.

        • arn (string) --

          The Amazon Resource Name (ARN) of the DB instance.

        • status (string) --

          The status of the DB instance.

        • endpoint (string) --

          The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.

        • port (integer) --

          The port number on which InfluxDB accepts connections.

        • networkType (string) --

          Specifies whether the network type 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.

        • dbInstanceType (string) --

          The Timestream for InfluxDB instance type to run InfluxDB on.

        • dbStorageType (string) --

          The storage type for your DB instance.

        • allocatedStorage (integer) --

          The amount of storage allocated for your DB storage type in GiB (gibibytes).

        • deploymentType (string) --

          Specifies the deployment type if applicable.

        • instanceMode (string) --

          Specifies the DB instance's role in the cluster.

        • instanceModes (list) --

          Specifies the DB instance's roles in the cluster.

          • (string) --

    • nextToken (string) --

      Token from a previous call of the operation. When this value is provided, the service returns results from where the previous response left off.

UpdateDbInstance (updated) Link ¶
Changes (response)
{'instanceMode': {'INGEST', 'COMPACT', 'PROCESS', 'QUERY'},
 'instanceModes': ['PRIMARY | STANDBY | REPLICA | INGEST | QUERY | COMPACT | '
                   'PROCESS']}

Updates a Timestream for InfluxDB DB instance.

See also: AWS API Documentation

Request Syntax

client.update_db_instance(
    identifier='string',
    logDeliveryConfiguration={
        's3Configuration': {
            'bucketName': 'string',
            'enabled': True|False
        }
    },
    dbParameterGroupIdentifier='string',
    port=123,
    dbInstanceType='db.influx.medium'|'db.influx.large'|'db.influx.xlarge'|'db.influx.2xlarge'|'db.influx.4xlarge'|'db.influx.8xlarge'|'db.influx.12xlarge'|'db.influx.16xlarge'|'db.influx.24xlarge',
    deploymentType='SINGLE_AZ'|'WITH_MULTIAZ_STANDBY',
    dbStorageType='InfluxIOIncludedT1'|'InfluxIOIncludedT2'|'InfluxIOIncludedT3',
    allocatedStorage=123
)
type identifier:

string

param identifier:

[REQUIRED]

The id of the DB instance.

type logDeliveryConfiguration:

dict

param logDeliveryConfiguration:

Configuration for sending InfluxDB engine logs to send to specified S3 bucket.

  • s3Configuration (dict) -- [REQUIRED]

    Configuration for S3 bucket log delivery.

    • bucketName (string) -- [REQUIRED]

      The name of the S3 bucket to deliver logs to.

    • enabled (boolean) -- [REQUIRED]

      Indicates whether log delivery to the S3 bucket is enabled.

type dbParameterGroupIdentifier:

string

param dbParameterGroupIdentifier:

The id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.

type port:

integer

param port:

The port number on which InfluxDB accepts connections.

If you change the Port value, your database restarts immediately.

Valid Values: 1024-65535

Default: 8086

Constraints: The value can't be 2375-2376, 7788-7799, 8090, or 51678-51680

type dbInstanceType:

string

param dbInstanceType:

The Timestream for InfluxDB DB instance type to run InfluxDB on.

type deploymentType:

string

param deploymentType:

Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability.

type dbStorageType:

string

param dbStorageType:

The Timestream for InfluxDB DB storage type that InfluxDB stores data on.

type allocatedStorage:

integer

param allocatedStorage:

The amount of storage to allocate for your DB storage type (in gibibytes).

rtype:

dict

returns:

Response Syntax

{
    'id': 'string',
    'name': 'string',
    'arn': 'string',
    'status': 'CREATING'|'AVAILABLE'|'DELETING'|'MODIFYING'|'UPDATING'|'DELETED'|'FAILED'|'UPDATING_DEPLOYMENT_TYPE'|'UPDATING_INSTANCE_TYPE'|'MAINTENANCE',
    'endpoint': 'string',
    'port': 123,
    'networkType': 'IPV4'|'DUAL',
    'dbInstanceType': 'db.influx.medium'|'db.influx.large'|'db.influx.xlarge'|'db.influx.2xlarge'|'db.influx.4xlarge'|'db.influx.8xlarge'|'db.influx.12xlarge'|'db.influx.16xlarge'|'db.influx.24xlarge',
    'dbStorageType': 'InfluxIOIncludedT1'|'InfluxIOIncludedT2'|'InfluxIOIncludedT3',
    'allocatedStorage': 123,
    'deploymentType': 'SINGLE_AZ'|'WITH_MULTIAZ_STANDBY',
    'vpcSubnetIds': [
        'string',
    ],
    'publiclyAccessible': True|False,
    'vpcSecurityGroupIds': [
        'string',
    ],
    'dbParameterGroupIdentifier': 'string',
    'availabilityZone': 'string',
    'secondaryAvailabilityZone': 'string',
    'logDeliveryConfiguration': {
        's3Configuration': {
            'bucketName': 'string',
            'enabled': True|False
        }
    },
    'influxAuthParametersSecretArn': 'string',
    'dbClusterId': 'string',
    'instanceMode': 'PRIMARY'|'STANDBY'|'REPLICA'|'INGEST'|'QUERY'|'COMPACT'|'PROCESS',
    'instanceModes': [
        'PRIMARY'|'STANDBY'|'REPLICA'|'INGEST'|'QUERY'|'COMPACT'|'PROCESS',
    ]
}

Response Structure

  • (dict) --

    • id (string) --

      A service-generated unique identifier.

    • name (string) --

      This customer-supplied name uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands.

    • arn (string) --

      The Amazon Resource Name (ARN) of the DB instance.

    • status (string) --

      The status of the DB instance.

    • endpoint (string) --

      The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.

    • port (integer) --

      The port number on which InfluxDB accepts connections.

    • 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.

    • dbInstanceType (string) --

      The Timestream for InfluxDB instance type that InfluxDB runs on.

    • dbStorageType (string) --

      The Timestream for InfluxDB DB storage type that InfluxDB stores data on.

    • allocatedStorage (integer) --

      The amount of storage allocated for your DB storage type (in gibibytes).

    • deploymentType (string) --

      Specifies whether the Timestream for InfluxDB is deployed as Single-AZ or with a MultiAZ Standby for High availability.

    • vpcSubnetIds (list) --

      A list of VPC subnet IDs associated with the DB instance.

      • (string) --

    • publiclyAccessible (boolean) --

      Indicates if the DB instance has a public IP to facilitate access.

    • vpcSecurityGroupIds (list) --

      A list of VPC security group IDs associated with the DB instance.

      • (string) --

    • dbParameterGroupIdentifier (string) --

      The id of the DB parameter group assigned to your DB instance.

    • availabilityZone (string) --

      The Availability Zone in which the DB instance resides.

    • secondaryAvailabilityZone (string) --

      The Availability Zone in which the standby instance is located when deploying with a MultiAZ standby instance.

    • logDeliveryConfiguration (dict) --

      Configuration for sending InfluxDB engine logs to send to specified S3 bucket.

      • s3Configuration (dict) --

        Configuration for S3 bucket log delivery.

        • bucketName (string) --

          The name of the S3 bucket to deliver logs to.

        • enabled (boolean) --

          Indicates whether log delivery to the S3 bucket is enabled.

    • influxAuthParametersSecretArn (string) --

      The Amazon Resource Name (ARN) of the 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.

    • dbClusterId (string) --

      Specifies the DbCluster to which this DbInstance belongs to.

    • instanceMode (string) --

      Specifies the DbInstance's role in the cluster.

    • instanceModes (list) --

      Specifies the DbInstance's roles in the cluster.

      • (string) --