aws-sdk 2.1598.0 → 2.1600.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. package/README.md +1 -1
  2. package/apis/bedrock-agent-2023-06-05.min.json +1 -2
  3. package/apis/cloudformation-2010-05-15.min.json +54 -45
  4. package/apis/emr-serverless-2021-07-13.min.json +56 -55
  5. package/apis/entityresolution-2018-05-10.min.json +602 -82
  6. package/apis/entityresolution-2018-05-10.paginators.json +6 -0
  7. package/apis/glue-2017-03-31.min.json +2 -0
  8. package/apis/healthlake-2017-07-01.min.json +21 -14
  9. package/apis/iotwireless-2020-11-22.min.json +23 -3
  10. package/apis/kms-2014-11-01.examples.json +73 -8
  11. package/apis/kms-2014-11-01.min.json +71 -4
  12. package/apis/kms-2014-11-01.paginators.json +14 -0
  13. package/apis/lakeformation-2017-03-31.min.json +35 -25
  14. package/apis/m2-2021-04-28.min.json +83 -6
  15. package/apis/mediapackagev2-2022-12-25.min.json +131 -8
  16. package/apis/mediatailor-2018-04-23.min.json +21 -17
  17. package/apis/outposts-2019-12-03.min.json +299 -43
  18. package/apis/outposts-2019-12-03.paginators.json +12 -0
  19. package/apis/redshift-2012-12-01.min.json +2 -1
  20. package/apis/wellarchitected-2020-03-31.min.json +203 -82
  21. package/clients/bedrockagent.d.ts +35 -35
  22. package/clients/cloudformation.d.ts +36 -1
  23. package/clients/configservice.d.ts +4 -4
  24. package/clients/emrserverless.d.ts +5 -0
  25. package/clients/entityresolution.d.ts +604 -19
  26. package/clients/glue.d.ts +13 -5
  27. package/clients/healthlake.d.ts +17 -1
  28. package/clients/iotfleethub.d.ts +19 -19
  29. package/clients/iotwireless.d.ts +71 -40
  30. package/clients/kms.d.ts +105 -12
  31. package/clients/lakeformation.d.ts +18 -2
  32. package/clients/m2.d.ts +88 -1
  33. package/clients/mediapackagev2.d.ts +154 -0
  34. package/clients/mediatailor.d.ts +17 -0
  35. package/clients/outposts.d.ts +264 -5
  36. package/clients/redshift.d.ts +4 -0
  37. package/clients/transfer.d.ts +4 -4
  38. package/clients/wellarchitected.d.ts +182 -4
  39. package/dist/aws-sdk-core-react-native.js +1 -1
  40. package/dist/aws-sdk-react-native.js +19 -19
  41. package/dist/aws-sdk.js +144 -53
  42. package/dist/aws-sdk.min.js +65 -65
  43. package/lib/core.js +1 -1
  44. package/package.json +1 -1
package/clients/glue.d.ts CHANGED
@@ -1060,11 +1060,11 @@ declare class Glue extends Service {
1060
1060
  */
1061
1061
  getUnfilteredPartitionsMetadata(callback?: (err: AWSError, data: Glue.Types.GetUnfilteredPartitionsMetadataResponse) => void): Request<Glue.Types.GetUnfilteredPartitionsMetadataResponse, AWSError>;
1062
1062
  /**
1063
- * Retrieves table metadata from the Data Catalog that contains unfiltered metadata. For IAM authorization, the public IAM action associated with this API is glue:GetTable.
1063
+ * Allows a third-party analytical engine to retrieve unfiltered table metadata from the Data Catalog. For IAM authorization, the public IAM action associated with this API is glue:GetTable.
1064
1064
  */
1065
1065
  getUnfilteredTableMetadata(params: Glue.Types.GetUnfilteredTableMetadataRequest, callback?: (err: AWSError, data: Glue.Types.GetUnfilteredTableMetadataResponse) => void): Request<Glue.Types.GetUnfilteredTableMetadataResponse, AWSError>;
1066
1066
  /**
1067
- * Retrieves table metadata from the Data Catalog that contains unfiltered metadata. For IAM authorization, the public IAM action associated with this API is glue:GetTable.
1067
+ * Allows a third-party analytical engine to retrieve unfiltered table metadata from the Data Catalog. For IAM authorization, the public IAM action associated with this API is glue:GetTable.
1068
1068
  */
1069
1069
  getUnfilteredTableMetadata(callback?: (err: AWSError, data: Glue.Types.GetUnfilteredTableMetadataResponse) => void): Request<Glue.Types.GetUnfilteredTableMetadataResponse, AWSError>;
1070
1070
  /**
@@ -8292,9 +8292,17 @@ declare namespace Glue {
8292
8292
  */
8293
8293
  AuditContext?: AuditContext;
8294
8294
  /**
8295
- * (Required) A list of supported permission types.
8295
+ * Indicates the level of filtering a third-party analytical engine is capable of enforcing when calling the GetUnfilteredTableMetadata API operation. Accepted values are: COLUMN_PERMISSION - Column permissions ensure that users can access only specific columns in the table. If there are particular columns contain sensitive data, data lake administrators can define column filters that exclude access to specific columns. CELL_FILTER_PERMISSION - Cell-level filtering combines column filtering (include or exclude columns) and row filter expressions to restrict access to individual elements in the table. NESTED_PERMISSION - Nested permissions combines cell-level filtering and nested column filtering to restrict access to columns and/or nested columns in specific rows based on row filter expressions. NESTED_CELL_PERMISSION - Nested cell permissions combines nested permission with nested cell-level filtering. This allows different subsets of nested columns to be restricted based on an array of row filter expressions. Note: Each of these permission types follows a hierarchical order where each subsequent permission type includes all permission of the previous type. Important: If you provide a supported permission type that doesn't match the user's level of permissions on the table, then Lake Formation raises an exception. For example, if the third-party engine calling the GetUnfilteredTableMetadata operation can enforce only column-level filtering, and the user has nested cell filtering applied on the table, Lake Formation throws an exception, and will not return unfiltered table metadata and data access credentials.
8296
8296
  */
8297
8297
  SupportedPermissionTypes: PermissionTypeList;
8298
+ /**
8299
+ * The resource ARN of the view.
8300
+ */
8301
+ ParentResourceArn?: ArnString;
8302
+ /**
8303
+ * The resource ARN of the root view in a chain of nested views.
8304
+ */
8305
+ RootResourceArn?: ArnString;
8298
8306
  /**
8299
8307
  * A structure specifying the dialect and dialect version used by the query engine.
8300
8308
  */
@@ -9334,11 +9342,11 @@ declare namespace Glue {
9334
9342
  */
9335
9343
  StartingPosition?: StartingPosition;
9336
9344
  /**
9337
- * The maximum time spent in the job executor to fetch a record from the Kinesis data stream per shard, specified in milliseconds (ms). The default value is 1000.
9345
+ * The maximum time spent for the job executor to read records for the current batch from the Kinesis data stream, specified in milliseconds (ms). Multiple GetRecords API calls may be made within this time. The default value is 1000.
9338
9346
  */
9339
9347
  MaxFetchTimeInMs?: BoxedNonNegativeLong;
9340
9348
  /**
9341
- * The maximum number of records to fetch per shard in the Kinesis data stream. The default value is 100000.
9349
+ * The maximum number of records to fetch per shard in the Kinesis data stream per microbatch. Note: The client can exceed this limit if the streaming job has already read extra records from Kinesis (in the same get-records call). If MaxFetchRecordsPerShard needs to be strict then it needs to be a multiple of MaxRecordPerRead. The default value is 100000.
9342
9350
  */
9343
9351
  MaxFetchRecordsPerShard?: BoxedNonNegativeLong;
9344
9352
  /**
@@ -234,9 +234,13 @@ declare namespace HealthLake {
234
234
  * The identity provider that you selected when you created the data store.
235
235
  */
236
236
  IdentityProviderConfiguration?: IdentityProviderConfiguration;
237
+ /**
238
+ * The error cause for the current data store operation.
239
+ */
240
+ ErrorCause?: ErrorCause;
237
241
  }
238
242
  export type DatastorePropertiesList = DatastoreProperties[];
239
- export type DatastoreStatus = "CREATING"|"ACTIVE"|"DELETING"|"DELETED"|string;
243
+ export type DatastoreStatus = "CREATING"|"ACTIVE"|"DELETING"|"DELETED"|"CREATE_FAILED"|string;
240
244
  export interface DeleteFHIRDatastoreRequest {
241
245
  /**
242
246
  * The AWS-generated ID for the data store to be deleted.
@@ -306,6 +310,18 @@ declare namespace HealthLake {
306
310
  ImportJobProperties: ImportJobProperties;
307
311
  }
308
312
  export type EncryptionKeyID = string;
313
+ export type ErrorCategory = "RETRYABLE_ERROR"|"NON_RETRYABLE_ERROR"|string;
314
+ export interface ErrorCause {
315
+ /**
316
+ * The text of the error message.
317
+ */
318
+ ErrorMessage?: ErrorMessage;
319
+ /**
320
+ * The error category of the create/delete data store operation. Possible statuses are RETRYABLE_ERROR or NON_RETRYABLE_ERROR.
321
+ */
322
+ ErrorCategory?: ErrorCategory;
323
+ }
324
+ export type ErrorMessage = string;
309
325
  export interface ExportJobProperties {
310
326
  /**
311
327
  * The AWS generated ID for an export job.
@@ -12,67 +12,67 @@ declare class IoTFleetHub extends Service {
12
12
  constructor(options?: IoTFleetHub.Types.ClientConfiguration)
13
13
  config: Config & IoTFleetHub.Types.ClientConfiguration;
14
14
  /**
15
- * Creates a Fleet Hub for AWS IoT Device Management web application. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
15
+ * Creates a Fleet Hub for IoT Device Management web application. When creating a Fleet Hub application, you must create an organization instance of IAM Identity Center if you don't already have one. The Fleet Hub application you create must also be in the same Amazon Web Services Region of the organization instance of IAM Identity Center. For more information see Enabling IAM Identity Center and Organization instances of IAM Identity Center.
16
16
  */
17
17
  createApplication(params: IoTFleetHub.Types.CreateApplicationRequest, callback?: (err: AWSError, data: IoTFleetHub.Types.CreateApplicationResponse) => void): Request<IoTFleetHub.Types.CreateApplicationResponse, AWSError>;
18
18
  /**
19
- * Creates a Fleet Hub for AWS IoT Device Management web application. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
19
+ * Creates a Fleet Hub for IoT Device Management web application. When creating a Fleet Hub application, you must create an organization instance of IAM Identity Center if you don't already have one. The Fleet Hub application you create must also be in the same Amazon Web Services Region of the organization instance of IAM Identity Center. For more information see Enabling IAM Identity Center and Organization instances of IAM Identity Center.
20
20
  */
21
21
  createApplication(callback?: (err: AWSError, data: IoTFleetHub.Types.CreateApplicationResponse) => void): Request<IoTFleetHub.Types.CreateApplicationResponse, AWSError>;
22
22
  /**
23
- * Deletes a Fleet Hub for AWS IoT Device Management web application. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
23
+ * Deletes a Fleet Hub for IoT Device Management web application.
24
24
  */
25
25
  deleteApplication(params: IoTFleetHub.Types.DeleteApplicationRequest, callback?: (err: AWSError, data: IoTFleetHub.Types.DeleteApplicationResponse) => void): Request<IoTFleetHub.Types.DeleteApplicationResponse, AWSError>;
26
26
  /**
27
- * Deletes a Fleet Hub for AWS IoT Device Management web application. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
27
+ * Deletes a Fleet Hub for IoT Device Management web application.
28
28
  */
29
29
  deleteApplication(callback?: (err: AWSError, data: IoTFleetHub.Types.DeleteApplicationResponse) => void): Request<IoTFleetHub.Types.DeleteApplicationResponse, AWSError>;
30
30
  /**
31
- * Gets information about a Fleet Hub for AWS IoT Device Management web application. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
31
+ * Gets information about a Fleet Hub for IoT Device Management web application.
32
32
  */
33
33
  describeApplication(params: IoTFleetHub.Types.DescribeApplicationRequest, callback?: (err: AWSError, data: IoTFleetHub.Types.DescribeApplicationResponse) => void): Request<IoTFleetHub.Types.DescribeApplicationResponse, AWSError>;
34
34
  /**
35
- * Gets information about a Fleet Hub for AWS IoT Device Management web application. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
35
+ * Gets information about a Fleet Hub for IoT Device Management web application.
36
36
  */
37
37
  describeApplication(callback?: (err: AWSError, data: IoTFleetHub.Types.DescribeApplicationResponse) => void): Request<IoTFleetHub.Types.DescribeApplicationResponse, AWSError>;
38
38
  /**
39
- * Gets a list of Fleet Hub for AWS IoT Device Management web applications for the current account. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
39
+ * Gets a list of Fleet Hub for IoT Device Management web applications for the current account.
40
40
  */
41
41
  listApplications(params: IoTFleetHub.Types.ListApplicationsRequest, callback?: (err: AWSError, data: IoTFleetHub.Types.ListApplicationsResponse) => void): Request<IoTFleetHub.Types.ListApplicationsResponse, AWSError>;
42
42
  /**
43
- * Gets a list of Fleet Hub for AWS IoT Device Management web applications for the current account. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
43
+ * Gets a list of Fleet Hub for IoT Device Management web applications for the current account.
44
44
  */
45
45
  listApplications(callback?: (err: AWSError, data: IoTFleetHub.Types.ListApplicationsResponse) => void): Request<IoTFleetHub.Types.ListApplicationsResponse, AWSError>;
46
46
  /**
47
- * Lists the tags for the specified resource. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
47
+ * Lists the tags for the specified resource.
48
48
  */
49
49
  listTagsForResource(params: IoTFleetHub.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: IoTFleetHub.Types.ListTagsForResourceResponse) => void): Request<IoTFleetHub.Types.ListTagsForResourceResponse, AWSError>;
50
50
  /**
51
- * Lists the tags for the specified resource. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
51
+ * Lists the tags for the specified resource.
52
52
  */
53
53
  listTagsForResource(callback?: (err: AWSError, data: IoTFleetHub.Types.ListTagsForResourceResponse) => void): Request<IoTFleetHub.Types.ListTagsForResourceResponse, AWSError>;
54
54
  /**
55
- * Adds to or modifies the tags of the specified resource. Tags are metadata which can be used to manage a resource. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
55
+ * Adds to or modifies the tags of the specified resource. Tags are metadata which can be used to manage a resource.
56
56
  */
57
57
  tagResource(params: IoTFleetHub.Types.TagResourceRequest, callback?: (err: AWSError, data: IoTFleetHub.Types.TagResourceResponse) => void): Request<IoTFleetHub.Types.TagResourceResponse, AWSError>;
58
58
  /**
59
- * Adds to or modifies the tags of the specified resource. Tags are metadata which can be used to manage a resource. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
59
+ * Adds to or modifies the tags of the specified resource. Tags are metadata which can be used to manage a resource.
60
60
  */
61
61
  tagResource(callback?: (err: AWSError, data: IoTFleetHub.Types.TagResourceResponse) => void): Request<IoTFleetHub.Types.TagResourceResponse, AWSError>;
62
62
  /**
63
- * Removes the specified tags (metadata) from the resource. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
63
+ * Removes the specified tags (metadata) from the resource.
64
64
  */
65
65
  untagResource(params: IoTFleetHub.Types.UntagResourceRequest, callback?: (err: AWSError, data: IoTFleetHub.Types.UntagResourceResponse) => void): Request<IoTFleetHub.Types.UntagResourceResponse, AWSError>;
66
66
  /**
67
- * Removes the specified tags (metadata) from the resource. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
67
+ * Removes the specified tags (metadata) from the resource.
68
68
  */
69
69
  untagResource(callback?: (err: AWSError, data: IoTFleetHub.Types.UntagResourceResponse) => void): Request<IoTFleetHub.Types.UntagResourceResponse, AWSError>;
70
70
  /**
71
- * Updates information about a Fleet Hub for a AWS IoT Device Management web application. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
71
+ * Updates information about a Fleet Hub for IoT Device Management web application.
72
72
  */
73
73
  updateApplication(params: IoTFleetHub.Types.UpdateApplicationRequest, callback?: (err: AWSError, data: IoTFleetHub.Types.UpdateApplicationResponse) => void): Request<IoTFleetHub.Types.UpdateApplicationResponse, AWSError>;
74
74
  /**
75
- * Updates information about a Fleet Hub for a AWS IoT Device Management web application. Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.
75
+ * Updates information about a Fleet Hub for IoT Device Management web application.
76
76
  */
77
77
  updateApplication(callback?: (err: AWSError, data: IoTFleetHub.Types.UpdateApplicationResponse) => void): Request<IoTFleetHub.Types.UpdateApplicationResponse, AWSError>;
78
78
  }
@@ -125,7 +125,7 @@ declare namespace IoTFleetHub {
125
125
  */
126
126
  clientToken?: ClientRequestToken;
127
127
  /**
128
- * The ARN of the role that the web application assumes when it interacts with AWS IoT Core. The name of the role must be in the form AWSIotFleetHub_random_string .
128
+ * The ARN of the role that the web application assumes when it interacts with Amazon Web Services IoT Core. The name of the role must be in the form AWSIotFleetHub_random_string .
129
129
  */
130
130
  roleArn: Arn;
131
131
  /**
@@ -195,7 +195,7 @@ declare namespace IoTFleetHub {
195
195
  */
196
196
  applicationLastUpdateDate: Timestamp;
197
197
  /**
198
- * The ARN of the role that the web application assumes when it interacts with AWS IoT Core.
198
+ * The ARN of the role that the web application assumes when it interacts with Amazon Web Services IoT Core.
199
199
  */
200
200
  roleArn: Arn;
201
201
  /**
@@ -203,7 +203,7 @@ declare namespace IoTFleetHub {
203
203
  */
204
204
  ssoClientId?: SsoClientId;
205
205
  /**
206
- * A message indicating why the DescribeApplication API failed.
206
+ * A message that explains any failures included in the applicationState response field. This message explains failures in the CreateApplication and DeleteApplication actions.
207
207
  */
208
208
  errorMessage?: ErrorMessage;
209
209
  /**
@@ -132,11 +132,11 @@ declare class IoTWireless extends Service {
132
132
  */
133
133
  createWirelessDevice(callback?: (err: AWSError, data: IoTWireless.Types.CreateWirelessDeviceResponse) => void): Request<IoTWireless.Types.CreateWirelessDeviceResponse, AWSError>;
134
134
  /**
135
- * Provisions a wireless gateway.
135
+ * Provisions a wireless gateway. When provisioning a wireless gateway, you might run into duplication errors for the following reasons. If you specify a GatewayEui value that already exists. If you used a ClientRequestToken with the same parameters within the last 10 minutes. To avoid this error, make sure that you use unique identifiers and parameters for each request within the specified time period.
136
136
  */
137
137
  createWirelessGateway(params: IoTWireless.Types.CreateWirelessGatewayRequest, callback?: (err: AWSError, data: IoTWireless.Types.CreateWirelessGatewayResponse) => void): Request<IoTWireless.Types.CreateWirelessGatewayResponse, AWSError>;
138
138
  /**
139
- * Provisions a wireless gateway.
139
+ * Provisions a wireless gateway. When provisioning a wireless gateway, you might run into duplication errors for the following reasons. If you specify a GatewayEui value that already exists. If you used a ClientRequestToken with the same parameters within the last 10 minutes. To avoid this error, make sure that you use unique identifiers and parameters for each request within the specified time period.
140
140
  */
141
141
  createWirelessGateway(callback?: (err: AWSError, data: IoTWireless.Types.CreateWirelessGatewayResponse) => void): Request<IoTWireless.Types.CreateWirelessGatewayResponse, AWSError>;
142
142
  /**
@@ -228,11 +228,11 @@ declare class IoTWireless extends Service {
228
228
  */
229
229
  deleteWirelessDeviceImportTask(callback?: (err: AWSError, data: IoTWireless.Types.DeleteWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.DeleteWirelessDeviceImportTaskResponse, AWSError>;
230
230
  /**
231
- * Deletes a wireless gateway.
231
+ * Deletes a wireless gateway. When deleting a wireless gateway, you might run into duplication errors for the following reasons. If you specify a GatewayEui value that already exists. If you used a ClientRequestToken with the same parameters within the last 10 minutes. To avoid this error, make sure that you use unique identifiers and parameters for each request within the specified time period.
232
232
  */
233
233
  deleteWirelessGateway(params: IoTWireless.Types.DeleteWirelessGatewayRequest, callback?: (err: AWSError, data: IoTWireless.Types.DeleteWirelessGatewayResponse) => void): Request<IoTWireless.Types.DeleteWirelessGatewayResponse, AWSError>;
234
234
  /**
235
- * Deletes a wireless gateway.
235
+ * Deletes a wireless gateway. When deleting a wireless gateway, you might run into duplication errors for the following reasons. If you specify a GatewayEui value that already exists. If you used a ClientRequestToken with the same parameters within the last 10 minutes. To avoid this error, make sure that you use unique identifiers and parameters for each request within the specified time period.
236
236
  */
237
237
  deleteWirelessGateway(callback?: (err: AWSError, data: IoTWireless.Types.DeleteWirelessGatewayResponse) => void): Request<IoTWireless.Types.DeleteWirelessGatewayResponse, AWSError>;
238
238
  /**
@@ -356,19 +356,19 @@ declare class IoTWireless extends Service {
356
356
  */
357
357
  getLogLevelsByResourceTypes(callback?: (err: AWSError, data: IoTWireless.Types.GetLogLevelsByResourceTypesResponse) => void): Request<IoTWireless.Types.GetLogLevelsByResourceTypesResponse, AWSError>;
358
358
  /**
359
- * Get the metric configuration status for this account.
359
+ * Get the metric configuration status for this AWS account.
360
360
  */
361
361
  getMetricConfiguration(params: IoTWireless.Types.GetMetricConfigurationRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetMetricConfigurationResponse) => void): Request<IoTWireless.Types.GetMetricConfigurationResponse, AWSError>;
362
362
  /**
363
- * Get the metric configuration status for this account.
363
+ * Get the metric configuration status for this AWS account.
364
364
  */
365
365
  getMetricConfiguration(callback?: (err: AWSError, data: IoTWireless.Types.GetMetricConfigurationResponse) => void): Request<IoTWireless.Types.GetMetricConfigurationResponse, AWSError>;
366
366
  /**
367
- * Get metrics.
367
+ * Get the summary metrics for this AWS account.
368
368
  */
369
369
  getMetrics(params: IoTWireless.Types.GetMetricsRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetMetricsResponse) => void): Request<IoTWireless.Types.GetMetricsResponse, AWSError>;
370
370
  /**
371
- * Get metrics.
371
+ * Get the summary metrics for this AWS account.
372
372
  */
373
373
  getMetrics(callback?: (err: AWSError, data: IoTWireless.Types.GetMetricsResponse) => void): Request<IoTWireless.Types.GetMetricsResponse, AWSError>;
374
374
  /**
@@ -828,11 +828,11 @@ declare class IoTWireless extends Service {
828
828
  */
829
829
  updateLogLevelsByResourceTypes(callback?: (err: AWSError, data: IoTWireless.Types.UpdateLogLevelsByResourceTypesResponse) => void): Request<IoTWireless.Types.UpdateLogLevelsByResourceTypesResponse, AWSError>;
830
830
  /**
831
- * Update the metric configuration.
831
+ * Update the summary metric configuration.
832
832
  */
833
833
  updateMetricConfiguration(params: IoTWireless.Types.UpdateMetricConfigurationRequest, callback?: (err: AWSError, data: IoTWireless.Types.UpdateMetricConfigurationResponse) => void): Request<IoTWireless.Types.UpdateMetricConfigurationResponse, AWSError>;
834
834
  /**
835
- * Update the metric configuration.
835
+ * Update the summary metric configuration.
836
836
  */
837
837
  updateMetricConfiguration(callback?: (err: AWSError, data: IoTWireless.Types.UpdateMetricConfigurationResponse) => void): Request<IoTWireless.Types.UpdateMetricConfigurationResponse, AWSError>;
838
838
  /**
@@ -979,7 +979,7 @@ declare namespace IoTWireless {
979
979
  */
980
980
  Sidewalk: SidewalkAccountInfo;
981
981
  /**
982
- * Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
982
+ * Each resource must have a unique client request token. The client token is used to implement idempotency. It ensures that the request completes no more than one time. If you retry a request with the same token and the same parameters, the request will complete successfully. However, if you try to create a new resource using the same token but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request. For more information about idempotency, see Ensuring idempotency in Amazon EC2 API requests.
983
983
  */
984
984
  ClientRequestToken?: ClientRequestToken;
985
985
  /**
@@ -1235,7 +1235,7 @@ declare namespace IoTWireless {
1235
1235
  */
1236
1236
  Tags?: TagList;
1237
1237
  /**
1238
- * Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1238
+ * Each resource must have a unique client request token. The client token is used to implement idempotency. It ensures that the request completes no more than one time. If you retry a request with the same token and the same parameters, the request will complete successfully. However, if you try to create a new resource using the same token but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request. For more information about idempotency, see Ensuring idempotency in Amazon EC2 API requests.
1239
1239
  */
1240
1240
  ClientRequestToken?: ClientRequestToken;
1241
1241
  }
@@ -1263,7 +1263,7 @@ declare namespace IoTWireless {
1263
1263
  */
1264
1264
  Tags?: TagList;
1265
1265
  /**
1266
- * Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1266
+ * Each resource must have a unique client request token. The client token is used to implement idempotency. It ensures that the request completes no more than one time. If you retry a request with the same token and the same parameters, the request will complete successfully. However, if you try to create a new resource using the same token but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request. For more information about idempotency, see Ensuring idempotency in Amazon EC2 API requests.
1267
1267
  */
1268
1268
  ClientRequestToken?: ClientRequestToken;
1269
1269
  /**
@@ -1304,7 +1304,7 @@ declare namespace IoTWireless {
1304
1304
  */
1305
1305
  Description?: Description;
1306
1306
  /**
1307
- * Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1307
+ * Each resource must have a unique client request token. The client token is used to implement idempotency. It ensures that the request completes no more than one time. If you retry a request with the same token and the same parameters, the request will complete successfully. However, if you try to create a new resource using the same token but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request. For more information about idempotency, see Ensuring idempotency in Amazon EC2 API requests.
1308
1308
  */
1309
1309
  ClientRequestToken?: ClientRequestToken;
1310
1310
  LoRaWAN: LoRaWANMulticast;
@@ -1354,7 +1354,7 @@ declare namespace IoTWireless {
1354
1354
  */
1355
1355
  Tags?: TagList;
1356
1356
  /**
1357
- * Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1357
+ * Each resource must have a unique client request token. The client token is used to implement idempotency. It ensures that the request completes no more than one time. If you retry a request with the same token and the same parameters, the request will complete successfully. However, if you try to create a new resource using the same token but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request. For more information about idempotency, see Ensuring idempotency in Amazon EC2 API requests.
1358
1358
  */
1359
1359
  ClientRequestToken?: ClientRequestToken;
1360
1360
  }
@@ -1386,7 +1386,7 @@ declare namespace IoTWireless {
1386
1386
  */
1387
1387
  DestinationName: DestinationName;
1388
1388
  /**
1389
- * Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1389
+ * Each resource must have a unique client request token. The client token is used to implement idempotency. It ensures that the request completes no more than one time. If you retry a request with the same token and the same parameters, the request will complete successfully. However, if you try to create a new resource using the same token but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request. For more information about idempotency, see Ensuring idempotency in Amazon EC2 API requests.
1390
1390
  */
1391
1391
  ClientRequestToken?: ClientRequestToken;
1392
1392
  /**
@@ -1434,7 +1434,7 @@ declare namespace IoTWireless {
1434
1434
  */
1435
1435
  Tags?: TagList;
1436
1436
  /**
1437
- * Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1437
+ * Each resource must have a unique client request token. The client token is used to implement idempotency. It ensures that the request completes no more than one time. If you retry a request with the same token and the same parameters, the request will complete successfully. However, if you try to create a new resource using the same token but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request. For more information about idempotency, see Ensuring idempotency in Amazon EC2 API requests.
1438
1438
  */
1439
1439
  ClientRequestToken?: ClientRequestToken;
1440
1440
  }
@@ -1462,7 +1462,7 @@ declare namespace IoTWireless {
1462
1462
  */
1463
1463
  Update?: UpdateWirelessGatewayTaskCreate;
1464
1464
  /**
1465
- * Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
1465
+ * Each resource must have a unique client request token. The client token is used to implement idempotency. It ensures that the request completes no more than one time. If you retry a request with the same token and the same parameters, the request will complete successfully. However, if you try to create a new resource using the same token but different parameters, an HTTP 409 conflict occurs. If you omit this value, AWS SDKs will automatically generate a unique client request. For more information about idempotency, see Ensuring idempotency in Amazon EC2 API requests.
1466
1466
  */
1467
1467
  ClientRequestToken?: ClientRequestToken;
1468
1468
  /**
@@ -1775,6 +1775,7 @@ declare namespace IoTWireless {
1775
1775
  }
1776
1776
  export interface DisassociateWirelessGatewayFromThingResponse {
1777
1777
  }
1778
+ export type DlAllowed = boolean;
1778
1779
  export type DlBucketSize = number;
1779
1780
  export type DlClass = "ClassB"|"ClassC"|string;
1780
1781
  export type DlDr = number;
@@ -2014,19 +2015,19 @@ declare namespace IoTWireless {
2014
2015
  }
2015
2016
  export interface GetMetricConfigurationResponse {
2016
2017
  /**
2017
- * The account's configuration status for summary metric aggregation.
2018
+ * The configuration status of the AWS account for summary metric aggregation.
2018
2019
  */
2019
2020
  SummaryMetric?: SummaryMetricConfiguration;
2020
2021
  }
2021
2022
  export interface GetMetricsRequest {
2022
2023
  /**
2023
- * The list of queries to retrieve summary metrics.
2024
+ * The list of queries to retrieve the summary metrics.
2024
2025
  */
2025
2026
  SummaryMetricQueries?: SummaryMetricQueries;
2026
2027
  }
2027
2028
  export interface GetMetricsResponse {
2028
2029
  /**
2029
- * The list of retrieved metrics.
2030
+ * The list of summary metrics that were retrieved.
2030
2031
  */
2031
2032
  SummaryMetricQueryResults?: SummaryMetricQueryResults;
2032
2033
  }
@@ -2660,6 +2661,7 @@ declare namespace IoTWireless {
2660
2661
  export type HrAllowed = boolean;
2661
2662
  export type IPAddress = string;
2662
2663
  export type ISODateTimeString = string;
2664
+ export type Id = string;
2663
2665
  export type Identifier = string;
2664
2666
  export type IdentifierType = "PartnerAccountId"|"DevEui"|"GatewayEui"|"WirelessDeviceId"|"WirelessGatewayId"|string;
2665
2667
  export type ImportTaskArn = string;
@@ -3142,6 +3144,10 @@ declare namespace IoTWireless {
3142
3144
  * Information about the gateways accessed by the device.
3143
3145
  */
3144
3146
  Gateways?: LoRaWANGatewayMetadataList;
3147
+ /**
3148
+ * Information about the LoRaWAN public network accessed by the device.
3149
+ */
3150
+ PublicGateways?: LoRaWANPublicGatewayMetadataList;
3145
3151
  }
3146
3152
  export interface LoRaWANDeviceProfile {
3147
3153
  /**
@@ -3403,6 +3409,30 @@ declare namespace IoTWireless {
3403
3409
  */
3404
3410
  PingSlotPeriod?: PingSlotPeriod;
3405
3411
  }
3412
+ export interface LoRaWANPublicGatewayMetadata {
3413
+ /**
3414
+ * The ID of the LoRaWAN public network provider.
3415
+ */
3416
+ ProviderNetId?: ProviderNetId;
3417
+ /**
3418
+ * The ID of the gateways that are operated by the network provider.
3419
+ */
3420
+ Id?: Id;
3421
+ /**
3422
+ * The RSSI (received signal strength indicator) value.
3423
+ */
3424
+ Rssi?: Double;
3425
+ /**
3426
+ * The SNR (signal to noise ratio) value.
3427
+ */
3428
+ Snr?: Double;
3429
+ RfRegion?: RfRegion;
3430
+ /**
3431
+ * Boolean that indicates whether downlink is allowed using the network.
3432
+ */
3433
+ DlAllowed?: DlAllowed;
3434
+ }
3435
+ export type LoRaWANPublicGatewayMetadataList = LoRaWANPublicGatewayMetadata[];
3406
3436
  export interface LoRaWANSendDataToDevice {
3407
3437
  FPort?: FPort;
3408
3438
  /**
@@ -3595,27 +3625,27 @@ declare namespace IoTWireless {
3595
3625
  export type MetricQueryTimestamps = MetricQueryTimestamp[];
3596
3626
  export interface MetricQueryValue {
3597
3627
  /**
3598
- * The minimum of the values of the all data points collected during the period.
3628
+ * The minimum of the values of all data points collected during the aggregation period.
3599
3629
  */
3600
3630
  Min?: Min;
3601
3631
  /**
3602
- * The maximum of the values of the all data points collected during the period.
3632
+ * The maximum of the values of all the data points collected during the aggregation period.
3603
3633
  */
3604
3634
  Max?: Max;
3605
3635
  /**
3606
- * The sum of the values of the all data points collected during the period.
3636
+ * The sum of the values of all data points collected during the aggregation period.
3607
3637
  */
3608
3638
  Sum?: Sum;
3609
3639
  /**
3610
- * The average of the values of the all data points collected during the period.
3640
+ * The average of the values of all data points collected during the aggregation period.
3611
3641
  */
3612
3642
  Avg?: Avg;
3613
3643
  /**
3614
- * The standard deviation of the values of the all data points collected during the period.
3644
+ * The standard deviation of the values of all data points collected during the aggregation period.
3615
3645
  */
3616
3646
  Std?: Std;
3617
3647
  /**
3618
- * The 90th percentile of the values of the all data points collected during the period.
3648
+ * The 90th percentile of the values of all data points collected during the aggregation period.
3619
3649
  */
3620
3650
  P90?: P90;
3621
3651
  }
@@ -3777,6 +3807,7 @@ declare namespace IoTWireless {
3777
3807
  export type PrAllowed = boolean;
3778
3808
  export type PresetFreq = number;
3779
3809
  export type PrivateKeysList = CertificateList[];
3810
+ export type ProviderNetId = string;
3780
3811
  export interface ProximityEventConfiguration {
3781
3812
  /**
3782
3813
  * Proximity event configuration object for enabling or disabling Sidewalk related event topics.
@@ -4235,7 +4266,7 @@ declare namespace IoTWireless {
4235
4266
  export type Sum = number;
4236
4267
  export interface SummaryMetricConfiguration {
4237
4268
  /**
4238
- * The configuration of summary metric.
4269
+ * The status of the configuration of summary metrics.
4239
4270
  */
4240
4271
  Status?: SummaryMetricConfigurationStatus;
4241
4272
  }
@@ -4243,7 +4274,7 @@ declare namespace IoTWireless {
4243
4274
  export type SummaryMetricQueries = SummaryMetricQuery[];
4244
4275
  export interface SummaryMetricQuery {
4245
4276
  /**
4246
- * The id of the query.
4277
+ * The id of the summary metric query.
4247
4278
  */
4248
4279
  QueryId?: MetricQueryId;
4249
4280
  /**
@@ -4251,37 +4282,37 @@ declare namespace IoTWireless {
4251
4282
  */
4252
4283
  MetricName?: MetricName;
4253
4284
  /**
4254
- * The dimensions of the metric.
4285
+ * The dimensions of the summary metric.
4255
4286
  */
4256
4287
  Dimensions?: Dimensions;
4257
4288
  /**
4258
- * The aggregation period of the metric.
4289
+ * The aggregation period of the summary metric.
4259
4290
  */
4260
4291
  AggregationPeriod?: AggregationPeriod;
4261
4292
  /**
4262
- * The start timestamp for summary metric query.
4293
+ * The start timestamp for the summary metric query.
4263
4294
  */
4264
4295
  StartTimestamp?: MetricQueryStartTimestamp;
4265
4296
  /**
4266
- * The end timestamp for summary metric query.
4297
+ * The end timestamp for the summary metric query.
4267
4298
  */
4268
4299
  EndTimestamp?: MetricQueryEndTimestamp;
4269
4300
  }
4270
4301
  export interface SummaryMetricQueryResult {
4271
4302
  /**
4272
- * The id of the query.
4303
+ * The ID of the summary metric results query operation.
4273
4304
  */
4274
4305
  QueryId?: MetricQueryId;
4275
4306
  /**
4276
- * The status of the metric query.
4307
+ * The status of the summary metric query result.
4277
4308
  */
4278
4309
  QueryStatus?: MetricQueryStatus;
4279
4310
  /**
4280
- * The error message for the summary metric query.
4311
+ * The error message for the summary metric query result.
4281
4312
  */
4282
4313
  Error?: MetricQueryError;
4283
4314
  /**
4284
- * The name of the metric.
4315
+ * The name of the summary metric query result.
4285
4316
  */
4286
4317
  MetricName?: MetricName;
4287
4318
  /**
@@ -4293,11 +4324,11 @@ declare namespace IoTWireless {
4293
4324
  */
4294
4325
  AggregationPeriod?: AggregationPeriod;
4295
4326
  /**
4296
- * The start timestamp for summary metric query.
4327
+ * The start timestamp for the summary metric query.
4297
4328
  */
4298
4329
  StartTimestamp?: MetricQueryStartTimestamp;
4299
4330
  /**
4300
- * The end timestamp for summary metric query.
4331
+ * The end timestamp for the summary metric query.
4301
4332
  */
4302
4333
  EndTimestamp?: MetricQueryEndTimestamp;
4303
4334
  /**
@@ -4305,7 +4336,7 @@ declare namespace IoTWireless {
4305
4336
  */
4306
4337
  Timestamps?: MetricQueryTimestamps;
4307
4338
  /**
4308
- * The list of aggregated metrics.
4339
+ * The list of aggregated summary metric query results.
4309
4340
  */
4310
4341
  Values?: MetricQueryValues;
4311
4342
  /**