@aws-sdk/client-migrationhub-config 3.379.1 → 3.385.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.
|
@@ -32,10 +32,12 @@ export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
|
32
32
|
*/
|
|
33
33
|
export interface Target {
|
|
34
34
|
/**
|
|
35
|
+
* @public
|
|
35
36
|
* <p>The target type is always an <code>ACCOUNT</code>.</p>
|
|
36
37
|
*/
|
|
37
38
|
Type: TargetType | string | undefined;
|
|
38
39
|
/**
|
|
40
|
+
* @public
|
|
39
41
|
* <p>The <code>TargetID</code> is a 12-character identifier of the <code>ACCOUNT</code> for
|
|
40
42
|
* which the control was created. (This must be the current account.) </p>
|
|
41
43
|
*/
|
|
@@ -46,15 +48,18 @@ export interface Target {
|
|
|
46
48
|
*/
|
|
47
49
|
export interface CreateHomeRegionControlRequest {
|
|
48
50
|
/**
|
|
51
|
+
* @public
|
|
49
52
|
* <p>The name of the home region of the calling account.</p>
|
|
50
53
|
*/
|
|
51
54
|
HomeRegion: string | undefined;
|
|
52
55
|
/**
|
|
56
|
+
* @public
|
|
53
57
|
* <p>The account for which this command sets up a home region control. The <code>Target</code>
|
|
54
58
|
* is always of type <code>ACCOUNT</code>.</p>
|
|
55
59
|
*/
|
|
56
60
|
Target: Target | undefined;
|
|
57
61
|
/**
|
|
62
|
+
* @public
|
|
58
63
|
* <p>Optional Boolean flag to indicate whether any effect should take place. It tests whether
|
|
59
64
|
* the caller has permission to make the call.</p>
|
|
60
65
|
*/
|
|
@@ -68,22 +73,26 @@ export interface CreateHomeRegionControlRequest {
|
|
|
68
73
|
*/
|
|
69
74
|
export interface HomeRegionControl {
|
|
70
75
|
/**
|
|
76
|
+
* @public
|
|
71
77
|
* <p>A unique identifier that's generated for each home region control. It's always a string
|
|
72
78
|
* that begins with "hrc-" followed by 12 lowercase letters and numbers.</p>
|
|
73
79
|
*/
|
|
74
80
|
ControlId?: string;
|
|
75
81
|
/**
|
|
82
|
+
* @public
|
|
76
83
|
* <p>The AWS Region that's been set as home region. For example, "us-west-2" or "eu-central-1"
|
|
77
84
|
* are valid home regions.</p>
|
|
78
85
|
*/
|
|
79
86
|
HomeRegion?: string;
|
|
80
87
|
/**
|
|
88
|
+
* @public
|
|
81
89
|
* <p>The target parameter specifies the identifier to which the home region is applied, which
|
|
82
90
|
* is always an <code>ACCOUNT</code>. It applies the home region to the current
|
|
83
91
|
* <code>ACCOUNT</code>.</p>
|
|
84
92
|
*/
|
|
85
93
|
Target?: Target;
|
|
86
94
|
/**
|
|
95
|
+
* @public
|
|
87
96
|
* <p>A timestamp representing the time when the customer called
|
|
88
97
|
* <code>CreateHomeregionControl</code> and set the home region for the account.</p>
|
|
89
98
|
*/
|
|
@@ -94,6 +103,7 @@ export interface HomeRegionControl {
|
|
|
94
103
|
*/
|
|
95
104
|
export interface CreateHomeRegionControlResult {
|
|
96
105
|
/**
|
|
106
|
+
* @public
|
|
97
107
|
* <p>This object is the <code>HomeRegionControl</code> object that's returned by a successful
|
|
98
108
|
* call to <code>CreateHomeRegionControl</code>.</p>
|
|
99
109
|
*/
|
|
@@ -164,6 +174,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
164
174
|
readonly $fault: "client";
|
|
165
175
|
Message: string | undefined;
|
|
166
176
|
/**
|
|
177
|
+
* @public
|
|
167
178
|
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
168
179
|
*/
|
|
169
180
|
RetryAfterSeconds?: number;
|
|
@@ -177,25 +188,30 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
177
188
|
*/
|
|
178
189
|
export interface DescribeHomeRegionControlsRequest {
|
|
179
190
|
/**
|
|
191
|
+
* @public
|
|
180
192
|
* <p>The <code>ControlID</code> is a unique identifier string of your
|
|
181
193
|
* <code>HomeRegionControl</code> object.</p>
|
|
182
194
|
*/
|
|
183
195
|
ControlId?: string;
|
|
184
196
|
/**
|
|
197
|
+
* @public
|
|
185
198
|
* <p>The name of the home region you'd like to view.</p>
|
|
186
199
|
*/
|
|
187
200
|
HomeRegion?: string;
|
|
188
201
|
/**
|
|
202
|
+
* @public
|
|
189
203
|
* <p>The target parameter specifies the identifier to which the home region is applied, which
|
|
190
204
|
* is always of type <code>ACCOUNT</code>. It applies the home region to the current
|
|
191
205
|
* <code>ACCOUNT</code>.</p>
|
|
192
206
|
*/
|
|
193
207
|
Target?: Target;
|
|
194
208
|
/**
|
|
209
|
+
* @public
|
|
195
210
|
* <p>The maximum number of filtering results to display per page. </p>
|
|
196
211
|
*/
|
|
197
212
|
MaxResults?: number;
|
|
198
213
|
/**
|
|
214
|
+
* @public
|
|
199
215
|
* <p>If a <code>NextToken</code> was returned by a previous call, more results are available.
|
|
200
216
|
* To retrieve the next page of results, make the call again using the returned token in
|
|
201
217
|
* <code>NextToken</code>.</p>
|
|
@@ -207,10 +223,12 @@ export interface DescribeHomeRegionControlsRequest {
|
|
|
207
223
|
*/
|
|
208
224
|
export interface DescribeHomeRegionControlsResult {
|
|
209
225
|
/**
|
|
226
|
+
* @public
|
|
210
227
|
* <p>An array that contains your <code>HomeRegionControl</code> objects.</p>
|
|
211
228
|
*/
|
|
212
229
|
HomeRegionControls?: HomeRegionControl[];
|
|
213
230
|
/**
|
|
231
|
+
* @public
|
|
214
232
|
* <p>If a <code>NextToken</code> was returned by a previous call, more results are available.
|
|
215
233
|
* To retrieve the next page of results, make the call again using the returned token in
|
|
216
234
|
* <code>NextToken</code>.</p>
|
|
@@ -227,6 +245,7 @@ export interface GetHomeRegionRequest {
|
|
|
227
245
|
*/
|
|
228
246
|
export interface GetHomeRegionResult {
|
|
229
247
|
/**
|
|
248
|
+
* @public
|
|
230
249
|
* <p>The name of the home region of the calling account.</p>
|
|
231
250
|
*/
|
|
232
251
|
HomeRegion?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migrationhub-config",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migrationhub Config Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.385.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.385.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.385.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|