aws-sdk 2.1465.0 → 2.1467.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.
Files changed (40) hide show
  1. package/CHANGELOG.md +16 -1
  2. package/README.md +1 -1
  3. package/apis/bedrock-2023-04-20.examples.json +5 -0
  4. package/apis/bedrock-2023-04-20.min.json +816 -0
  5. package/apis/bedrock-2023-04-20.paginators.json +16 -0
  6. package/apis/bedrock-runtime-2023-09-30.examples.json +5 -0
  7. package/apis/bedrock-runtime-2023-09-30.min.json +180 -0
  8. package/apis/bedrock-runtime-2023-09-30.paginators.json +4 -0
  9. package/apis/cognito-idp-2016-04-18.examples.json +0 -77
  10. package/apis/cognito-idp-2016-04-18.min.json +8 -2
  11. package/apis/ec2-2016-11-15.min.json +1292 -1235
  12. package/apis/firehose-2015-08-04.min.json +69 -30
  13. package/apis/iot-2015-05-28.min.json +142 -128
  14. package/apis/iotfleetwise-2021-06-17.min.json +62 -13
  15. package/apis/metadata.json +7 -0
  16. package/apis/sagemaker-2017-07-24.min.json +681 -662
  17. package/apis/sagemaker-featurestore-runtime-2020-07-01.min.json +9 -6
  18. package/clients/all.d.ts +2 -0
  19. package/clients/all.js +3 -1
  20. package/clients/bedrock.d.ts +840 -0
  21. package/clients/bedrock.js +18 -0
  22. package/clients/bedrockruntime.d.ts +138 -0
  23. package/clients/bedrockruntime.js +18 -0
  24. package/clients/budgets.d.ts +8 -7
  25. package/clients/cognitoidentityserviceprovider.d.ts +1 -1
  26. package/clients/ec2.d.ts +69 -4
  27. package/clients/firehose.d.ts +59 -9
  28. package/clients/iot.d.ts +46 -29
  29. package/clients/iotfleetwise.d.ts +71 -1
  30. package/clients/sagemaker.d.ts +58 -31
  31. package/clients/sagemakerfeaturestoreruntime.d.ts +7 -2
  32. package/clients/textract.d.ts +5 -5
  33. package/clients/wafv2.d.ts +2 -2
  34. package/dist/aws-sdk-core-react-native.js +2 -2
  35. package/dist/aws-sdk-react-native.js +85 -11
  36. package/dist/aws-sdk.js +1521 -1398
  37. package/dist/aws-sdk.min.js +84 -84
  38. package/lib/config_service_placeholders.d.ts +4 -0
  39. package/lib/core.js +1 -1
  40. package/package.json +1 -1
@@ -0,0 +1,16 @@
1
+ {
2
+ "pagination": {
3
+ "ListCustomModels": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults",
7
+ "result_key": "modelSummaries"
8
+ },
9
+ "ListModelCustomizationJobs": {
10
+ "input_token": "nextToken",
11
+ "output_token": "nextToken",
12
+ "limit_key": "maxResults",
13
+ "result_key": "modelCustomizationJobSummaries"
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,180 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2023-09-30",
5
+ "endpointPrefix": "bedrock-runtime",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceFullName": "Amazon Bedrock Runtime",
9
+ "serviceId": "Bedrock Runtime",
10
+ "signatureVersion": "v4",
11
+ "signingName": "bedrock",
12
+ "uid": "bedrock-runtime-2023-09-30"
13
+ },
14
+ "operations": {
15
+ "InvokeModel": {
16
+ "http": {
17
+ "requestUri": "/model/{modelId}/invoke",
18
+ "responseCode": 200
19
+ },
20
+ "input": {
21
+ "type": "structure",
22
+ "required": [
23
+ "body",
24
+ "modelId"
25
+ ],
26
+ "members": {
27
+ "accept": {
28
+ "location": "header",
29
+ "locationName": "Accept"
30
+ },
31
+ "body": {
32
+ "shape": "S3"
33
+ },
34
+ "contentType": {
35
+ "location": "header",
36
+ "locationName": "Content-Type"
37
+ },
38
+ "modelId": {
39
+ "location": "uri",
40
+ "locationName": "modelId"
41
+ }
42
+ },
43
+ "payload": "body"
44
+ },
45
+ "output": {
46
+ "type": "structure",
47
+ "required": [
48
+ "body",
49
+ "contentType"
50
+ ],
51
+ "members": {
52
+ "body": {
53
+ "shape": "S3"
54
+ },
55
+ "contentType": {
56
+ "location": "header",
57
+ "locationName": "Content-Type"
58
+ }
59
+ },
60
+ "payload": "body"
61
+ }
62
+ },
63
+ "InvokeModelWithResponseStream": {
64
+ "http": {
65
+ "requestUri": "/model/{modelId}/invoke-with-response-stream",
66
+ "responseCode": 200
67
+ },
68
+ "input": {
69
+ "type": "structure",
70
+ "required": [
71
+ "body",
72
+ "modelId"
73
+ ],
74
+ "members": {
75
+ "accept": {
76
+ "location": "header",
77
+ "locationName": "X-Amzn-Bedrock-Accept"
78
+ },
79
+ "body": {
80
+ "shape": "S3"
81
+ },
82
+ "contentType": {
83
+ "location": "header",
84
+ "locationName": "Content-Type"
85
+ },
86
+ "modelId": {
87
+ "location": "uri",
88
+ "locationName": "modelId"
89
+ }
90
+ },
91
+ "payload": "body"
92
+ },
93
+ "output": {
94
+ "type": "structure",
95
+ "required": [
96
+ "body",
97
+ "contentType"
98
+ ],
99
+ "members": {
100
+ "body": {
101
+ "type": "structure",
102
+ "members": {
103
+ "chunk": {
104
+ "type": "structure",
105
+ "members": {
106
+ "bytes": {
107
+ "type": "blob",
108
+ "sensitive": true
109
+ }
110
+ },
111
+ "event": true,
112
+ "sensitive": true
113
+ },
114
+ "internalServerException": {
115
+ "type": "structure",
116
+ "members": {
117
+ "message": {}
118
+ },
119
+ "error": {
120
+ "httpStatusCode": 500
121
+ },
122
+ "exception": true,
123
+ "fault": true
124
+ },
125
+ "modelStreamErrorException": {
126
+ "type": "structure",
127
+ "members": {
128
+ "message": {},
129
+ "originalMessage": {},
130
+ "originalStatusCode": {
131
+ "type": "integer"
132
+ }
133
+ },
134
+ "error": {
135
+ "httpStatusCode": 424,
136
+ "senderFault": true
137
+ },
138
+ "exception": true
139
+ },
140
+ "throttlingException": {
141
+ "type": "structure",
142
+ "members": {
143
+ "message": {}
144
+ },
145
+ "error": {
146
+ "httpStatusCode": 429,
147
+ "senderFault": true
148
+ },
149
+ "exception": true
150
+ },
151
+ "validationException": {
152
+ "type": "structure",
153
+ "members": {
154
+ "message": {}
155
+ },
156
+ "error": {
157
+ "httpStatusCode": 400,
158
+ "senderFault": true
159
+ },
160
+ "exception": true
161
+ }
162
+ },
163
+ "eventstream": true
164
+ },
165
+ "contentType": {
166
+ "location": "header",
167
+ "locationName": "X-Amzn-Bedrock-Content-Type"
168
+ }
169
+ },
170
+ "payload": "body"
171
+ }
172
+ }
173
+ },
174
+ "shapes": {
175
+ "S3": {
176
+ "type": "blob",
177
+ "sensitive": true
178
+ }
179
+ }
180
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -695,83 +695,6 @@
695
695
  }
696
696
  ],
697
697
  "ListUsers": [
698
- {
699
- "input": {
700
- "AttributesToGet": [
701
- "email",
702
- "sub"
703
- ],
704
- "Filter": "\"email\"^=\"testuser\"",
705
- "Limit": 3,
706
- "PaginationToken": "abcd1234EXAMPLE",
707
- "UserPoolId": "us-east-1_EXAMPLE"
708
- },
709
- "output": {
710
- "PaginationToken": "efgh5678EXAMPLE",
711
- "Users": [
712
- {
713
- "Attributes": [
714
- {
715
- "Name": "sub",
716
- "Value": "eaad0219-2117-439f-8d46-4db20e59268f"
717
- },
718
- {
719
- "Name": "email",
720
- "Value": "testuser@example.com"
721
- }
722
- ],
723
- "Enabled": true,
724
- "UserCreateDate": 1682955829.578,
725
- "UserLastModifiedDate": 1689030181.63,
726
- "UserStatus": "CONFIRMED",
727
- "Username": "testuser"
728
- },
729
- {
730
- "Attributes": [
731
- {
732
- "Name": "sub",
733
- "Value": "3b994cfd-0b07-4581-be46-3c82f9a70c90"
734
- },
735
- {
736
- "Name": "email",
737
- "Value": "testuser2@example.com"
738
- }
739
- ],
740
- "Enabled": true,
741
- "UserCreateDate": 1684427979.201,
742
- "UserLastModifiedDate": 1684427979.201,
743
- "UserStatus": "UNCONFIRMED",
744
- "Username": "testuser2"
745
- },
746
- {
747
- "Attributes": [
748
- {
749
- "Name": "sub",
750
- "Value": "5929e0d1-4c34-42d1-9b79-a5ecacfe66f7"
751
- },
752
- {
753
- "Name": "email",
754
- "Value": "testuser3@example.com"
755
- }
756
- ],
757
- "Enabled": true,
758
- "UserCreateDate": 1684427823.641,
759
- "UserLastModifiedDate": 1684427823.641,
760
- "UserStatus": "UNCONFIRMED",
761
- "Username": "testuser3@example.com"
762
- }
763
- ]
764
- },
765
- "comments": {
766
- "input": {
767
- },
768
- "output": {
769
- }
770
- },
771
- "description": "This request submits a value for all possible parameters for ListUsers. By iterating the PaginationToken, you can page through and collect all users in a user pool.",
772
- "id": "a-listusers-request-for-the-next-3-users-whose-email-address-starts-with-testuser-1689977648246",
773
- "title": "A ListUsers request for the next 3 users whose email address starts with \"testuser.\""
774
- },
775
698
  {
776
699
  "input": {
777
700
  "AttributesToGet": [
@@ -2073,7 +2073,10 @@
2073
2073
  "LambdaConfig": {
2074
2074
  "shape": "S4z"
2075
2075
  },
2076
- "Status": {},
2076
+ "Status": {
2077
+ "deprecated": true,
2078
+ "deprecatedMessage": "This property is no longer available."
2079
+ },
2077
2080
  "LastModifiedDate": {
2078
2081
  "type": "timestamp"
2079
2082
  },
@@ -3512,7 +3515,10 @@
3512
3515
  "LambdaConfig": {
3513
3516
  "shape": "S4z"
3514
3517
  },
3515
- "Status": {},
3518
+ "Status": {
3519
+ "deprecated": true,
3520
+ "deprecatedMessage": "This property is no longer available."
3521
+ },
3516
3522
  "LastModifiedDate": {
3517
3523
  "type": "timestamp"
3518
3524
  },