aws-sdk 2.1584.0 → 2.1586.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/README.md +1 -1
- package/apis/bedrock-agent-runtime-2023-07-26.min.json +14 -0
- package/apis/ce-2017-10-25.min.json +52 -0
- package/apis/ce-2017-10-25.paginators.json +5 -0
- package/apis/codebuild-2016-10-06.min.json +2 -1
- package/apis/ec2-2016-11-15.min.json +130 -73
- package/apis/finspace-2021-03-12.min.json +60 -27
- package/apis/globalaccelerator-2018-08-08.min.json +2 -3
- package/apis/medialive-2017-10-14.min.json +219 -199
- package/clients/bedrockagentruntime.d.ts +26 -9
- package/clients/codebuild.d.ts +16 -12
- package/clients/costexplorer.d.ts +72 -0
- package/clients/ec2.d.ts +90 -6
- package/clients/ecs.d.ts +15 -15
- package/clients/finspace.d.ts +31 -2
- package/clients/globalaccelerator.d.ts +41 -33
- package/clients/medialive.d.ts +37 -0
- package/clients/sagemaker.d.ts +1 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +9 -9
- package/dist/aws-sdk.js +192 -77
- package/dist/aws-sdk.min.js +102 -102
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
64
64
|
To use the SDK in the browser, simply add the following script tag to your
|
65
65
|
HTML pages:
|
66
66
|
|
67
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
67
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1586.0.min.js"></script>
|
68
68
|
|
69
69
|
You can also build a custom browser SDK with your specified set of AWS services.
|
70
70
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -510,6 +510,20 @@
|
|
510
510
|
"modelArn"
|
511
511
|
],
|
512
512
|
"members": {
|
513
|
+
"generationConfiguration": {
|
514
|
+
"type": "structure",
|
515
|
+
"members": {
|
516
|
+
"promptTemplate": {
|
517
|
+
"type": "structure",
|
518
|
+
"members": {
|
519
|
+
"textPromptTemplate": {
|
520
|
+
"type": "string",
|
521
|
+
"sensitive": true
|
522
|
+
}
|
523
|
+
}
|
524
|
+
}
|
525
|
+
}
|
526
|
+
},
|
513
527
|
"knowledgeBaseId": {},
|
514
528
|
"modelArn": {},
|
515
529
|
"retrievalConfiguration": {
|
@@ -1483,6 +1483,29 @@
|
|
1483
1483
|
}
|
1484
1484
|
}
|
1485
1485
|
},
|
1486
|
+
"ListCostAllocationTagBackfillHistory": {
|
1487
|
+
"input": {
|
1488
|
+
"type": "structure",
|
1489
|
+
"members": {
|
1490
|
+
"NextToken": {},
|
1491
|
+
"MaxResults": {
|
1492
|
+
"type": "integer"
|
1493
|
+
}
|
1494
|
+
}
|
1495
|
+
},
|
1496
|
+
"output": {
|
1497
|
+
"type": "structure",
|
1498
|
+
"members": {
|
1499
|
+
"BackfillRequests": {
|
1500
|
+
"type": "list",
|
1501
|
+
"member": {
|
1502
|
+
"shape": "S7t"
|
1503
|
+
}
|
1504
|
+
},
|
1505
|
+
"NextToken": {}
|
1506
|
+
}
|
1507
|
+
}
|
1508
|
+
},
|
1486
1509
|
"ListCostAllocationTags": {
|
1487
1510
|
"input": {
|
1488
1511
|
"type": "structure",
|
@@ -1640,6 +1663,25 @@
|
|
1640
1663
|
}
|
1641
1664
|
}
|
1642
1665
|
},
|
1666
|
+
"StartCostAllocationTagBackfill": {
|
1667
|
+
"input": {
|
1668
|
+
"type": "structure",
|
1669
|
+
"required": [
|
1670
|
+
"BackfillFrom"
|
1671
|
+
],
|
1672
|
+
"members": {
|
1673
|
+
"BackfillFrom": {}
|
1674
|
+
}
|
1675
|
+
},
|
1676
|
+
"output": {
|
1677
|
+
"type": "structure",
|
1678
|
+
"members": {
|
1679
|
+
"BackfillRequest": {
|
1680
|
+
"shape": "S7t"
|
1681
|
+
}
|
1682
|
+
}
|
1683
|
+
}
|
1684
|
+
},
|
1643
1685
|
"StartSavingsPlansPurchaseRecommendationGeneration": {
|
1644
1686
|
"input": {
|
1645
1687
|
"type": "structure",
|
@@ -2330,6 +2372,16 @@
|
|
2330
2372
|
"shape": "S7a"
|
2331
2373
|
}
|
2332
2374
|
}
|
2375
|
+
},
|
2376
|
+
"S7t": {
|
2377
|
+
"type": "structure",
|
2378
|
+
"members": {
|
2379
|
+
"BackfillFrom": {},
|
2380
|
+
"RequestedAt": {},
|
2381
|
+
"CompletedAt": {},
|
2382
|
+
"BackfillStatus": {},
|
2383
|
+
"LastUpdatedAt": {}
|
2384
|
+
}
|
2333
2385
|
}
|
2334
2386
|
}
|
2335
2387
|
}
|
@@ -10,6 +10,11 @@
|
|
10
10
|
"output_token": "NextToken",
|
11
11
|
"limit_key": "MaxResults"
|
12
12
|
},
|
13
|
+
"ListCostAllocationTagBackfillHistory": {
|
14
|
+
"input_token": "NextToken",
|
15
|
+
"output_token": "NextToken",
|
16
|
+
"limit_key": "MaxResults"
|
17
|
+
},
|
13
18
|
"ListCostAllocationTags": {
|
14
19
|
"input_token": "NextToken",
|
15
20
|
"output_token": "NextToken",
|