aws-sdk 2.1686.0 → 2.1688.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -140,6 +140,14 @@ declare class ELBv2 extends Service {
140
140
  * Describes the current Elastic Load Balancing resource limits for your Amazon Web Services account. For more information, see the following: Quotas for your Application Load Balancers Quotas for your Network Load Balancers Quotas for your Gateway Load Balancers
141
141
  */
142
142
  describeAccountLimits(callback?: (err: AWSError, data: ELBv2.Types.DescribeAccountLimitsOutput) => void): Request<ELBv2.Types.DescribeAccountLimitsOutput, AWSError>;
143
+ /**
144
+ * Describes the attributes for the specified listener.
145
+ */
146
+ describeListenerAttributes(params: ELBv2.Types.DescribeListenerAttributesInput, callback?: (err: AWSError, data: ELBv2.Types.DescribeListenerAttributesOutput) => void): Request<ELBv2.Types.DescribeListenerAttributesOutput, AWSError>;
147
+ /**
148
+ * Describes the attributes for the specified listener.
149
+ */
150
+ describeListenerAttributes(callback?: (err: AWSError, data: ELBv2.Types.DescribeListenerAttributesOutput) => void): Request<ELBv2.Types.DescribeListenerAttributesOutput, AWSError>;
143
151
  /**
144
152
  * Describes the default certificate and the certificate list for the specified HTTPS or TLS listener. If the default certificate is also in the certificate list, it appears twice in the results (once with IsDefault set to true and once with IsDefault set to false). For more information, see SSL certificates in the Application Load Balancers Guide or Server certificates in the Network Load Balancers Guide.
145
153
  */
@@ -276,6 +284,14 @@ declare class ELBv2 extends Service {
276
284
  * Replaces the specified properties of the specified listener. Any properties that you do not specify remain unchanged. Changing the protocol from HTTPS to HTTP, or from TLS to TCP, removes the security policy and default certificate properties. If you change the protocol from HTTP to HTTPS, or from TCP to TLS, you must add the security policy and default certificate properties. To add an item to a list, remove an item from a list, or update an item in a list, you must provide the entire list. For example, to add an action, specify a list with the current actions plus the new action.
277
285
  */
278
286
  modifyListener(callback?: (err: AWSError, data: ELBv2.Types.ModifyListenerOutput) => void): Request<ELBv2.Types.ModifyListenerOutput, AWSError>;
287
+ /**
288
+ * Modifies the specified attributes of the specified listener.
289
+ */
290
+ modifyListenerAttributes(params: ELBv2.Types.ModifyListenerAttributesInput, callback?: (err: AWSError, data: ELBv2.Types.ModifyListenerAttributesOutput) => void): Request<ELBv2.Types.ModifyListenerAttributesOutput, AWSError>;
291
+ /**
292
+ * Modifies the specified attributes of the specified listener.
293
+ */
294
+ modifyListenerAttributes(callback?: (err: AWSError, data: ELBv2.Types.ModifyListenerAttributesOutput) => void): Request<ELBv2.Types.ModifyListenerAttributesOutput, AWSError>;
279
295
  /**
280
296
  * Modifies the specified attributes of the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer. If any of the specified attributes can't be modified as requested, the call fails. Any existing attributes that you do not modify retain their current values.
281
297
  */
@@ -979,6 +995,18 @@ declare namespace ELBv2 {
979
995
  */
980
996
  NextMarker?: Marker;
981
997
  }
998
+ export interface DescribeListenerAttributesInput {
999
+ /**
1000
+ * The Amazon Resource Name (ARN) of the listener.
1001
+ */
1002
+ ListenerArn: ListenerArn;
1003
+ }
1004
+ export interface DescribeListenerAttributesOutput {
1005
+ /**
1006
+ * Information about the listener attributes.
1007
+ */
1008
+ Attributes?: ListenerAttributes;
1009
+ }
982
1010
  export interface DescribeListenerCertificatesInput {
983
1011
  /**
984
1012
  * The Amazon Resource Names (ARN) of the listener.
@@ -1461,6 +1489,19 @@ declare namespace ELBv2 {
1461
1489
  }
1462
1490
  export type ListenerArn = string;
1463
1491
  export type ListenerArns = ListenerArn[];
1492
+ export interface ListenerAttribute {
1493
+ /**
1494
+ * The name of the attribute. The following attribute is supported by Network Load Balancers, and Gateway Load Balancers. tcp.idle_timeout.seconds - The tcp idle timeout value, in seconds. The valid range is 60-6000 seconds. The default is 350 seconds.
1495
+ */
1496
+ Key?: ListenerAttributeKey;
1497
+ /**
1498
+ * The value of the attribute.
1499
+ */
1500
+ Value?: ListenerAttributeValue;
1501
+ }
1502
+ export type ListenerAttributeKey = string;
1503
+ export type ListenerAttributeValue = string;
1504
+ export type ListenerAttributes = ListenerAttribute[];
1464
1505
  export type Listeners = Listener[];
1465
1506
  export interface LoadBalancer {
1466
1507
  /**
@@ -1585,6 +1626,22 @@ declare namespace ELBv2 {
1585
1626
  export type Max = string;
1586
1627
  export type MitigationInEffectEnum = "yes"|"no"|string;
1587
1628
  export type Mode = string;
1629
+ export interface ModifyListenerAttributesInput {
1630
+ /**
1631
+ * The Amazon Resource Name (ARN) of the listener.
1632
+ */
1633
+ ListenerArn: ListenerArn;
1634
+ /**
1635
+ * The listener attributes.
1636
+ */
1637
+ Attributes: ListenerAttributes;
1638
+ }
1639
+ export interface ModifyListenerAttributesOutput {
1640
+ /**
1641
+ * Information about the listener attributes.
1642
+ */
1643
+ Attributes?: ListenerAttributes;
1644
+ }
1588
1645
  export interface ModifyListenerInput {
1589
1646
  /**
1590
1647
  * The Amazon Resource Name (ARN) of the listener.
@@ -1667,13 +1724,13 @@ declare namespace ELBv2 {
1667
1724
  */
1668
1725
  TargetGroupArn: TargetGroupArn;
1669
1726
  /**
1670
- * The attributes.
1727
+ * The target group attributes.
1671
1728
  */
1672
1729
  Attributes: TargetGroupAttributes;
1673
1730
  }
1674
1731
  export interface ModifyTargetGroupAttributesOutput {
1675
1732
  /**
1676
- * Information about the attributes.
1733
+ * Information about the target group attributes.
1677
1734
  */
1678
1735
  Attributes?: TargetGroupAttributes;
1679
1736
  }
@@ -140,6 +140,14 @@ declare class MediaConnect extends Service {
140
140
  * Displays details of the flow's source stream. The response contains information about the contents of the stream and its programs.
141
141
  */
142
142
  describeFlowSourceMetadata(callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceMetadataResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceMetadataResponse, AWSError>;
143
+ /**
144
+ * Displays the thumbnail details of a flow's source stream.
145
+ */
146
+ describeFlowSourceThumbnail(params: MediaConnect.Types.DescribeFlowSourceThumbnailRequest, callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceThumbnailResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceThumbnailResponse, AWSError>;
147
+ /**
148
+ * Displays the thumbnail details of a flow's source stream.
149
+ */
150
+ describeFlowSourceThumbnail(callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceThumbnailResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceThumbnailResponse, AWSError>;
143
151
  /**
144
152
  * Displays the details of a gateway. The response includes the gateway ARN, name, and CIDR blocks, as well as details about the networks.
145
153
  */
@@ -939,6 +947,7 @@ declare namespace MediaConnect {
939
947
  */
940
948
  VpcInterfaces?: __listOfVpcInterfaceRequest;
941
949
  Maintenance?: AddMaintenance;
950
+ SourceMonitoringConfig?: MonitoringConfig;
942
951
  }
943
952
  export interface CreateFlowResponse {
944
953
  Flow?: Flow;
@@ -1060,6 +1069,15 @@ declare namespace MediaConnect {
1060
1069
  Timestamp?: __timestampIso8601;
1061
1070
  TransportMediaInfo?: TransportMediaInfo;
1062
1071
  }
1072
+ export interface DescribeFlowSourceThumbnailRequest {
1073
+ /**
1074
+ * The Amazon Resource Name (ARN) of the flow.
1075
+ */
1076
+ FlowArn: __string;
1077
+ }
1078
+ export interface DescribeFlowSourceThumbnailResponse {
1079
+ ThumbnailDetails?: ThumbnailDetails;
1080
+ }
1063
1081
  export interface DescribeGatewayInstanceRequest {
1064
1082
  /**
1065
1083
  * The Amazon Resource Name (ARN) of the gateway instance that you want to describe.
@@ -1292,6 +1310,7 @@ declare namespace MediaConnect {
1292
1310
  */
1293
1311
  VpcInterfaces?: __listOfVpcInterface;
1294
1312
  Maintenance?: Maintenance;
1313
+ SourceMonitoringConfig?: MonitoringConfig;
1295
1314
  }
1296
1315
  export interface Fmtp {
1297
1316
  /**
@@ -1944,6 +1963,12 @@ declare namespace MediaConnect {
1944
1963
  */
1945
1964
  Errors: __listOf__string;
1946
1965
  }
1966
+ export interface MonitoringConfig {
1967
+ /**
1968
+ * The state of thumbnail monitoring.
1969
+ */
1970
+ ThumbnailState?: ThumbnailState;
1971
+ }
1947
1972
  export type NetworkInterfaceType = "ena"|"efa"|string;
1948
1973
  export interface Offering {
1949
1974
  /**
@@ -2467,6 +2492,29 @@ declare namespace MediaConnect {
2467
2492
  Tags: __mapOf__string;
2468
2493
  }
2469
2494
  export type Tcs = "SDR"|"PQ"|"HLG"|"LINEAR"|"BT2100LINPQ"|"BT2100LINHLG"|"ST2065-1"|"ST428-1"|"DENSITY"|string;
2495
+ export interface ThumbnailDetails {
2496
+ /**
2497
+ * The ARN of the flow that DescribeFlowSourceThumbnail was performed on.
2498
+ */
2499
+ FlowArn: __string;
2500
+ /**
2501
+ * Thumbnail Base64 string.
2502
+ */
2503
+ Thumbnail?: __string;
2504
+ /**
2505
+ * Status code and messages about the flow source thumbnail.
2506
+ */
2507
+ ThumbnailMessages: __listOfMessageDetail;
2508
+ /**
2509
+ * Timecode of thumbnail.
2510
+ */
2511
+ Timecode?: __string;
2512
+ /**
2513
+ * The timestamp of when thumbnail was generated.
2514
+ */
2515
+ Timestamp?: __timestampIso8601;
2516
+ }
2517
+ export type ThumbnailState = "ENABLED"|"DISABLED"|string;
2470
2518
  export interface Transport {
2471
2519
  /**
2472
2520
  * The range of IP addresses that should be allowed to initiate output requests to this flow. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
@@ -2935,6 +2983,7 @@ declare namespace MediaConnect {
2935
2983
  FlowArn: __string;
2936
2984
  SourceFailoverConfig?: UpdateFailoverConfig;
2937
2985
  Maintenance?: UpdateMaintenance;
2986
+ SourceMonitoringConfig?: MonitoringConfig;
2938
2987
  }
2939
2988
  export interface UpdateFlowResponse {
2940
2989
  Flow?: Flow;
@@ -3635,6 +3635,11 @@ This field is optional; when no value is specified the encoder will choose the n
3635
3635
  * Timecode burn-in settings
3636
3636
  */
3637
3637
  TimecodeBurninSettings?: TimecodeBurninSettings;
3638
+ /**
3639
+ * Sets the minimum QP. If you aren't familiar with quantization adjustment, leave the field empty. MediaLive will
3640
+ apply an appropriate value.
3641
+ */
3642
+ MinQp?: __integerMin1Max51;
3638
3643
  }
3639
3644
  export type H264SpatialAq = "DISABLED"|"ENABLED"|string;
3640
3645
  export type H264SubGopLength = "DYNAMIC"|"FIXED"|string;
@@ -3839,6 +3844,11 @@ In all other configurations, you typically enter "none".
3839
3844
  * Select the tree block size used for encoding. If you enter "auto", the encoder will pick the best size. If you are setting up the picture as a tile, you must set this to 32x32. In all other configurations, you typically enter "auto".
3840
3845
  */
3841
3846
  TreeblockSize?: H265TreeblockSize;
3847
+ /**
3848
+ * Sets the minimum QP. If you aren't familiar with quantization adjustment, leave the field empty. MediaLive will
3849
+ apply an appropriate value.
3850
+ */
3851
+ MinQp?: __integerMin1Max51;
3842
3852
  }
3843
3853
  export type H265Tier = "HIGH"|"MAIN"|string;
3844
3854
  export type H265TimecodeInsertionBehavior = "DISABLED"|"PIC_TIMING_SEI"|string;
@@ -9321,6 +9331,7 @@ one destination per packager.
9321
9331
  export type __listOfSrtCallerSource = SrtCallerSource[];
9322
9332
  export type __listOfSrtCallerSourceRequest = SrtCallerSourceRequest[];
9323
9333
  export type MultiplexPacketIdentifiersMapping = {[key: string]: MultiplexProgramPacketIdentifiersMap};
9334
+ export type __integerMin1Max51 = number;
9324
9335
  /**
9325
9336
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
9326
9337
  */
@@ -101,11 +101,11 @@ declare namespace RedshiftData {
101
101
  /**
102
102
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
103
103
  */
104
- ClusterIdentifier?: Location;
104
+ ClusterIdentifier?: ClusterIdentifierString;
105
105
  /**
106
106
  * The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
107
107
  */
108
- Database: String;
108
+ Database?: String;
109
109
  /**
110
110
  * The database user name. This parameter is required when connecting to a cluster as a database user and authenticating using temporary credentials.
111
111
  */
@@ -114,6 +114,14 @@ declare namespace RedshiftData {
114
114
  * The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
115
115
  */
116
116
  SecretArn?: SecretArn;
117
+ /**
118
+ * The session identifier of the query.
119
+ */
120
+ SessionId?: UUID;
121
+ /**
122
+ * The number of seconds to keep the session alive after the query finishes. The maximum time a session can keep alive is 24 hours. After 24 hours, the session is forced closed and the query is terminated.
123
+ */
124
+ SessionKeepAliveSeconds?: SessionAliveSeconds;
117
125
  /**
118
126
  * One or more SQL statements to run. The SQL statements are run as a single transaction. They run serially in the order of the array. Subsequent SQL statements don't start until the previous statement in the array completes. If any SQL statement fails, then because they are run as one transaction, all work is rolled back.&lt;/p&gt;
119
127
  */
@@ -135,7 +143,7 @@ declare namespace RedshiftData {
135
143
  /**
136
144
  * The cluster identifier. This element is not returned when connecting to a serverless workgroup.
137
145
  */
138
- ClusterIdentifier?: Location;
146
+ ClusterIdentifier?: ClusterIdentifierString;
139
147
  /**
140
148
  * The date and time (UTC) the statement was created.
141
149
  */
@@ -144,6 +152,10 @@ declare namespace RedshiftData {
144
152
  * The name of the database.
145
153
  */
146
154
  Database?: String;
155
+ /**
156
+ * A list of colon (:) separated names of database groups.
157
+ */
158
+ DbGroups?: DbGroupList;
147
159
  /**
148
160
  * The database user name.
149
161
  */
@@ -151,11 +163,15 @@ declare namespace RedshiftData {
151
163
  /**
152
164
  * The identifier of the SQL statement whose results are to be fetched. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. This identifier is returned by BatchExecuteStatment.
153
165
  */
154
- Id?: StatementId;
166
+ Id?: UUID;
155
167
  /**
156
168
  * The name or ARN of the secret that enables access to the database.
157
169
  */
158
170
  SecretArn?: SecretArn;
171
+ /**
172
+ * The session identifier of the query.
173
+ */
174
+ SessionId?: UUID;
159
175
  /**
160
176
  * The serverless workgroup name or Amazon Resource Name (ARN). This element is not returned when connecting to a provisioned cluster.
161
177
  */
@@ -170,7 +186,7 @@ declare namespace RedshiftData {
170
186
  /**
171
187
  * The identifier of the SQL statement to cancel. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. This identifier is returned by BatchExecuteStatment, ExecuteStatment, and ListStatements.
172
188
  */
173
- Id: StatementId;
189
+ Id: UUID;
174
190
  }
175
191
  export interface CancelStatementResponse {
176
192
  /**
@@ -179,6 +195,7 @@ declare namespace RedshiftData {
179
195
  Status?: Boolean;
180
196
  }
181
197
  export type ClientToken = string;
198
+ export type ClusterIdentifierString = string;
182
199
  export type ColumnList = ColumnMetadata[];
183
200
  export interface ColumnMetadata {
184
201
  /**
@@ -236,11 +253,12 @@ declare namespace RedshiftData {
236
253
  }
237
254
  export type ColumnMetadataList = ColumnMetadata[];
238
255
  export type DatabaseList = String[];
256
+ export type DbGroupList = String[];
239
257
  export interface DescribeStatementRequest {
240
258
  /**
241
259
  * The identifier of the SQL statement to describe. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. A suffix indicates the number of the SQL statement. For example, d9b6c0c9-0747-4bf4-b142-e8883122f766:2 has a suffix of :2 that indicates the second SQL statement of a batch query. This identifier is returned by BatchExecuteStatment, ExecuteStatement, and ListStatements.
242
260
  */
243
- Id: StatementId;
261
+ Id: UUID;
244
262
  }
245
263
  export interface DescribeStatementResponse {
246
264
  /**
@@ -274,7 +292,7 @@ declare namespace RedshiftData {
274
292
  /**
275
293
  * The identifier of the SQL statement described. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
276
294
  */
277
- Id: StatementId;
295
+ Id: UUID;
278
296
  /**
279
297
  * The parameters for the SQL statement.
280
298
  */
@@ -303,6 +321,10 @@ declare namespace RedshiftData {
303
321
  * The name or Amazon Resource Name (ARN) of the secret that enables access to the database.
304
322
  */
305
323
  SecretArn?: SecretArn;
324
+ /**
325
+ * The session identifier of the query.
326
+ */
327
+ SessionId?: String;
306
328
  /**
307
329
  * The status of the SQL statement being described. Status values are defined as follows: ABORTED - The query run was stopped by the user. ALL - A status value that includes all query statuses. This value can be used to filter results. FAILED - The query run failed. FINISHED - The query has finished running. PICKED - The query has been chosen to be run. STARTED - The query run has started. SUBMITTED - The query was submitted, but not yet processed.
308
330
  */
@@ -324,7 +346,7 @@ declare namespace RedshiftData {
324
346
  /**
325
347
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
326
348
  */
327
- ClusterIdentifier?: Location;
349
+ ClusterIdentifier?: ClusterIdentifierString;
328
350
  /**
329
351
  * A database name. The connected database is specified when you connect with your authentication credentials.
330
352
  */
@@ -384,11 +406,11 @@ declare namespace RedshiftData {
384
406
  /**
385
407
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
386
408
  */
387
- ClusterIdentifier?: Location;
409
+ ClusterIdentifier?: ClusterIdentifierString;
388
410
  /**
389
411
  * The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
390
412
  */
391
- Database: String;
413
+ Database?: String;
392
414
  /**
393
415
  * The database user name. This parameter is required when connecting to a cluster as a database user and authenticating using temporary credentials.
394
416
  */
@@ -401,6 +423,14 @@ declare namespace RedshiftData {
401
423
  * The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
402
424
  */
403
425
  SecretArn?: SecretArn;
426
+ /**
427
+ * The session identifier of the query.
428
+ */
429
+ SessionId?: UUID;
430
+ /**
431
+ * The number of seconds to keep the session alive after the query finishes. The maximum time a session can keep alive is 24 hours. After 24 hours, the session is forced closed and the query is terminated.
432
+ */
433
+ SessionKeepAliveSeconds?: SessionAliveSeconds;
404
434
  /**
405
435
  * The SQL statement text to run.
406
436
  */
@@ -422,7 +452,7 @@ declare namespace RedshiftData {
422
452
  /**
423
453
  * The cluster identifier. This element is not returned when connecting to a serverless workgroup.
424
454
  */
425
- ClusterIdentifier?: Location;
455
+ ClusterIdentifier?: ClusterIdentifierString;
426
456
  /**
427
457
  * The date and time (UTC) the statement was created.
428
458
  */
@@ -431,6 +461,10 @@ declare namespace RedshiftData {
431
461
  * The name of the database.
432
462
  */
433
463
  Database?: String;
464
+ /**
465
+ * A list of colon (:) separated names of database groups.
466
+ */
467
+ DbGroups?: DbGroupList;
434
468
  /**
435
469
  * The database user name.
436
470
  */
@@ -438,11 +472,15 @@ declare namespace RedshiftData {
438
472
  /**
439
473
  * The identifier of the SQL statement whose results are to be fetched. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
440
474
  */
441
- Id?: StatementId;
475
+ Id?: UUID;
442
476
  /**
443
477
  * The name or ARN of the secret that enables access to the database.
444
478
  */
445
479
  SecretArn?: SecretArn;
480
+ /**
481
+ * The session identifier of the query.
482
+ */
483
+ SessionId?: UUID;
446
484
  /**
447
485
  * The serverless workgroup name or Amazon Resource Name (ARN). This element is not returned when connecting to a provisioned cluster.
448
486
  */
@@ -479,7 +517,7 @@ declare namespace RedshiftData {
479
517
  /**
480
518
  * The identifier of the SQL statement whose results are to be fetched. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. A suffix indicates then number of the SQL statement. For example, d9b6c0c9-0747-4bf4-b142-e8883122f766:2 has a suffix of :2 that indicates the second SQL statement of a batch query. This identifier is returned by BatchExecuteStatment, ExecuteStatment, and ListStatements.
481
519
  */
482
- Id: StatementId;
520
+ Id: UUID;
483
521
  /**
484
522
  * A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
485
523
  */
@@ -508,7 +546,7 @@ declare namespace RedshiftData {
508
546
  /**
509
547
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
510
548
  */
511
- ClusterIdentifier?: Location;
549
+ ClusterIdentifier?: ClusterIdentifierString;
512
550
  /**
513
551
  * The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
514
552
  */
@@ -548,7 +586,7 @@ declare namespace RedshiftData {
548
586
  /**
549
587
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
550
588
  */
551
- ClusterIdentifier?: Location;
589
+ ClusterIdentifier?: ClusterIdentifierString;
552
590
  /**
553
591
  * A database name. The connected database is specified when you connect with your authentication credentials.
554
592
  */
@@ -629,7 +667,7 @@ declare namespace RedshiftData {
629
667
  /**
630
668
  * The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
631
669
  */
632
- ClusterIdentifier?: Location;
670
+ ClusterIdentifier?: ClusterIdentifierString;
633
671
  /**
634
672
  * A database name. The connected database is specified when you connect with your authentication credentials.
635
673
  */
@@ -677,13 +715,13 @@ declare namespace RedshiftData {
677
715
  */
678
716
  Tables?: TableList;
679
717
  }
680
- export type Location = string;
681
718
  export type Long = number;
682
719
  export type PageSize = number;
683
720
  export type ParameterName = string;
684
721
  export type ParameterValue = string;
685
722
  export type SchemaList = String[];
686
723
  export type SecretArn = string;
724
+ export type SessionAliveSeconds = number;
687
725
  export type SqlList = StatementString[];
688
726
  export interface SqlParameter {
689
727
  /**
@@ -705,7 +743,7 @@ declare namespace RedshiftData {
705
743
  /**
706
744
  * The SQL statement identifier. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
707
745
  */
708
- Id: StatementId;
746
+ Id: UUID;
709
747
  /**
710
748
  * A value that indicates whether the statement is a batch query request.
711
749
  */
@@ -726,6 +764,10 @@ declare namespace RedshiftData {
726
764
  * The name or Amazon Resource Name (ARN) of the secret that enables access to the database.
727
765
  */
728
766
  SecretArn?: SecretArn;
767
+ /**
768
+ * The session identifier of the query.
769
+ */
770
+ SessionId?: UUID;
729
771
  /**
730
772
  * The name of the SQL statement.
731
773
  */
@@ -739,7 +781,6 @@ declare namespace RedshiftData {
739
781
  */
740
782
  UpdatedAt?: Timestamp;
741
783
  }
742
- export type StatementId = string;
743
784
  export type StatementList = StatementData[];
744
785
  export type StatementNameString = string;
745
786
  export type StatementStatusString = "SUBMITTED"|"PICKED"|"STARTED"|"FINISHED"|"ABORTED"|"FAILED"|string;
@@ -767,7 +808,7 @@ declare namespace RedshiftData {
767
808
  /**
768
809
  * The identifier of the SQL statement. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. A suffix indicates the number of the SQL statement. For example, d9b6c0c9-0747-4bf4-b142-e8883122f766:2 has a suffix of :2 that indicates the second SQL statement of a batch query.
769
810
  */
770
- Id: StatementId;
811
+ Id: UUID;
771
812
  /**
772
813
  * The SQL statement text.
773
814
  */
@@ -810,6 +851,7 @@ declare namespace RedshiftData {
810
851
  type?: String;
811
852
  }
812
853
  export type Timestamp = Date;
854
+ export type UUID = string;
813
855
  export type WorkgroupNameString = string;
814
856
  export type bool = boolean;
815
857
  /**
@@ -3729,6 +3729,7 @@ declare namespace SageMaker {
3729
3729
  }
3730
3730
  export type AutoMLSortBy = "Name"|"CreationTime"|"Status"|string;
3731
3731
  export type AutoMLSortOrder = "Ascending"|"Descending"|string;
3732
+ export type AutoMountHomeEFS = "Enabled"|"Disabled"|"DefaultAsDomain"|string;
3732
3733
  export interface AutoParameter {
3733
3734
  /**
3734
3735
  * The name of the hyperparameter to optimize using Autotune.
@@ -4730,7 +4731,7 @@ declare namespace SageMaker {
4730
4731
  */
4731
4732
  AdditionalModelDataSources?: AdditionalModelDataSources;
4732
4733
  /**
4733
- * The environment variables to set in the Docker container. The maximum length of each key and value in the Environment map is 1024 bytes. The maximum length of all keys and values in the map, combined, is 32 KB. If you pass multiple containers to a CreateModel request, then the maximum length of all of their maps, combined, is also 32 KB.
4734
+ * The environment variables to set in the Docker container. Don't include any sensitive data in your environment variables. The maximum length of each key and value in the Environment map is 1024 bytes. The maximum length of all keys and values in the map, combined, is 32 KB. If you pass multiple containers to a CreateModel request, then the maximum length of all of their maps, combined, is also 32 KB.
4734
4735
  */
4735
4736
  Environment?: EnvironmentMap;
4736
4737
  /**
@@ -6845,7 +6846,7 @@ declare namespace SageMaker {
6845
6846
  */
6846
6847
  BatchStrategy?: BatchStrategy;
6847
6848
  /**
6848
- * The environment variables to set in the Docker container. We support up to 16 key and values entries in the map.
6849
+ * The environment variables to set in the Docker container. Don't include any sensitive data in your environment variables. We support up to 16 key and values entries in the map.
6849
6850
  */
6850
6851
  Environment?: TransformEnvironmentMap;
6851
6852
  /**
@@ -25288,6 +25289,10 @@ declare namespace SageMaker {
25288
25289
  * Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
25289
25290
  */
25290
25291
  StudioWebPortalSettings?: StudioWebPortalSettings;
25292
+ /**
25293
+ * Indicates whether auto-mounting of an EFS volume is supported for the user profile. The DefaultAsDomain value is only supported for user profiles. Do not use the DefaultAsDomain value when setting this parameter for a domain.
25294
+ */
25295
+ AutoMountHomeEFS?: AutoMountHomeEFS;
25291
25296
  }
25292
25297
  export type UsersPerStep = number;
25293
25298
  export type UtilizationMetric = number;
@@ -639,7 +639,7 @@ declare namespace TimestreamInfluxDB {
639
639
  enabled: Boolean;
640
640
  }
641
641
  export type S3ConfigurationBucketNameString = string;
642
- export type Status = "CREATING"|"AVAILABLE"|"DELETING"|"MODIFYING"|"UPDATING"|"DELETED"|"FAILED"|string;
642
+ export type Status = "CREATING"|"AVAILABLE"|"DELETING"|"MODIFYING"|"UPDATING"|"DELETED"|"FAILED"|"UPDATING_DEPLOYMENT_TYPE"|"UPDATING_INSTANCE_TYPE"|string;
643
643
  export type String = string;
644
644
  export type TagKey = string;
645
645
  export type TagKeys = TagKey[];
@@ -678,6 +678,14 @@ declare namespace TimestreamInfluxDB {
678
678
  * 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.
679
679
  */
680
680
  dbParameterGroupIdentifier?: DbParameterGroupIdentifier;
681
+ /**
682
+ * The Timestream for InfluxDB DB instance type to run InfluxDB on.
683
+ */
684
+ dbInstanceType?: DbInstanceType;
685
+ /**
686
+ * Specifies whether the DB instance will be deployed as a standalone instance or with a Multi-AZ standby for high availability.
687
+ */
688
+ deploymentType?: DeploymentType;
681
689
  }
682
690
  export interface UpdateDbInstanceOutput {
683
691
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1686.0',
86
+ VERSION: '2.1688.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -5739,6 +5739,7 @@ return /******/ (function(modules) { // webpackBootstrap
5739
5739
  '^us\\-iso\\-\\w+\\-\\d+$': 'c2s.ic.gov',
5740
5740
  '^us\\-isob\\-\\w+\\-\\d+$': 'sc2s.sgov.gov',
5741
5741
  '^eu\\-isoe\\-west\\-1$': 'cloud.adc-e.uk',
5742
+ '^us\\-isof\\-\\w+\\-\\d+$': 'csp.hci.ic.gov',
5742
5743
  };
5743
5744
  var defaultSuffix = 'amazonaws.com';
5744
5745
  var regexes = Object.keys(regionRegexes);