@aws-sdk/client-keyspaces 3.515.0 → 3.517.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.
|
@@ -31,6 +31,24 @@ declare const GetTableAutoScalingSettingsCommand_base: {
|
|
|
31
31
|
* <p>Amazon Keyspaces auto scaling helps you provision throughput capacity for variable workloads efficiently by increasing and decreasing
|
|
32
32
|
* your table's read and write capacity automatically in response to application traffic. For more information, see <a href="https://docs.aws.amazon.com/keyspaces/latest/devguide/autoscaling.html">Managing throughput capacity automatically with Amazon Keyspaces auto scaling</a> in the <i>Amazon Keyspaces Developer
|
|
33
33
|
* Guide</i>.</p>
|
|
34
|
+
* <important>
|
|
35
|
+
* <p>
|
|
36
|
+
* <code>GetTableAutoScalingSettings</code> can't be used as an action in an IAM policy.</p>
|
|
37
|
+
* </important>
|
|
38
|
+
* <p>To define permissions for <code>GetTableAutoScalingSettings</code>, you must allow the following two actions in the IAM policy statement's
|
|
39
|
+
* <code>Action</code> element:</p>
|
|
40
|
+
* <ul>
|
|
41
|
+
* <li>
|
|
42
|
+
* <p>
|
|
43
|
+
* <code>application-autoscaling:DescribeScalableTargets</code>
|
|
44
|
+
* </p>
|
|
45
|
+
* </li>
|
|
46
|
+
* <li>
|
|
47
|
+
* <p>
|
|
48
|
+
* <code>application-autoscaling:DescribeScalingPolicies</code>
|
|
49
|
+
* </p>
|
|
50
|
+
* </li>
|
|
51
|
+
* </ul>
|
|
34
52
|
* @example
|
|
35
53
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
54
|
* ```javascript
|
|
@@ -66,8 +66,8 @@ export interface AutoScalingPolicy {
|
|
|
66
66
|
* <p>The optional auto scaling settings for a table with provisioned throughput capacity.</p>
|
|
67
67
|
* <p>To turn on auto scaling for a table in <code>throughputMode:PROVISIONED</code>,
|
|
68
68
|
* you must specify the following parameters. </p>
|
|
69
|
-
* <p>Configure the minimum and maximum units
|
|
70
|
-
* minimum or above the maximum range.</p>
|
|
69
|
+
* <p>Configure the minimum and maximum capacity units. The auto scaling policy ensures that
|
|
70
|
+
* capacity never goes below the minimum or above the maximum range.</p>
|
|
71
71
|
* <ul>
|
|
72
72
|
* <li>
|
|
73
73
|
* <p>
|
|
@@ -83,7 +83,7 @@ export interface AutoScalingPolicy {
|
|
|
83
83
|
* <li>
|
|
84
84
|
* <p>
|
|
85
85
|
* <code>scalingPolicy</code>: Amazon Keyspaces supports the <code>target tracking</code> scaling policy.
|
|
86
|
-
* The auto scaling target is the provisioned
|
|
86
|
+
* The auto scaling target is the provisioned capacity of the table.
|
|
87
87
|
* </p>
|
|
88
88
|
* <ul>
|
|
89
89
|
* <li>
|
|
@@ -151,7 +151,7 @@ export interface AutoScalingSettings {
|
|
|
151
151
|
}
|
|
152
152
|
/**
|
|
153
153
|
* @public
|
|
154
|
-
* <p>The optional auto scaling settings for
|
|
154
|
+
* <p>The optional auto scaling capacity settings for a table in provisioned capacity mode.</p>
|
|
155
155
|
*/
|
|
156
156
|
export interface AutoScalingSpecification {
|
|
157
157
|
/**
|
|
@@ -933,7 +933,7 @@ export interface CreateTableRequest {
|
|
|
933
933
|
* automatically on your behalf.</p>
|
|
934
934
|
* <p>Auto scaling helps you provision throughput capacity for variable workloads efficiently by increasing and decreasing
|
|
935
935
|
* your table's read and write capacity automatically in response to application traffic. For more information, see <a href="https://docs.aws.amazon.com/keyspaces/latest/devguide/autoscaling.html">Managing throughput capacity automatically with Amazon Keyspaces auto scaling</a> in the <i>Amazon Keyspaces Developer
|
|
936
|
-
*
|
|
936
|
+
* Guide</i>.</p>
|
|
937
937
|
* <p>By default, auto scaling is disabled for a table. </p>
|
|
938
938
|
*/
|
|
939
939
|
autoScalingSpecification?: AutoScalingSpecification;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-keyspaces",
|
|
3
3
|
"description": "AWS SDK for JavaScript Keyspaces Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.517.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-keyspaces",
|