aws-sdk 2.1354.0 → 2.1355.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.
package/CHANGELOG.md CHANGED
@@ -1,7 +1,15 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1354.0-->
2
+ <!--LATEST=2.1355.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.1355.0
6
+ * feature: ECRPUBLIC: This release will allow using registry alias as registryId in BatchDeleteImage request.
7
+ * feature: EMRServerless: This release extends GetJobRun API to return job run timeout (executionTimeoutMinutes) specified during StartJobRun call (or default timeout of 720 minutes if none was specified).
8
+ * feature: EventBridge: EventBridge PutTarget support for multiple SQL arguments on RedshiftDataParameters
9
+ * feature: Iot: This release allows AWS IoT Core users to specify a TLS security policy when creating and updating AWS IoT Domain Configurations.
10
+ * feature: IotData: This release adds support for MQTT5 user properties when calling the AWS IoT GetRetainedMessage API
11
+ * feature: WAFV2: For web ACLs that protect CloudFront protections, the default request body inspection size is now 16 KB, and you can use the new association configuration to increase the inspection size further, up to 64 KB. Sizes over 16 KB can incur additional costs.
12
+
5
13
  ## 2.1354.0
6
14
  * feature: Connect: This release adds the ability to configure an agent's routing profile to receive contacts from multiple channels at the same time via extending the UpdateRoutingProfileConcurrency, CreateRoutingProfile and DescribeRoutingProfile APIs.
7
15
  * feature: ECS: This release adds support for enabling FIPS compliance on Amazon ECS Fargate tasks
package/README.md CHANGED
@@ -70,7 +70,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
70
70
  To use the SDK in the browser, simply add the following script tag to your
71
71
  HTML pages:
72
72
 
73
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1354.0.min.js"></script>
73
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1355.0.min.js"></script>
74
74
 
75
75
  You can also build a custom browser SDK with your specified set of AWS services.
76
76
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -72,7 +72,7 @@
72
72
  "registryId": {},
73
73
  "repositoryName": {},
74
74
  "imageIds": {
75
- "shape": "Sj"
75
+ "shape": "Si"
76
76
  }
77
77
  }
78
78
  },
@@ -80,7 +80,7 @@
80
80
  "type": "structure",
81
81
  "members": {
82
82
  "imageIds": {
83
- "shape": "Sj"
83
+ "shape": "Si"
84
84
  },
85
85
  "failures": {
86
86
  "type": "list",
@@ -88,7 +88,7 @@
88
88
  "type": "structure",
89
89
  "members": {
90
90
  "imageId": {
91
- "shape": "Sk"
91
+ "shape": "Sj"
92
92
  },
93
93
  "failureCode": {},
94
94
  "failureReason": {}
@@ -255,7 +255,7 @@
255
255
  "registryId": {},
256
256
  "repositoryName": {},
257
257
  "imageIds": {
258
- "shape": "Sj"
258
+ "shape": "Si"
259
259
  },
260
260
  "nextToken": {},
261
261
  "maxResults": {
@@ -526,7 +526,7 @@
526
526
  "registryId": {},
527
527
  "repositoryName": {},
528
528
  "imageId": {
529
- "shape": "Sk"
529
+ "shape": "Sj"
530
530
  },
531
531
  "imageManifest": {},
532
532
  "imageManifestMediaType": {}
@@ -681,13 +681,13 @@
681
681
  }
682
682
  },
683
683
  "shapes": {
684
- "Sj": {
684
+ "Si": {
685
685
  "type": "list",
686
686
  "member": {
687
- "shape": "Sk"
687
+ "shape": "Sj"
688
688
  }
689
689
  },
690
- "Sk": {
690
+ "Sj": {
691
691
  "type": "structure",
692
692
  "members": {
693
693
  "imageDigest": {},
@@ -280,6 +280,9 @@
280
280
  },
281
281
  "totalExecutionDurationSeconds": {
282
282
  "type": "integer"
283
+ },
284
+ "executionTimeoutMinutes": {
285
+ "type": "long"
283
286
  }
284
287
  }
285
288
  }
@@ -1226,7 +1226,7 @@
1226
1226
  },
1227
1227
  "Source": {},
1228
1228
  "Resources": {
1229
- "shape": "S7d"
1229
+ "shape": "S7e"
1230
1230
  },
1231
1231
  "DetailType": {},
1232
1232
  "Detail": {},
@@ -1279,7 +1279,7 @@
1279
1279
  },
1280
1280
  "Source": {},
1281
1281
  "Resources": {
1282
- "shape": "S7d"
1282
+ "shape": "S7e"
1283
1283
  },
1284
1284
  "DetailType": {},
1285
1285
  "Detail": {}
@@ -2037,17 +2037,25 @@
2037
2037
  "RedshiftDataParameters": {
2038
2038
  "type": "structure",
2039
2039
  "required": [
2040
- "Database",
2041
- "Sql"
2040
+ "Database"
2042
2041
  ],
2043
2042
  "members": {
2044
2043
  "SecretManagerArn": {},
2045
2044
  "Database": {},
2046
2045
  "DbUser": {},
2047
- "Sql": {},
2046
+ "Sql": {
2047
+ "shape": "S6x"
2048
+ },
2048
2049
  "StatementName": {},
2049
2050
  "WithEvent": {
2050
2051
  "type": "boolean"
2052
+ },
2053
+ "Sqls": {
2054
+ "type": "list",
2055
+ "member": {
2056
+ "shape": "S6x"
2057
+ },
2058
+ "sensitive": true
2051
2059
  }
2052
2060
  }
2053
2061
  },
@@ -2094,7 +2102,11 @@
2094
2102
  "type": "list",
2095
2103
  "member": {}
2096
2104
  },
2097
- "S7d": {
2105
+ "S6x": {
2106
+ "type": "string",
2107
+ "sensitive": true
2108
+ },
2109
+ "S7e": {
2098
2110
  "type": "list",
2099
2111
  "member": {}
2100
2112
  }