cdk-lambda-subminute 2.0.374 → 2.0.376
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/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +375 -24
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +2 -1
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +61 -24
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +17 -15
- package/node_modules/aws-sdk/apis/qbusiness-2023-11-27.min.json +85 -30
- package/node_modules/aws-sdk/clients/controltower.d.ts +374 -11
- package/node_modules/aws-sdk/clients/lightsail.d.ts +4 -0
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +48 -7
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +11 -2
- package/node_modules/aws-sdk/clients/qbusiness.d.ts +67 -3
- package/node_modules/aws-sdk/clients/securitylake.d.ts +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +84 -94
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +2127 -2147
- package/node_modules/aws-sdk/dist/aws-sdk.js +20 -18
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +7 -7
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/call-bind/CHANGELOG.md +7 -0
- package/node_modules/call-bind/index.js +1 -10
- package/node_modules/call-bind/package.json +4 -3
- package/node_modules/define-data-property/CHANGELOG.md +7 -0
- package/node_modules/define-data-property/index.js +1 -13
- package/node_modules/define-data-property/package.json +4 -5
- package/node_modules/es-define-property/.eslintrc +13 -0
- package/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/node_modules/es-define-property/.nycrc +9 -0
- package/node_modules/es-define-property/CHANGELOG.md +15 -0
- package/node_modules/es-define-property/LICENSE +21 -0
- package/node_modules/es-define-property/README.md +49 -0
- package/node_modules/es-define-property/index.d.ts +3 -0
- package/node_modules/es-define-property/index.js +16 -0
- package/node_modules/es-define-property/package.json +81 -0
- package/node_modules/es-define-property/test/index.js +55 -0
- package/node_modules/es-define-property/tsconfig.json +50 -0
- package/node_modules/has-property-descriptors/CHANGELOG.md +8 -0
- package/node_modules/has-property-descriptors/index.js +3 -14
- package/node_modules/has-property-descriptors/package.json +5 -5
- package/package.json +3 -3
@@ -28,13 +28,29 @@ declare class ControlTower extends Service {
|
|
28
28
|
*/
|
29
29
|
deleteLandingZone(callback?: (err: AWSError, data: ControlTower.Types.DeleteLandingZoneOutput) => void): Request<ControlTower.Types.DeleteLandingZoneOutput, AWSError>;
|
30
30
|
/**
|
31
|
-
*
|
31
|
+
* Disable an EnabledBaseline resource on the specified Target. This API starts an asynchronous operation to remove all resources deployed as part of the baseline enablement. The resource will vary depending on the enabled baseline.
|
32
|
+
*/
|
33
|
+
disableBaseline(params: ControlTower.Types.DisableBaselineInput, callback?: (err: AWSError, data: ControlTower.Types.DisableBaselineOutput) => void): Request<ControlTower.Types.DisableBaselineOutput, AWSError>;
|
34
|
+
/**
|
35
|
+
* Disable an EnabledBaseline resource on the specified Target. This API starts an asynchronous operation to remove all resources deployed as part of the baseline enablement. The resource will vary depending on the enabled baseline.
|
36
|
+
*/
|
37
|
+
disableBaseline(callback?: (err: AWSError, data: ControlTower.Types.DisableBaselineOutput) => void): Request<ControlTower.Types.DisableBaselineOutput, AWSError>;
|
38
|
+
/**
|
39
|
+
* This API call turns off a control. It starts an asynchronous operation that deletes AWS resources on the specified organizational unit and the accounts it contains. The resources will vary according to the control that you specify. For usage examples, see the Amazon Web Services Control Tower User Guide .
|
32
40
|
*/
|
33
41
|
disableControl(params: ControlTower.Types.DisableControlInput, callback?: (err: AWSError, data: ControlTower.Types.DisableControlOutput) => void): Request<ControlTower.Types.DisableControlOutput, AWSError>;
|
34
42
|
/**
|
35
|
-
* This API call turns off a control. It starts an asynchronous operation that deletes
|
43
|
+
* This API call turns off a control. It starts an asynchronous operation that deletes AWS resources on the specified organizational unit and the accounts it contains. The resources will vary according to the control that you specify. For usage examples, see the Amazon Web Services Control Tower User Guide .
|
36
44
|
*/
|
37
45
|
disableControl(callback?: (err: AWSError, data: ControlTower.Types.DisableControlOutput) => void): Request<ControlTower.Types.DisableControlOutput, AWSError>;
|
46
|
+
/**
|
47
|
+
* Enable (apply) a Baseline to a Target. This API starts an asynchronous operation to deploy resources specified by the Baseline to the specified Target.
|
48
|
+
*/
|
49
|
+
enableBaseline(params: ControlTower.Types.EnableBaselineInput, callback?: (err: AWSError, data: ControlTower.Types.EnableBaselineOutput) => void): Request<ControlTower.Types.EnableBaselineOutput, AWSError>;
|
50
|
+
/**
|
51
|
+
* Enable (apply) a Baseline to a Target. This API starts an asynchronous operation to deploy resources specified by the Baseline to the specified Target.
|
52
|
+
*/
|
53
|
+
enableBaseline(callback?: (err: AWSError, data: ControlTower.Types.EnableBaselineOutput) => void): Request<ControlTower.Types.EnableBaselineOutput, AWSError>;
|
38
54
|
/**
|
39
55
|
* This API call activates a control. It starts an asynchronous operation that creates Amazon Web Services resources on the specified organizational unit and the accounts it contains. The resources created will vary according to the control that you specify. For usage examples, see the Amazon Web Services Control Tower User Guide .
|
40
56
|
*/
|
@@ -43,6 +59,22 @@ declare class ControlTower extends Service {
|
|
43
59
|
* This API call activates a control. It starts an asynchronous operation that creates Amazon Web Services resources on the specified organizational unit and the accounts it contains. The resources created will vary according to the control that you specify. For usage examples, see the Amazon Web Services Control Tower User Guide .
|
44
60
|
*/
|
45
61
|
enableControl(callback?: (err: AWSError, data: ControlTower.Types.EnableControlOutput) => void): Request<ControlTower.Types.EnableControlOutput, AWSError>;
|
62
|
+
/**
|
63
|
+
* Retrieve details about an existing Baseline resource by specifying its identifier.
|
64
|
+
*/
|
65
|
+
getBaseline(params: ControlTower.Types.GetBaselineInput, callback?: (err: AWSError, data: ControlTower.Types.GetBaselineOutput) => void): Request<ControlTower.Types.GetBaselineOutput, AWSError>;
|
66
|
+
/**
|
67
|
+
* Retrieve details about an existing Baseline resource by specifying its identifier.
|
68
|
+
*/
|
69
|
+
getBaseline(callback?: (err: AWSError, data: ControlTower.Types.GetBaselineOutput) => void): Request<ControlTower.Types.GetBaselineOutput, AWSError>;
|
70
|
+
/**
|
71
|
+
* Returns the details of an asynchronous baseline operation, as initiated by any of these APIs: EnableBaseline, DisableBaseline, UpdateEnabledBaseline, ResetEnabledBaseline. A status message is displayed in case of operation failure.
|
72
|
+
*/
|
73
|
+
getBaselineOperation(params: ControlTower.Types.GetBaselineOperationInput, callback?: (err: AWSError, data: ControlTower.Types.GetBaselineOperationOutput) => void): Request<ControlTower.Types.GetBaselineOperationOutput, AWSError>;
|
74
|
+
/**
|
75
|
+
* Returns the details of an asynchronous baseline operation, as initiated by any of these APIs: EnableBaseline, DisableBaseline, UpdateEnabledBaseline, ResetEnabledBaseline. A status message is displayed in case of operation failure.
|
76
|
+
*/
|
77
|
+
getBaselineOperation(callback?: (err: AWSError, data: ControlTower.Types.GetBaselineOperationOutput) => void): Request<ControlTower.Types.GetBaselineOperationOutput, AWSError>;
|
46
78
|
/**
|
47
79
|
* Returns the status of a particular EnableControl or DisableControl operation. Displays a message in case of error. Details for an operation are available for 90 days. For usage examples, see the Amazon Web Services Control Tower User Guide .
|
48
80
|
*/
|
@@ -51,6 +83,14 @@ declare class ControlTower extends Service {
|
|
51
83
|
* Returns the status of a particular EnableControl or DisableControl operation. Displays a message in case of error. Details for an operation are available for 90 days. For usage examples, see the Amazon Web Services Control Tower User Guide .
|
52
84
|
*/
|
53
85
|
getControlOperation(callback?: (err: AWSError, data: ControlTower.Types.GetControlOperationOutput) => void): Request<ControlTower.Types.GetControlOperationOutput, AWSError>;
|
86
|
+
/**
|
87
|
+
* Retrieve details of an EnabledBaseline resource by specifying its identifier.
|
88
|
+
*/
|
89
|
+
getEnabledBaseline(params: ControlTower.Types.GetEnabledBaselineInput, callback?: (err: AWSError, data: ControlTower.Types.GetEnabledBaselineOutput) => void): Request<ControlTower.Types.GetEnabledBaselineOutput, AWSError>;
|
90
|
+
/**
|
91
|
+
* Retrieve details of an EnabledBaseline resource by specifying its identifier.
|
92
|
+
*/
|
93
|
+
getEnabledBaseline(callback?: (err: AWSError, data: ControlTower.Types.GetEnabledBaselineOutput) => void): Request<ControlTower.Types.GetEnabledBaselineOutput, AWSError>;
|
54
94
|
/**
|
55
95
|
* Retrieves details about an enabled control. For usage examples, see the Amazon Web Services Control Tower User Guide .
|
56
96
|
*/
|
@@ -75,6 +115,22 @@ declare class ControlTower extends Service {
|
|
75
115
|
* Returns the status of the specified landing zone operation. Details for an operation are available for 60 days.
|
76
116
|
*/
|
77
117
|
getLandingZoneOperation(callback?: (err: AWSError, data: ControlTower.Types.GetLandingZoneOperationOutput) => void): Request<ControlTower.Types.GetLandingZoneOperationOutput, AWSError>;
|
118
|
+
/**
|
119
|
+
* Returns a summary list of all available baselines.
|
120
|
+
*/
|
121
|
+
listBaselines(params: ControlTower.Types.ListBaselinesInput, callback?: (err: AWSError, data: ControlTower.Types.ListBaselinesOutput) => void): Request<ControlTower.Types.ListBaselinesOutput, AWSError>;
|
122
|
+
/**
|
123
|
+
* Returns a summary list of all available baselines.
|
124
|
+
*/
|
125
|
+
listBaselines(callback?: (err: AWSError, data: ControlTower.Types.ListBaselinesOutput) => void): Request<ControlTower.Types.ListBaselinesOutput, AWSError>;
|
126
|
+
/**
|
127
|
+
* Returns a list of summaries describing EnabledBaseline resources. You can filter the list by the corresponding Baseline or Target of the EnabledBaseline resources.
|
128
|
+
*/
|
129
|
+
listEnabledBaselines(params: ControlTower.Types.ListEnabledBaselinesInput, callback?: (err: AWSError, data: ControlTower.Types.ListEnabledBaselinesOutput) => void): Request<ControlTower.Types.ListEnabledBaselinesOutput, AWSError>;
|
130
|
+
/**
|
131
|
+
* Returns a list of summaries describing EnabledBaseline resources. You can filter the list by the corresponding Baseline or Target of the EnabledBaseline resources.
|
132
|
+
*/
|
133
|
+
listEnabledBaselines(callback?: (err: AWSError, data: ControlTower.Types.ListEnabledBaselinesOutput) => void): Request<ControlTower.Types.ListEnabledBaselinesOutput, AWSError>;
|
78
134
|
/**
|
79
135
|
* Lists the controls enabled by Amazon Web Services Control Tower on the specified organizational unit and the accounts it contains. For usage examples, see the Amazon Web Services Control Tower User Guide .
|
80
136
|
*/
|
@@ -99,6 +155,14 @@ declare class ControlTower extends Service {
|
|
99
155
|
* Returns a list of tags associated with the resource. For usage examples, see the Amazon Web Services Control Tower User Guide .
|
100
156
|
*/
|
101
157
|
listTagsForResource(callback?: (err: AWSError, data: ControlTower.Types.ListTagsForResourceOutput) => void): Request<ControlTower.Types.ListTagsForResourceOutput, AWSError>;
|
158
|
+
/**
|
159
|
+
* Re-enables an EnabledBaseline resource. For example, this API can re-apply the existing Baseline after a new member account is moved to the target OU.
|
160
|
+
*/
|
161
|
+
resetEnabledBaseline(params: ControlTower.Types.ResetEnabledBaselineInput, callback?: (err: AWSError, data: ControlTower.Types.ResetEnabledBaselineOutput) => void): Request<ControlTower.Types.ResetEnabledBaselineOutput, AWSError>;
|
162
|
+
/**
|
163
|
+
* Re-enables an EnabledBaseline resource. For example, this API can re-apply the existing Baseline after a new member account is moved to the target OU.
|
164
|
+
*/
|
165
|
+
resetEnabledBaseline(callback?: (err: AWSError, data: ControlTower.Types.ResetEnabledBaselineOutput) => void): Request<ControlTower.Types.ResetEnabledBaselineOutput, AWSError>;
|
102
166
|
/**
|
103
167
|
* This API call resets a landing zone. It starts an asynchronous operation that resets the landing zone to the parameters specified in its original configuration.
|
104
168
|
*/
|
@@ -123,6 +187,14 @@ declare class ControlTower extends Service {
|
|
123
187
|
* Removes tags from a resource. For usage examples, see the Amazon Web Services Control Tower User Guide .
|
124
188
|
*/
|
125
189
|
untagResource(callback?: (err: AWSError, data: ControlTower.Types.UntagResourceOutput) => void): Request<ControlTower.Types.UntagResourceOutput, AWSError>;
|
190
|
+
/**
|
191
|
+
* Updates an EnabledBaseline resource's applied parameters or version.
|
192
|
+
*/
|
193
|
+
updateEnabledBaseline(params: ControlTower.Types.UpdateEnabledBaselineInput, callback?: (err: AWSError, data: ControlTower.Types.UpdateEnabledBaselineOutput) => void): Request<ControlTower.Types.UpdateEnabledBaselineOutput, AWSError>;
|
194
|
+
/**
|
195
|
+
* Updates an EnabledBaseline resource's applied parameters or version.
|
196
|
+
*/
|
197
|
+
updateEnabledBaseline(callback?: (err: AWSError, data: ControlTower.Types.UpdateEnabledBaselineOutput) => void): Request<ControlTower.Types.UpdateEnabledBaselineOutput, AWSError>;
|
126
198
|
/**
|
127
199
|
* Updates the configuration of an already enabled control. If the enabled control shows an EnablementStatus of SUCCEEDED, supply parameters that are different from the currently configured parameters. Otherwise, Amazon Web Services Control Tower will not accept the request. If the enabled control shows an EnablementStatus of FAILED, Amazon Web Services Control Tower will update the control to match any valid parameters that you supply. If the DriftSummary status for the control shows as DRIFTED, you cannot call this API. Instead, you can update the control by calling DisableControl and again calling EnableControl, or you can run an extending governance operation. For usage examples, see the Amazon Web Services Control Tower User Guide
|
128
200
|
*/
|
@@ -142,6 +214,51 @@ declare class ControlTower extends Service {
|
|
142
214
|
}
|
143
215
|
declare namespace ControlTower {
|
144
216
|
export type Arn = string;
|
217
|
+
export type BaselineArn = string;
|
218
|
+
export interface BaselineOperation {
|
219
|
+
/**
|
220
|
+
* The end time of the operation (if applicable), in ISO 8601 format.
|
221
|
+
*/
|
222
|
+
endTime?: Timestamp;
|
223
|
+
/**
|
224
|
+
* The identifier of the specified operation.
|
225
|
+
*/
|
226
|
+
operationIdentifier?: OperationIdentifier;
|
227
|
+
/**
|
228
|
+
* An enumerated type (enum) with possible values of ENABLE_BASELINE, DISABLE_BASELINE, UPDATE_ENABLED_BASELINE, or RESET_ENABLED_BASELINE.
|
229
|
+
*/
|
230
|
+
operationType?: BaselineOperationType;
|
231
|
+
/**
|
232
|
+
* The start time of the operation, in ISO 8601 format.
|
233
|
+
*/
|
234
|
+
startTime?: Timestamp;
|
235
|
+
/**
|
236
|
+
* An enumerated type (enum) with possible values of SUCCEEDED, FAILED, or IN_PROGRESS.
|
237
|
+
*/
|
238
|
+
status?: BaselineOperationStatus;
|
239
|
+
/**
|
240
|
+
* A status message that gives more information about the operation's status, if applicable.
|
241
|
+
*/
|
242
|
+
statusMessage?: String;
|
243
|
+
}
|
244
|
+
export type BaselineOperationStatus = "SUCCEEDED"|"FAILED"|"IN_PROGRESS"|string;
|
245
|
+
export type BaselineOperationType = "ENABLE_BASELINE"|"DISABLE_BASELINE"|"UPDATE_ENABLED_BASELINE"|"RESET_ENABLED_BASELINE"|string;
|
246
|
+
export interface BaselineSummary {
|
247
|
+
/**
|
248
|
+
* The full ARN of a Baseline.
|
249
|
+
*/
|
250
|
+
arn: String;
|
251
|
+
/**
|
252
|
+
* A summary description of a Baseline.
|
253
|
+
*/
|
254
|
+
description?: String;
|
255
|
+
/**
|
256
|
+
* The human-readable name of a Baseline.
|
257
|
+
*/
|
258
|
+
name: String;
|
259
|
+
}
|
260
|
+
export type BaselineVersion = string;
|
261
|
+
export type Baselines = BaselineSummary[];
|
145
262
|
export type ControlIdentifier = string;
|
146
263
|
export interface ControlOperation {
|
147
264
|
/**
|
@@ -169,7 +286,7 @@ declare namespace ControlTower {
|
|
169
286
|
export type ControlOperationType = "ENABLE_CONTROL"|"DISABLE_CONTROL"|"UPDATE_ENABLED_CONTROL"|string;
|
170
287
|
export interface CreateLandingZoneInput {
|
171
288
|
/**
|
172
|
-
* The manifest
|
289
|
+
* The manifest.yaml file is a text file that describes your Amazon Web Services resources. For examples, review The manifest file.
|
173
290
|
*/
|
174
291
|
manifest: Manifest;
|
175
292
|
/**
|
@@ -203,9 +320,21 @@ declare namespace ControlTower {
|
|
203
320
|
*/
|
204
321
|
operationIdentifier: OperationIdentifier;
|
205
322
|
}
|
323
|
+
export interface DisableBaselineInput {
|
324
|
+
/**
|
325
|
+
* Identifier of the EnabledBaseline resource to be deactivated, in ARN format.
|
326
|
+
*/
|
327
|
+
enabledBaselineIdentifier: Arn;
|
328
|
+
}
|
329
|
+
export interface DisableBaselineOutput {
|
330
|
+
/**
|
331
|
+
* The ID (in UUID format) of the asynchronous DisableBaseline operation. This operationIdentifier is used to track status through calls to the GetBaselineOperation API.
|
332
|
+
*/
|
333
|
+
operationIdentifier: OperationIdentifier;
|
334
|
+
}
|
206
335
|
export interface DisableControlInput {
|
207
336
|
/**
|
208
|
-
* The ARN of the control. Only Strongly recommended and Elective controls are permitted, with the exception of the
|
337
|
+
* The ARN of the control. Only Strongly recommended and Elective controls are permitted, with the exception of the Region deny control. For information on how to find the controlIdentifier, see the overview page.
|
209
338
|
*/
|
210
339
|
controlIdentifier: ControlIdentifier;
|
211
340
|
/**
|
@@ -228,13 +357,45 @@ declare namespace ControlTower {
|
|
228
357
|
*/
|
229
358
|
driftStatus?: DriftStatus;
|
230
359
|
}
|
360
|
+
export interface EnableBaselineInput {
|
361
|
+
/**
|
362
|
+
* The ARN of the baseline to be enabled.
|
363
|
+
*/
|
364
|
+
baselineIdentifier: Arn;
|
365
|
+
/**
|
366
|
+
* The specific version to be enabled of the specified baseline.
|
367
|
+
*/
|
368
|
+
baselineVersion: BaselineVersion;
|
369
|
+
/**
|
370
|
+
* A list of key-value objects that specify enablement parameters, where key is a string and value is a document of any type.
|
371
|
+
*/
|
372
|
+
parameters?: EnabledBaselineParameters;
|
373
|
+
/**
|
374
|
+
* Tags associated with input to EnableBaseline.
|
375
|
+
*/
|
376
|
+
tags?: TagMap;
|
377
|
+
/**
|
378
|
+
* The ARN of the target on which the baseline will be enabled. Only OUs are supported as targets.
|
379
|
+
*/
|
380
|
+
targetIdentifier: Arn;
|
381
|
+
}
|
382
|
+
export interface EnableBaselineOutput {
|
383
|
+
/**
|
384
|
+
* The ARN of the EnabledBaseline resource.
|
385
|
+
*/
|
386
|
+
arn: Arn;
|
387
|
+
/**
|
388
|
+
* The ID (in UUID format) of the asynchronous EnableBaseline operation. This operationIdentifier is used to track status through calls to the GetBaselineOperation API.
|
389
|
+
*/
|
390
|
+
operationIdentifier: OperationIdentifier;
|
391
|
+
}
|
231
392
|
export interface EnableControlInput {
|
232
393
|
/**
|
233
|
-
* The ARN of the control. Only Strongly recommended and Elective controls are permitted, with the exception of the
|
394
|
+
* The ARN of the control. Only Strongly recommended and Elective controls are permitted, with the exception of the Region deny control. For information on how to find the controlIdentifier, see the overview page.
|
234
395
|
*/
|
235
396
|
controlIdentifier: ControlIdentifier;
|
236
397
|
/**
|
237
|
-
*
|
398
|
+
* A list of input parameter values, which are specified to configure the control when you enable it.
|
238
399
|
*/
|
239
400
|
parameters?: EnabledControlParameters;
|
240
401
|
/**
|
@@ -256,6 +417,85 @@ declare namespace ControlTower {
|
|
256
417
|
*/
|
257
418
|
operationIdentifier: OperationIdentifier;
|
258
419
|
}
|
420
|
+
export type EnabledBaselineBaselineIdentifiers = Arn[];
|
421
|
+
export interface EnabledBaselineDetails {
|
422
|
+
/**
|
423
|
+
* The ARN of the EnabledBaseline resource.
|
424
|
+
*/
|
425
|
+
arn: Arn;
|
426
|
+
/**
|
427
|
+
* The specific Baseline enabled as part of the EnabledBaseline resource.
|
428
|
+
*/
|
429
|
+
baselineIdentifier: String;
|
430
|
+
/**
|
431
|
+
* The enabled version of the Baseline.
|
432
|
+
*/
|
433
|
+
baselineVersion?: String;
|
434
|
+
/**
|
435
|
+
* Shows the parameters that are applied when enabling this Baseline.
|
436
|
+
*/
|
437
|
+
parameters?: EnabledBaselineParameterSummaries;
|
438
|
+
statusSummary: EnablementStatusSummary;
|
439
|
+
/**
|
440
|
+
* The target on which to enable the Baseline.
|
441
|
+
*/
|
442
|
+
targetIdentifier: String;
|
443
|
+
}
|
444
|
+
export interface EnabledBaselineFilter {
|
445
|
+
/**
|
446
|
+
* Identifiers for the Baseline objects returned as part of the filter operation.
|
447
|
+
*/
|
448
|
+
baselineIdentifiers?: EnabledBaselineBaselineIdentifiers;
|
449
|
+
/**
|
450
|
+
* Identifiers for the targets of the Baseline filter operation.
|
451
|
+
*/
|
452
|
+
targetIdentifiers?: EnabledBaselineTargetIdentifiers;
|
453
|
+
}
|
454
|
+
export interface EnabledBaselineParameter {
|
455
|
+
/**
|
456
|
+
* A string denoting the parameter key.
|
457
|
+
*/
|
458
|
+
key: String;
|
459
|
+
/**
|
460
|
+
* A low-level Document object of any type (for example, a Java Object).
|
461
|
+
*/
|
462
|
+
value: EnabledBaselineParameterDocument;
|
463
|
+
}
|
464
|
+
export interface EnabledBaselineParameterDocument {
|
465
|
+
}
|
466
|
+
export type EnabledBaselineParameterSummaries = EnabledBaselineParameterSummary[];
|
467
|
+
export interface EnabledBaselineParameterSummary {
|
468
|
+
/**
|
469
|
+
* A string denoting the parameter key.
|
470
|
+
*/
|
471
|
+
key: String;
|
472
|
+
/**
|
473
|
+
* A low-level document object of any type (for example, a Java Object).
|
474
|
+
*/
|
475
|
+
value: EnabledBaselineParameterDocument;
|
476
|
+
}
|
477
|
+
export type EnabledBaselineParameters = EnabledBaselineParameter[];
|
478
|
+
export interface EnabledBaselineSummary {
|
479
|
+
/**
|
480
|
+
* The ARN of the EnabledBaseline resource
|
481
|
+
*/
|
482
|
+
arn: Arn;
|
483
|
+
/**
|
484
|
+
* The specific baseline that is enabled as part of the EnabledBaseline resource.
|
485
|
+
*/
|
486
|
+
baselineIdentifier: String;
|
487
|
+
/**
|
488
|
+
* The enabled version of the baseline.
|
489
|
+
*/
|
490
|
+
baselineVersion?: String;
|
491
|
+
statusSummary: EnablementStatusSummary;
|
492
|
+
/**
|
493
|
+
* The target upon which the baseline is enabled.
|
494
|
+
*/
|
495
|
+
targetIdentifier: String;
|
496
|
+
}
|
497
|
+
export type EnabledBaselineTargetIdentifiers = Arn[];
|
498
|
+
export type EnabledBaselines = EnabledBaselineSummary[];
|
259
499
|
export interface EnabledControlDetails {
|
260
500
|
/**
|
261
501
|
* The ARN of the enabled control.
|
@@ -288,11 +528,11 @@ declare namespace ControlTower {
|
|
288
528
|
}
|
289
529
|
export interface EnabledControlParameter {
|
290
530
|
/**
|
291
|
-
* The key of a key/value pair.
|
531
|
+
* The key of a key/value pair.
|
292
532
|
*/
|
293
533
|
key: String;
|
294
534
|
/**
|
295
|
-
* The value of a key/value pair.
|
535
|
+
* The value of a key/value pair.
|
296
536
|
*/
|
297
537
|
value: Document;
|
298
538
|
}
|
@@ -342,6 +582,38 @@ declare namespace ControlTower {
|
|
342
582
|
*/
|
343
583
|
status?: EnablementStatus;
|
344
584
|
}
|
585
|
+
export interface GetBaselineInput {
|
586
|
+
/**
|
587
|
+
* The ARN of the Baseline resource to be retrieved.
|
588
|
+
*/
|
589
|
+
baselineIdentifier: BaselineArn;
|
590
|
+
}
|
591
|
+
export interface GetBaselineOperationInput {
|
592
|
+
/**
|
593
|
+
* The operation ID returned from mutating asynchronous APIs (Enable, Disable, Update, Reset).
|
594
|
+
*/
|
595
|
+
operationIdentifier: OperationIdentifier;
|
596
|
+
}
|
597
|
+
export interface GetBaselineOperationOutput {
|
598
|
+
/**
|
599
|
+
* A baselineOperation object that shows information about the specified operation ID.
|
600
|
+
*/
|
601
|
+
baselineOperation: BaselineOperation;
|
602
|
+
}
|
603
|
+
export interface GetBaselineOutput {
|
604
|
+
/**
|
605
|
+
* The baseline ARN.
|
606
|
+
*/
|
607
|
+
arn: BaselineArn;
|
608
|
+
/**
|
609
|
+
* A description of the baseline.
|
610
|
+
*/
|
611
|
+
description?: String;
|
612
|
+
/**
|
613
|
+
* A user-friendly name for the baseline.
|
614
|
+
*/
|
615
|
+
name: String;
|
616
|
+
}
|
345
617
|
export interface GetControlOperationInput {
|
346
618
|
/**
|
347
619
|
* The ID of the asynchronous operation, which is used to track status. The operation is available for 90 days.
|
@@ -354,6 +626,18 @@ declare namespace ControlTower {
|
|
354
626
|
*/
|
355
627
|
controlOperation: ControlOperation;
|
356
628
|
}
|
629
|
+
export interface GetEnabledBaselineInput {
|
630
|
+
/**
|
631
|
+
* Identifier of the EnabledBaseline resource to be retrieved, in ARN format.
|
632
|
+
*/
|
633
|
+
enabledBaselineIdentifier: Arn;
|
634
|
+
}
|
635
|
+
export interface GetEnabledBaselineOutput {
|
636
|
+
/**
|
637
|
+
* Details of the EnabledBaseline resource.
|
638
|
+
*/
|
639
|
+
enabledBaselineDetails?: EnabledBaselineDetails;
|
640
|
+
}
|
357
641
|
export interface GetEnabledControlInput {
|
358
642
|
/**
|
359
643
|
* The controlIdentifier of the enabled control.
|
@@ -404,11 +688,11 @@ declare namespace ControlTower {
|
|
404
688
|
*/
|
405
689
|
latestAvailableVersion?: LandingZoneVersion;
|
406
690
|
/**
|
407
|
-
* The landing zone manifest
|
691
|
+
* The landing zone manifest.yaml text file that specifies the landing zone configurations.
|
408
692
|
*/
|
409
693
|
manifest: Manifest;
|
410
694
|
/**
|
411
|
-
* The landing zone deployment status.
|
695
|
+
* The landing zone deployment status. One of ACTIVE, PROCESSING, FAILED.
|
412
696
|
*/
|
413
697
|
status?: LandingZoneStatus;
|
414
698
|
/**
|
@@ -455,6 +739,53 @@ declare namespace ControlTower {
|
|
455
739
|
arn?: Arn;
|
456
740
|
}
|
457
741
|
export type LandingZoneVersion = string;
|
742
|
+
export interface ListBaselinesInput {
|
743
|
+
/**
|
744
|
+
* The maximum number of results to be shown.
|
745
|
+
*/
|
746
|
+
maxResults?: ListBaselinesMaxResults;
|
747
|
+
/**
|
748
|
+
* A pagination token.
|
749
|
+
*/
|
750
|
+
nextToken?: String;
|
751
|
+
}
|
752
|
+
export type ListBaselinesMaxResults = number;
|
753
|
+
export interface ListBaselinesOutput {
|
754
|
+
/**
|
755
|
+
* A list of Baseline object details.
|
756
|
+
*/
|
757
|
+
baselines: Baselines;
|
758
|
+
/**
|
759
|
+
* A pagination token.
|
760
|
+
*/
|
761
|
+
nextToken?: String;
|
762
|
+
}
|
763
|
+
export interface ListEnabledBaselinesInput {
|
764
|
+
/**
|
765
|
+
* A filter applied on the ListEnabledBaseline operation. Allowed filters are baselineIdentifiers and targetIdentifiers. The filter can be applied for either, or both.
|
766
|
+
*/
|
767
|
+
filter?: EnabledBaselineFilter;
|
768
|
+
/**
|
769
|
+
* The maximum number of results to be shown.
|
770
|
+
*/
|
771
|
+
maxResults?: ListEnabledBaselinesMaxResults;
|
772
|
+
/**
|
773
|
+
* A pagination token.
|
774
|
+
*/
|
775
|
+
nextToken?: ListEnabledBaselinesNextToken;
|
776
|
+
}
|
777
|
+
export type ListEnabledBaselinesMaxResults = number;
|
778
|
+
export type ListEnabledBaselinesNextToken = string;
|
779
|
+
export interface ListEnabledBaselinesOutput {
|
780
|
+
/**
|
781
|
+
* Retuens a list of summaries of EnabledBaseline resources.
|
782
|
+
*/
|
783
|
+
enabledBaselines: EnabledBaselines;
|
784
|
+
/**
|
785
|
+
* A pagination token.
|
786
|
+
*/
|
787
|
+
nextToken?: ListEnabledBaselinesNextToken;
|
788
|
+
}
|
458
789
|
export interface ListEnabledControlsInput {
|
459
790
|
/**
|
460
791
|
* How many results to return per API call.
|
@@ -524,6 +855,18 @@ declare namespace ControlTower {
|
|
524
855
|
name?: RegionName;
|
525
856
|
}
|
526
857
|
export type RegionName = string;
|
858
|
+
export interface ResetEnabledBaselineInput {
|
859
|
+
/**
|
860
|
+
* Specifies the ID of the EnabledBaseline resource to be re-enabled, in ARN format.
|
861
|
+
*/
|
862
|
+
enabledBaselineIdentifier: Arn;
|
863
|
+
}
|
864
|
+
export interface ResetEnabledBaselineOutput {
|
865
|
+
/**
|
866
|
+
* The ID (in UUID format) of the asynchronous ResetEnabledBaseline operation. This operationIdentifier is used to track status through calls to the GetBaselineOperation API.
|
867
|
+
*/
|
868
|
+
operationIdentifier: OperationIdentifier;
|
869
|
+
}
|
527
870
|
export interface ResetLandingZoneInput {
|
528
871
|
/**
|
529
872
|
* The unique identifier of the landing zone.
|
@@ -569,6 +912,26 @@ declare namespace ControlTower {
|
|
569
912
|
}
|
570
913
|
export interface UntagResourceOutput {
|
571
914
|
}
|
915
|
+
export interface UpdateEnabledBaselineInput {
|
916
|
+
/**
|
917
|
+
* Specifies the new Baseline version, to which the EnabledBaseline should be updated.
|
918
|
+
*/
|
919
|
+
baselineVersion: BaselineVersion;
|
920
|
+
/**
|
921
|
+
* Specifies the EnabledBaseline resource to be updated.
|
922
|
+
*/
|
923
|
+
enabledBaselineIdentifier: Arn;
|
924
|
+
/**
|
925
|
+
* Parameters to apply when making an update.
|
926
|
+
*/
|
927
|
+
parameters?: EnabledBaselineParameters;
|
928
|
+
}
|
929
|
+
export interface UpdateEnabledBaselineOutput {
|
930
|
+
/**
|
931
|
+
* The ID (in UUID format) of the asynchronous UpdateEnabledBaseline operation. This operationIdentifier is used to track status through calls to the GetBaselineOperation API.
|
932
|
+
*/
|
933
|
+
operationIdentifier: OperationIdentifier;
|
934
|
+
}
|
572
935
|
export interface UpdateEnabledControlInput {
|
573
936
|
/**
|
574
937
|
* The ARN of the enabled control that will be updated.
|
@@ -591,7 +954,7 @@ declare namespace ControlTower {
|
|
591
954
|
*/
|
592
955
|
landingZoneIdentifier: String;
|
593
956
|
/**
|
594
|
-
* The manifest
|
957
|
+
* The manifest.yaml file is a text file that describes your Amazon Web Services resources. For examples, review The manifest file.
|
595
958
|
*/
|
596
959
|
manifest: Manifest;
|
597
960
|
/**
|
@@ -7659,6 +7659,10 @@ declare namespace Lightsail {
|
|
7659
7659
|
* Indicates the certificate that needs to be associated with the database.
|
7660
7660
|
*/
|
7661
7661
|
caCertificateIdentifier?: string;
|
7662
|
+
/**
|
7663
|
+
* This parameter is used to update the major version of the database. Enter the blueprintId for the major version that you want to update to. Use the GetRelationalDatabaseBlueprints action to get a list of available blueprint IDs.
|
7664
|
+
*/
|
7665
|
+
relationalDatabaseBlueprintId?: string;
|
7662
7666
|
}
|
7663
7667
|
export interface UpdateRelationalDatabaseResult {
|
7664
7668
|
/**
|