Skip to content

Commit d39ba59

Browse files
author
awstools
committed
Updates SDK to v2.1351.0
1 parent 3ee782c commit d39ba59

24 files changed

+212
-150
lines changed

.changes/2.1351.0.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "AppRunner",
5+
"description": "App Runner adds support for seven new vCPU and memory configurations."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "ConfigService",
10+
"description": "This release adds resourceType enums for types released in March 2023."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "IVSRealTime",
15+
"description": "Fix ParticipantToken ExpirationTime format"
16+
},
17+
{
18+
"type": "feature",
19+
"category": "NetworkFirewall",
20+
"description": "AWS Network Firewall now supports IPv6-only subnets."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "ServiceCatalog",
25+
"description": "removed incorrect product type value"
26+
}
27+
]

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1350.0-->
2+
<!--LATEST=2.1351.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1351.0
6+
* feature: AppRunner: App Runner adds support for seven new vCPU and memory configurations.
7+
* feature: ConfigService: This release adds resourceType enums for types released in March 2023.
8+
* feature: IVSRealTime: Fix ParticipantToken ExpirationTime format
9+
* feature: NetworkFirewall: AWS Network Firewall now supports IPv6-only subnets.
10+
* feature: ServiceCatalog: removed incorrect product type value
11+
512
## 2.1350.0
613
* feature: AmplifyUIBuilder: Support StorageField and custom displays for data-bound options in form builder. Support non-string operands for predicates in collections. Support choosing client to get token from.
714
* feature: DataExchange: This release updates the value of MaxResults.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
7070
To use the SDK in the browser, simply add the following script tag to your
7171
HTML pages:
7272

73-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1350.0.min.js"></script>
73+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1351.0.min.js"></script>
7474

7575
You can also build a custom browser SDK with your specified set of AWS services.
7676
This can allow you to reduce the SDK's size, specify different API versions of

apis/apprunner-2020-05-15.normal.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1268,9 +1268,9 @@
12681268
},
12691269
"Cpu": {
12701270
"type": "string",
1271-
"max": 6,
1272-
"min": 4,
1273-
"pattern": "1024|2048|(1|2) vCPU"
1271+
"max": 9,
1272+
"min": 3,
1273+
"pattern": "256|512|1024|2048|4096|(0.25|0.5|1|2|4) vCPU"
12741274
},
12751275
"CreateAutoScalingConfigurationRequest": {
12761276
"type": "structure",
@@ -2418,9 +2418,9 @@
24182418
},
24192419
"Memory": {
24202420
"type": "string",
2421-
"max": 4,
2422-
"min": 4,
2423-
"pattern": "2048|3072|4096|(2|3|4) GB"
2421+
"max": 6,
2422+
"min": 3,
2423+
"pattern": "512|1024|2048|3072|4096|6144|8192|10240|12288|(0.5|1|2|3|4|6|8|10|12) GB"
24242424
},
24252425
"NetworkConfiguration": {
24262426
"type": "structure",

apis/config-2014-11-12.normal.json

+25-2
Original file line numberDiff line numberDiff line change
@@ -7484,7 +7484,7 @@
74847484
},
74857485
"TargetId": {
74867486
"shape": "StringWithCharLimit256",
7487-
"documentation": "<p>Target ID is the name of the public document.</p>"
7487+
"documentation": "<p>Target ID is the name of the SSM document.</p>"
74887488
},
74897489
"TargetVersion": {
74907490
"shape": "String",
@@ -8201,7 +8201,30 @@
82018201
"AWS::IoT::ScheduledAudit",
82028202
"AWS::Events::Connection",
82038203
"AWS::EventSchemas::Schema",
8204-
"AWS::MediaPackage::PackagingConfiguration"
8204+
"AWS::MediaPackage::PackagingConfiguration",
8205+
"AWS::KinesisVideo::SignalingChannel",
8206+
"AWS::AppStream::DirectoryConfig",
8207+
"AWS::LookoutVision::Project",
8208+
"AWS::Route53RecoveryControl::Cluster",
8209+
"AWS::Route53RecoveryControl::SafetyRule",
8210+
"AWS::Route53RecoveryControl::ControlPanel",
8211+
"AWS::Route53RecoveryControl::RoutingControl",
8212+
"AWS::Route53RecoveryReadiness::ResourceSet",
8213+
"AWS::RoboMaker::SimulationApplication",
8214+
"AWS::RoboMaker::RobotApplication",
8215+
"AWS::HealthLake::FHIRDatastore",
8216+
"AWS::Pinpoint::Segment",
8217+
"AWS::Pinpoint::ApplicationSettings",
8218+
"AWS::Events::Rule",
8219+
"AWS::EC2::DHCPOptions",
8220+
"AWS::EC2::NetworkInsightsPath",
8221+
"AWS::EC2::TrafficMirrorFilter",
8222+
"AWS::EC2::IPAM",
8223+
"AWS::IoTTwinMaker::Scene",
8224+
"AWS::NetworkManager::TransitGatewayRegistration",
8225+
"AWS::CustomerProfiles::Domain",
8226+
"AWS::AutoScaling::WarmPool",
8227+
"AWS::Connect::PhoneNumber"
82058228
]
82068229
},
82078230
"ResourceTypeList": {

apis/ecs-2014-11-13.normal.json

+17-17
Large diffs are not rendered by default.

apis/identitystore-2020-06-15.normal.json

+30-30
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"shape": "ServiceQuotaExceededException"
124124
}
125125
],
126-
"documentation": "<p>Creates a new user within the specified identity store.</p>"
126+
"documentation": "<p>Creates a user within the specified identity store.</p>"
127127
},
128128
"DeleteGroup": {
129129
"name": "DeleteGroup",
@@ -705,7 +705,7 @@
705705
"documentation": "<p>An entity attribute that's unique to a specific entity.</p>"
706706
}
707707
},
708-
"documentation": "<p>A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For example, a unique <code>GroupDisplayName</code>.</p>",
708+
"documentation": "<p>A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute.</p>",
709709
"union": true
710710
},
711711
"AttributeOperation": {
@@ -796,7 +796,7 @@
796796
},
797797
"DisplayName": {
798798
"shape": "GroupDisplayName",
799-
"documentation": "<p>A string containing the name of the group. This value is commonly displayed when the group is referenced.</p>"
799+
"documentation": "<p>A string containing the name of the group. This value is commonly displayed when the group is referenced. \"Administrator\" and \"AWSAdministrators\" are reserved names and can't be used for users or groups.</p>"
800800
},
801801
"Description": {
802802
"shape": "SensitiveStringType",
@@ -833,23 +833,23 @@
833833
},
834834
"UserName": {
835835
"shape": "UserName",
836-
"documentation": "<p>A unique string used to identify the user. The length limit is 128 characters. This value can consist of letters, accented characters, symbols, numbers, and punctuation. This value is specified at the time the user is created and stored as an attribute of the user object in the identity store.</p>"
836+
"documentation": "<p>A unique string used to identify the user. The length limit is 128 characters. This value can consist of letters, accented characters, symbols, numbers, and punctuation. This value is specified at the time the user is created and stored as an attribute of the user object in the identity store. \"Administrator\" and \"AWSAdministrators\" are reserved names and can't be used for users or groups.</p>"
837837
},
838838
"Name": {
839839
"shape": "Name",
840-
"documentation": "<p>An object containing the user's name.</p>"
840+
"documentation": "<p>An object containing the name of the user.</p>"
841841
},
842842
"DisplayName": {
843843
"shape": "SensitiveStringType",
844-
"documentation": "<p>A string containing the user's name. This value is typically formatted for display when the user is referenced. For example, \"John Doe.\"</p>"
844+
"documentation": "<p>A string containing the name of the user. This value is typically formatted for display when the user is referenced. For example, \"John Doe.\" </p>"
845845
},
846846
"NickName": {
847847
"shape": "SensitiveStringType",
848848
"documentation": "<p>A string containing an alternate name for the user.</p>"
849849
},
850850
"ProfileUrl": {
851851
"shape": "SensitiveStringType",
852-
"documentation": "<p>A string containing a URL that may be associated with the user.</p>"
852+
"documentation": "<p>A string containing a URL that might be associated with the user.</p>"
853853
},
854854
"Emails": {
855855
"shape": "Emails",
@@ -865,23 +865,23 @@
865865
},
866866
"UserType": {
867867
"shape": "SensitiveStringType",
868-
"documentation": "<p>A string indicating the user's type. Possible values depend on each customer's specific needs, so they are left unspecified.</p>"
868+
"documentation": "<p>A string indicating the type of user. Possible values are left unspecified. The value can vary based on your specific use case.</p>"
869869
},
870870
"Title": {
871871
"shape": "SensitiveStringType",
872-
"documentation": "<p>A string containing the user's title. Possible values are left unspecified given that they depend on each customer's specific needs.</p>"
872+
"documentation": "<p>A string containing the title of the user. Possible values are left unspecified. The value can vary based on your specific use case.</p>"
873873
},
874874
"PreferredLanguage": {
875875
"shape": "SensitiveStringType",
876876
"documentation": "<p>A string containing the preferred language of the user. For example, \"American English\" or \"en-us.\"</p>"
877877
},
878878
"Locale": {
879879
"shape": "SensitiveStringType",
880-
"documentation": "<p>A string containing the user's geographical region or location.</p>"
880+
"documentation": "<p>A string containing the geographical region or location of the user.</p>"
881881
},
882882
"Timezone": {
883883
"shape": "SensitiveStringType",
884-
"documentation": "<p>A string containing the user's time zone.</p>"
884+
"documentation": "<p>A string containing the time zone of the user.</p>"
885885
}
886886
}
887887
},
@@ -1096,7 +1096,7 @@
10961096
},
10971097
"DisplayName": {
10981098
"shape": "SensitiveStringType",
1099-
"documentation": "<p>The user's name value for display.</p>"
1099+
"documentation": "<p>The display name of the user.</p>"
11001100
},
11011101
"NickName": {
11021102
"shape": "SensitiveStringType",
@@ -1108,31 +1108,31 @@
11081108
},
11091109
"Emails": {
11101110
"shape": "Emails",
1111-
"documentation": "<p>The user's email value.</p>"
1111+
"documentation": "<p>The email address of the user.</p>"
11121112
},
11131113
"Addresses": {
11141114
"shape": "Addresses",
1115-
"documentation": "<p>The user's physical address.</p>"
1115+
"documentation": "<p>The physical address of the user.</p>"
11161116
},
11171117
"PhoneNumbers": {
11181118
"shape": "PhoneNumbers",
11191119
"documentation": "<p>A list of <code>PhoneNumber</code> objects associated with a user.</p>"
11201120
},
11211121
"UserType": {
11221122
"shape": "SensitiveStringType",
1123-
"documentation": "<p>A string indicating the user's type.</p>"
1123+
"documentation": "<p>A string indicating the type of user.</p>"
11241124
},
11251125
"Title": {
11261126
"shape": "SensitiveStringType",
1127-
"documentation": "<p>A string containing the user's title.</p>"
1127+
"documentation": "<p>A string containing the title of the user.</p>"
11281128
},
11291129
"PreferredLanguage": {
11301130
"shape": "SensitiveStringType",
11311131
"documentation": "<p>The preferred language of the user.</p>"
11321132
},
11331133
"Locale": {
11341134
"shape": "SensitiveStringType",
1135-
"documentation": "<p>A string containing the user's geographical region or location.</p>"
1135+
"documentation": "<p>A string containing the geographical region or location of the user.</p>"
11361136
},
11371137
"Timezone": {
11381138
"shape": "SensitiveStringType",
@@ -1249,7 +1249,7 @@
12491249
},
12501250
"AlternateIdentifier": {
12511251
"shape": "AlternateIdentifier",
1252-
"documentation": "<p>A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For example, a unique <code>GroupDisplayName</code>.</p>"
1252+
"documentation": "<p>A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For the unique attribute, the only valid path is <code>displayName</code>.</p>"
12531253
}
12541254
}
12551255
},
@@ -1322,7 +1322,7 @@
13221322
},
13231323
"AlternateIdentifier": {
13241324
"shape": "AlternateIdentifier",
1325-
"documentation": "<p>A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For example, a unique <code>UserDisplayName</code>.</p>"
1325+
"documentation": "<p>A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For the unique attribute, the only valid paths are <code>userName</code> and <code>emails.value</code>.</p>"
13261326
}
13271327
}
13281328
},
@@ -1356,7 +1356,7 @@
13561356
},
13571357
"DisplayName": {
13581358
"shape": "GroupDisplayName",
1359-
"documentation": "<p>The group’s display name value. The length limit is 1,024 characters. This value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time the group is created and stored as an attribute of the group object in the identity store.</p>"
1359+
"documentation": "<p>The display name value for the group. The length limit is 1,024 characters. This value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time the group is created and stored as an attribute of the group object in the identity store.</p>"
13601360
},
13611361
"ExternalIds": {
13621362
"shape": "ExternalIds",
@@ -1371,7 +1371,7 @@
13711371
"documentation": "<p>The globally unique identifier for the identity store.</p>"
13721372
}
13731373
},
1374-
"documentation": "<p>A group object that contains a specified group’s metadata and attributes.</p>"
1374+
"documentation": "<p>A group object that contains the metadata and attributes for a specified group.</p>"
13751375
},
13761376
"GroupDisplayName": {
13771377
"type": "string",
@@ -1842,19 +1842,19 @@
18421842
},
18431843
"Name": {
18441844
"shape": "Name",
1845-
"documentation": "<p>An object containing the user's name.</p>"
1845+
"documentation": "<p>An object containing the name of the user.</p>"
18461846
},
18471847
"DisplayName": {
18481848
"shape": "SensitiveStringType",
1849-
"documentation": "<p>A string containing the user's name that's formatted for display when the user is referenced. For example, \"John Doe.\"</p>"
1849+
"documentation": "<p>A string containing the name of the user that is formatted for display when the user is referenced. For example, \"John Doe.\"</p>"
18501850
},
18511851
"NickName": {
18521852
"shape": "SensitiveStringType",
18531853
"documentation": "<p>A string containing an alternate name for the user.</p>"
18541854
},
18551855
"ProfileUrl": {
18561856
"shape": "SensitiveStringType",
1857-
"documentation": "<p>A string containing a URL that may be associated with the user.</p>"
1857+
"documentation": "<p>A string containing a URL that might be associated with the user.</p>"
18581858
},
18591859
"Emails": {
18601860
"shape": "Emails",
@@ -1870,30 +1870,30 @@
18701870
},
18711871
"UserType": {
18721872
"shape": "SensitiveStringType",
1873-
"documentation": "<p>A string indicating the user's type. Possible values depend on each customer's specific needs, so they are left unspecified.</p>"
1873+
"documentation": "<p>A string indicating the type of user. Possible values are left unspecified. The value can vary based on your specific use case.</p>"
18741874
},
18751875
"Title": {
18761876
"shape": "SensitiveStringType",
1877-
"documentation": "<p>A string containing the user's title. Possible values depend on each customer's specific needs, so they are left unspecified.</p>"
1877+
"documentation": "<p>A string containing the title of the user. Possible values are left unspecified. The value can vary based on your specific use case.</p>"
18781878
},
18791879
"PreferredLanguage": {
18801880
"shape": "SensitiveStringType",
18811881
"documentation": "<p>A string containing the preferred language of the user. For example, \"American English\" or \"en-us.\"</p>"
18821882
},
18831883
"Locale": {
18841884
"shape": "SensitiveStringType",
1885-
"documentation": "<p>A string containing the user's geographical region or location.</p>"
1885+
"documentation": "<p>A string containing the geographical region or location of the user.</p>"
18861886
},
18871887
"Timezone": {
18881888
"shape": "SensitiveStringType",
1889-
"documentation": "<p>A string containing the user's time zone.</p>"
1889+
"documentation": "<p>A string containing the time zone of the user.</p>"
18901890
},
18911891
"IdentityStoreId": {
18921892
"shape": "IdentityStoreId",
18931893
"documentation": "<p>The globally unique identifier for the identity store.</p>"
18941894
}
18951895
},
1896-
"documentation": "<p>A user object that contains a specified user’s metadata and attributes.</p>"
1896+
"documentation": "<p>A user object that contains the metadata and attributes for a specified user.</p>"
18971897
},
18981898
"UserName": {
18991899
"type": "string",
@@ -1909,5 +1909,5 @@
19091909
}
19101910
}
19111911
},
1912-
"documentation": "<p>The Identity Store service used by AWS IAM Identity Center (successor to AWS Single Sign-On) provides a single place to retrieve all of your identities (users and groups). For more information, see the <a href=\"https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html\">IAM Identity Center User Guide</a>.</p> <pre><code> &lt;note&gt; &lt;p&gt;Although AWS Single Sign-On was renamed, the &lt;code&gt;sso&lt;/code&gt; and &lt;code&gt;identitystore&lt;/code&gt; API namespaces will continue to retain their original name for backward compatibility purposes. For more information, see &lt;a href=&quot;https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html#renamed&quot;&gt;IAM Identity Center rename&lt;/a&gt;.&lt;/p&gt; &lt;/note&gt; &lt;p&gt;This reference guide describes the identity store operations that you can call programatically and includes detailed information on data types and errors.&lt;/p&gt; </code></pre>"
1912+
"documentation": "<p>The Identity Store service used by AWS IAM Identity Center (successor to AWS Single Sign-On) provides a single place to retrieve all of your identities (users and groups). For more information, see the <a href=\"https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html\">IAM Identity Center User Guide</a>.</p> <pre><code> &lt;note&gt; &lt;p&gt;Although AWS Single Sign-On was renamed, the &lt;code&gt;sso&lt;/code&gt; and &lt;code&gt;identitystore&lt;/code&gt; API namespaces will continue to retain their original name for backward compatibility purposes. For more information, see &lt;a href=&quot;https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html#renamed&quot;&gt;IAM Identity Center rename&lt;/a&gt;.&lt;/p&gt; &lt;/note&gt; &lt;p&gt;This reference guide describes the identity store operations that you can call programatically and includes detailed information about data types and errors.&lt;/p&gt; </code></pre>"
19131913
}

apis/ivs-realtime-2020-07-14.min.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -333,10 +333,14 @@
333333
"type": "integer"
334334
},
335335
"expirationTime": {
336-
"type": "timestamp"
336+
"type": "timestamp",
337+
"timestampFormat": "iso8601"
337338
},
338339
"participantId": {},
339-
"token": {},
340+
"token": {
341+
"type": "string",
342+
"sensitive": true
343+
},
340344
"userId": {}
341345
}
342346
},

0 commit comments

Comments
 (0)