|
324 | 324 | "tags":{
|
325 | 325 | "shape":"RequestTagMap",
|
326 | 326 | "documentation":"<p>A list of key-value pairs to associate with the DB instance.</p>"
|
| 327 | + }, |
| 328 | + "port":{ |
| 329 | + "shape":"Port", |
| 330 | + "documentation":"<p>The port number on which InfluxDB accepts connections.</p> <p>Valid Values: 1024-65535</p> <p>Default: 8086</p> <p>Constraints: The value can't be 2375-2376, 7788-7799, 8090, or 51678-51680</p>" |
327 | 331 | }
|
328 | 332 | }
|
329 | 333 | },
|
|
356 | 360 | "shape":"String",
|
357 | 361 | "documentation":"<p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>"
|
358 | 362 | },
|
| 363 | + "port":{ |
| 364 | + "shape":"Port", |
| 365 | + "documentation":"<p>The port number on which InfluxDB accepts connections. The default value is 8086.</p>" |
| 366 | + }, |
359 | 367 | "dbInstanceType":{
|
360 | 368 | "shape":"DbInstanceType",
|
361 | 369 | "documentation":"<p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>"
|
|
509 | 517 | "shape":"String",
|
510 | 518 | "documentation":"<p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>"
|
511 | 519 | },
|
| 520 | + "port":{ |
| 521 | + "shape":"Port", |
| 522 | + "documentation":"<p>The port number on which InfluxDB accepts connections.</p>" |
| 523 | + }, |
512 | 524 | "dbInstanceType":{
|
513 | 525 | "shape":"DbInstanceType",
|
514 | 526 | "documentation":"<p>The Timestream for InfluxDB instance type to run InfluxDB on.</p>"
|
|
641 | 653 | "shape":"String",
|
642 | 654 | "documentation":"<p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>"
|
643 | 655 | },
|
| 656 | + "port":{ |
| 657 | + "shape":"Port", |
| 658 | + "documentation":"<p>The port number on which InfluxDB accepts connections.</p>" |
| 659 | + }, |
644 | 660 | "dbInstanceType":{
|
645 | 661 | "shape":"DbInstanceType",
|
646 | 662 | "documentation":"<p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>"
|
|
698 | 714 | "WITH_MULTIAZ_STANDBY"
|
699 | 715 | ]
|
700 | 716 | },
|
| 717 | + "Duration":{ |
| 718 | + "type":"structure", |
| 719 | + "required":[ |
| 720 | + "durationType", |
| 721 | + "value" |
| 722 | + ], |
| 723 | + "members":{ |
| 724 | + "durationType":{ |
| 725 | + "shape":"DurationType", |
| 726 | + "documentation":"<p>The type of duration for InfluxDB parameters.</p>" |
| 727 | + }, |
| 728 | + "value":{ |
| 729 | + "shape":"DurationValueLong", |
| 730 | + "documentation":"<p>The value of duration for InfluxDB parameters.</p>" |
| 731 | + } |
| 732 | + }, |
| 733 | + "documentation":"<p>Duration for InfluxDB parameters in Timestream for InfluxDB.</p>" |
| 734 | + }, |
| 735 | + "DurationType":{ |
| 736 | + "type":"string", |
| 737 | + "enum":[ |
| 738 | + "hours", |
| 739 | + "minutes", |
| 740 | + "seconds", |
| 741 | + "milliseconds" |
| 742 | + ] |
| 743 | + }, |
| 744 | + "DurationValueLong":{ |
| 745 | + "type":"long", |
| 746 | + "box":true, |
| 747 | + "min":0 |
| 748 | + }, |
701 | 749 | "GetDbInstanceInput":{
|
702 | 750 | "type":"structure",
|
703 | 751 | "required":["identifier"],
|
|
737 | 785 | "shape":"String",
|
738 | 786 | "documentation":"<p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>"
|
739 | 787 | },
|
| 788 | + "port":{ |
| 789 | + "shape":"Port", |
| 790 | + "documentation":"<p>The port number on which InfluxDB accepts connections.</p>" |
| 791 | + }, |
740 | 792 | "dbInstanceType":{
|
741 | 793 | "shape":"DbInstanceType",
|
742 | 794 | "documentation":"<p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>"
|
|
857 | 909 | "metricsDisabled":{
|
858 | 910 | "shape":"Boolean",
|
859 | 911 | "documentation":"<p>Disable the HTTP /metrics endpoint which exposes <a href=\"https://docs.influxdata.com/influxdb/v2/reference/internals/metrics/\">internal InfluxDB metrics</a>.</p> <p>Default: false</p>"
|
| 912 | + }, |
| 913 | + "httpIdleTimeout":{ |
| 914 | + "shape":"Duration", |
| 915 | + "documentation":"<p>Maximum duration the server should keep established connections alive while waiting for new requests. Set to 0 for no timeout.</p> <p>Default: 3 minutes</p>" |
| 916 | + }, |
| 917 | + "httpReadHeaderTimeout":{ |
| 918 | + "shape":"Duration", |
| 919 | + "documentation":"<p>Maximum duration the server should try to read HTTP headers for new requests. Set to 0 for no timeout.</p> <p>Default: 10 seconds</p>" |
| 920 | + }, |
| 921 | + "httpReadTimeout":{ |
| 922 | + "shape":"Duration", |
| 923 | + "documentation":"<p>Maximum duration the server should try to read the entirety of new requests. Set to 0 for no timeout.</p> <p>Default: 0</p>" |
| 924 | + }, |
| 925 | + "httpWriteTimeout":{ |
| 926 | + "shape":"Duration", |
| 927 | + "documentation":"<p>Maximum duration the server should spend processing and responding to write requests. Set to 0 for no timeout.</p> <p>Default: 0</p>" |
| 928 | + }, |
| 929 | + "influxqlMaxSelectBuckets":{ |
| 930 | + "shape":"InfluxDBv2ParametersInfluxqlMaxSelectBucketsLong", |
| 931 | + "documentation":"<p>Maximum number of group by time buckets a SELECT statement can create. 0 allows an unlimited number of buckets.</p> <p>Default: 0</p>" |
| 932 | + }, |
| 933 | + "influxqlMaxSelectPoint":{ |
| 934 | + "shape":"InfluxDBv2ParametersInfluxqlMaxSelectPointLong", |
| 935 | + "documentation":"<p>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).</p> <p>Default: 0</p>" |
| 936 | + }, |
| 937 | + "influxqlMaxSelectSeries":{ |
| 938 | + "shape":"InfluxDBv2ParametersInfluxqlMaxSelectSeriesLong", |
| 939 | + "documentation":"<p>Maximum number of series a SELECT statement can return. 0 allows an unlimited number of series.</p> <p>Default: 0</p>" |
| 940 | + }, |
| 941 | + "pprofDisabled":{ |
| 942 | + "shape":"Boolean", |
| 943 | + "documentation":"<p>Disable the /debug/pprof HTTP endpoint. This endpoint provides runtime profiling data and can be helpful when debugging.</p> <p>Default: false</p>" |
| 944 | + }, |
| 945 | + "queryInitialMemoryBytes":{ |
| 946 | + "shape":"InfluxDBv2ParametersQueryInitialMemoryBytesLong", |
| 947 | + "documentation":"<p>Initial bytes of memory allocated for a query.</p> <p>Default: 0</p>" |
| 948 | + }, |
| 949 | + "queryMaxMemoryBytes":{ |
| 950 | + "shape":"InfluxDBv2ParametersQueryMaxMemoryBytesLong", |
| 951 | + "documentation":"<p>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.</p> <p>Default: 0</p>" |
| 952 | + }, |
| 953 | + "queryMemoryBytes":{ |
| 954 | + "shape":"InfluxDBv2ParametersQueryMemoryBytesLong", |
| 955 | + "documentation":"<p>Maximum bytes of memory allowed for a single query. Must be greater or equal to queryInitialMemoryBytes.</p> <p>Default: 0</p>" |
| 956 | + }, |
| 957 | + "sessionLength":{ |
| 958 | + "shape":"InfluxDBv2ParametersSessionLengthInteger", |
| 959 | + "documentation":"<p>Specifies the Time to Live (TTL) in minutes for newly created user sessions.</p> <p>Default: 60</p>" |
| 960 | + }, |
| 961 | + "sessionRenewDisabled":{ |
| 962 | + "shape":"Boolean", |
| 963 | + "documentation":"<p>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 <a href=\"https://docs.influxdata.com/influxdb/v2/reference/config-options/#session-length\">session length</a> and the user is redirected to the login page, even if recently active.</p> <p>Default: false</p>" |
| 964 | + }, |
| 965 | + "storageCacheMaxMemorySize":{ |
| 966 | + "shape":"InfluxDBv2ParametersStorageCacheMaxMemorySizeLong", |
| 967 | + "documentation":"<p>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.</p> <p>Default: 1073741824</p>" |
| 968 | + }, |
| 969 | + "storageCacheSnapshotMemorySize":{ |
| 970 | + "shape":"InfluxDBv2ParametersStorageCacheSnapshotMemorySizeLong", |
| 971 | + "documentation":"<p>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.</p> <p>Default: 26214400</p>" |
| 972 | + }, |
| 973 | + "storageCacheSnapshotWriteColdDuration":{ |
| 974 | + "shape":"Duration", |
| 975 | + "documentation":"<p>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.</p> <p>Default: 10 minutes</p>" |
| 976 | + }, |
| 977 | + "storageCompactFullWriteColdDuration":{ |
| 978 | + "shape":"Duration", |
| 979 | + "documentation":"<p>Duration at which the storage engine will compact all TSM files in a shard if it hasn't received writes or deletes.</p> <p>Default: 4 hours</p>" |
| 980 | + }, |
| 981 | + "storageCompactThroughputBurst":{ |
| 982 | + "shape":"InfluxDBv2ParametersStorageCompactThroughputBurstLong", |
| 983 | + "documentation":"<p>Rate limit (in bytes per second) that TSM compactions can write to disk.</p> <p>Default: 50331648</p>" |
| 984 | + }, |
| 985 | + "storageMaxConcurrentCompactions":{ |
| 986 | + "shape":"InfluxDBv2ParametersStorageMaxConcurrentCompactionsInteger", |
| 987 | + "documentation":"<p>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.</p> <p>Default: 0</p>" |
| 988 | + }, |
| 989 | + "storageMaxIndexLogFileSize":{ |
| 990 | + "shape":"InfluxDBv2ParametersStorageMaxIndexLogFileSizeLong", |
| 991 | + "documentation":"<p>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.</p> <p>Default: 1048576</p>" |
| 992 | + }, |
| 993 | + "storageNoValidateFieldSize":{ |
| 994 | + "shape":"Boolean", |
| 995 | + "documentation":"<p>Skip field size validation on incoming write requests.</p> <p>Default: false</p>" |
| 996 | + }, |
| 997 | + "storageRetentionCheckInterval":{ |
| 998 | + "shape":"Duration", |
| 999 | + "documentation":"<p>Interval of retention policy enforcement checks. Must be greater than 0.</p> <p>Default: 30 minutes</p>" |
| 1000 | + }, |
| 1001 | + "storageSeriesFileMaxConcurrentSnapshotCompactions":{ |
| 1002 | + "shape":"InfluxDBv2ParametersStorageSeriesFileMaxConcurrentSnapshotCompactionsInteger", |
| 1003 | + "documentation":"<p>Maximum number of snapshot compactions that can run concurrently across all series partitions in a database.</p> <p>Default: 0</p>" |
| 1004 | + }, |
| 1005 | + "storageSeriesIdSetCacheSize":{ |
| 1006 | + "shape":"InfluxDBv2ParametersStorageSeriesIdSetCacheSizeLong", |
| 1007 | + "documentation":"<p>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.</p> <p>Default: 100</p>" |
| 1008 | + }, |
| 1009 | + "storageWalMaxConcurrentWrites":{ |
| 1010 | + "shape":"InfluxDBv2ParametersStorageWalMaxConcurrentWritesInteger", |
| 1011 | + "documentation":"<p>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.</p> <p>Default: 0</p>" |
| 1012 | + }, |
| 1013 | + "storageWalMaxWriteDelay":{ |
| 1014 | + "shape":"Duration", |
| 1015 | + "documentation":"<p>Maximum amount of time a write request to the WAL directory will wait when the <a href=\"https://docs.influxdata.com/influxdb/v2/reference/config-options/#storage-wal-max-concurrent-writes\">maximum number of concurrent active writes to the WAL directory has been met</a>. Set to 0 to disable the timeout.</p> <p>Default: 10 minutes</p>" |
| 1016 | + }, |
| 1017 | + "uiDisabled":{ |
| 1018 | + "shape":"Boolean", |
| 1019 | + "documentation":"<p>Disable the InfluxDB user interface (UI). The UI is enabled by default.</p> <p>Default: false</p>" |
860 | 1020 | }
|
861 | 1021 | },
|
862 | 1022 | "documentation":"<p>All the customer-modifiable InfluxDB v2 parameters in Timestream for InfluxDB.</p>"
|
863 | 1023 | },
|
| 1024 | + "InfluxDBv2ParametersInfluxqlMaxSelectBucketsLong":{ |
| 1025 | + "type":"long", |
| 1026 | + "box":true, |
| 1027 | + "max":1000000000000, |
| 1028 | + "min":0 |
| 1029 | + }, |
| 1030 | + "InfluxDBv2ParametersInfluxqlMaxSelectPointLong":{ |
| 1031 | + "type":"long", |
| 1032 | + "box":true, |
| 1033 | + "max":1000000000000, |
| 1034 | + "min":0 |
| 1035 | + }, |
| 1036 | + "InfluxDBv2ParametersInfluxqlMaxSelectSeriesLong":{ |
| 1037 | + "type":"long", |
| 1038 | + "box":true, |
| 1039 | + "max":1000000000000, |
| 1040 | + "min":0 |
| 1041 | + }, |
864 | 1042 | "InfluxDBv2ParametersQueryConcurrencyInteger":{
|
865 | 1043 | "type":"integer",
|
866 | 1044 | "box":true,
|
867 | 1045 | "max":256,
|
868 | 1046 | "min":0
|
869 | 1047 | },
|
| 1048 | + "InfluxDBv2ParametersQueryInitialMemoryBytesLong":{ |
| 1049 | + "type":"long", |
| 1050 | + "box":true, |
| 1051 | + "max":1000000000000, |
| 1052 | + "min":0 |
| 1053 | + }, |
| 1054 | + "InfluxDBv2ParametersQueryMaxMemoryBytesLong":{ |
| 1055 | + "type":"long", |
| 1056 | + "box":true, |
| 1057 | + "max":1000000000000, |
| 1058 | + "min":0 |
| 1059 | + }, |
| 1060 | + "InfluxDBv2ParametersQueryMemoryBytesLong":{ |
| 1061 | + "type":"long", |
| 1062 | + "box":true, |
| 1063 | + "max":1000000000000, |
| 1064 | + "min":0 |
| 1065 | + }, |
870 | 1066 | "InfluxDBv2ParametersQueryQueueSizeInteger":{
|
871 | 1067 | "type":"integer",
|
872 | 1068 | "box":true,
|
873 | 1069 | "max":256,
|
874 | 1070 | "min":0
|
875 | 1071 | },
|
| 1072 | + "InfluxDBv2ParametersSessionLengthInteger":{ |
| 1073 | + "type":"integer", |
| 1074 | + "box":true, |
| 1075 | + "max":2880, |
| 1076 | + "min":1 |
| 1077 | + }, |
| 1078 | + "InfluxDBv2ParametersStorageCacheMaxMemorySizeLong":{ |
| 1079 | + "type":"long", |
| 1080 | + "box":true, |
| 1081 | + "max":1000000000000, |
| 1082 | + "min":0 |
| 1083 | + }, |
| 1084 | + "InfluxDBv2ParametersStorageCacheSnapshotMemorySizeLong":{ |
| 1085 | + "type":"long", |
| 1086 | + "box":true, |
| 1087 | + "max":1000000000000, |
| 1088 | + "min":0 |
| 1089 | + }, |
| 1090 | + "InfluxDBv2ParametersStorageCompactThroughputBurstLong":{ |
| 1091 | + "type":"long", |
| 1092 | + "box":true, |
| 1093 | + "max":1000000000000, |
| 1094 | + "min":0 |
| 1095 | + }, |
| 1096 | + "InfluxDBv2ParametersStorageMaxConcurrentCompactionsInteger":{ |
| 1097 | + "type":"integer", |
| 1098 | + "box":true, |
| 1099 | + "max":64, |
| 1100 | + "min":0 |
| 1101 | + }, |
| 1102 | + "InfluxDBv2ParametersStorageMaxIndexLogFileSizeLong":{ |
| 1103 | + "type":"long", |
| 1104 | + "box":true, |
| 1105 | + "max":1000000000000, |
| 1106 | + "min":0 |
| 1107 | + }, |
| 1108 | + "InfluxDBv2ParametersStorageSeriesFileMaxConcurrentSnapshotCompactionsInteger":{ |
| 1109 | + "type":"integer", |
| 1110 | + "box":true, |
| 1111 | + "max":64, |
| 1112 | + "min":0 |
| 1113 | + }, |
| 1114 | + "InfluxDBv2ParametersStorageSeriesIdSetCacheSizeLong":{ |
| 1115 | + "type":"long", |
| 1116 | + "box":true, |
| 1117 | + "max":1000000000000, |
| 1118 | + "min":0 |
| 1119 | + }, |
| 1120 | + "InfluxDBv2ParametersStorageWalMaxConcurrentWritesInteger":{ |
| 1121 | + "type":"integer", |
| 1122 | + "box":true, |
| 1123 | + "max":256, |
| 1124 | + "min":0 |
| 1125 | + }, |
876 | 1126 | "Integer":{
|
877 | 1127 | "type":"integer",
|
878 | 1128 | "box":true
|
|
1013 | 1263 | "pattern":"[a-zA-Z0-9]+",
|
1014 | 1264 | "sensitive":true
|
1015 | 1265 | },
|
| 1266 | + "Port":{ |
| 1267 | + "type":"integer", |
| 1268 | + "box":true, |
| 1269 | + "max":65535, |
| 1270 | + "min":1024 |
| 1271 | + }, |
1016 | 1272 | "RequestTagMap":{
|
1017 | 1273 | "type":"map",
|
1018 | 1274 | "key":{"shape":"TagKey"},
|
|
1183 | 1439 | "shape":"DbParameterGroupIdentifier",
|
1184 | 1440 | "documentation":"<p>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.</p>"
|
1185 | 1441 | },
|
| 1442 | + "port":{ |
| 1443 | + "shape":"Port", |
| 1444 | + "documentation":"<p>The port number on which InfluxDB accepts connections.</p> <p>If you change the Port value, your database restarts immediately.</p> <p>Valid Values: 1024-65535</p> <p>Default: 8086</p> <p>Constraints: The value can't be 2375-2376, 7788-7799, 8090, or 51678-51680</p>" |
| 1445 | + }, |
1186 | 1446 | "dbInstanceType":{
|
1187 | 1447 | "shape":"DbInstanceType",
|
1188 | 1448 | "documentation":"<p>The Timestream for InfluxDB DB instance type to run InfluxDB on.</p>"
|
|
1222 | 1482 | "shape":"String",
|
1223 | 1483 | "documentation":"<p>The endpoint used to connect to InfluxDB. The default InfluxDB port is 8086.</p>"
|
1224 | 1484 | },
|
| 1485 | + "port":{ |
| 1486 | + "shape":"Port", |
| 1487 | + "documentation":"<p>The port number on which InfluxDB accepts connections.</p>" |
| 1488 | + }, |
1225 | 1489 | "dbInstanceType":{
|
1226 | 1490 | "shape":"DbInstanceType",
|
1227 | 1491 | "documentation":"<p>The Timestream for InfluxDB instance type that InfluxDB runs on.</p>"
|
|
0 commit comments