aws-sdk 2.996.0 → 2.1000.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/CHANGELOG.md +24 -1
- package/README.md +1 -1
- package/apis/account-2021-02-01.examples.json +5 -0
- package/apis/account-2021-02-01.min.json +123 -0
- package/apis/account-2021-02-01.paginators.json +4 -0
- package/apis/amp-2020-08-01.min.json +442 -11
- package/apis/amp-2020-08-01.paginators.json +6 -0
- package/apis/amp-2020-08-01.waiters2.json +43 -0
- package/apis/apprunner-2020-05-15.min.json +10 -10
- package/apis/cloudcontrol-2021-09-30.examples.json +5 -0
- package/apis/cloudcontrol-2021-09-30.min.json +271 -0
- package/apis/cloudcontrol-2021-09-30.paginators.json +14 -0
- package/apis/cloudcontrol-2021-09-30.waiters2.json +31 -0
- package/apis/codebuild-2016-10-06.min.json +74 -73
- package/apis/dataexchange-2017-07-25.min.json +277 -38
- package/apis/dataexchange-2017-07-25.paginators.json +6 -0
- package/apis/kms-2014-11-01.examples.json +608 -8
- package/apis/lambda-2015-03-31.min.json +79 -42
- package/apis/macie2-2020-01-01.min.json +79 -67
- package/apis/metadata.json +6 -0
- package/apis/network-firewall-2020-11-12.min.json +65 -31
- package/apis/sesv2-2019-09-27.min.json +72 -70
- package/apis/ssm-2014-11-06.min.json +3 -0
- package/apis/synthetics-2017-10-11.min.json +39 -9
- package/apis/workmail-2017-10-01.min.json +139 -27
- package/apis/workmail-2017-10-01.paginators.json +5 -0
- package/apis/workspaces-2015-04-08.min.json +83 -50
- package/clients/account.d.ts +136 -0
- package/clients/account.js +18 -0
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/amp.d.ts +387 -0
- package/clients/amp.js +1 -0
- package/clients/apprunner.d.ts +55 -54
- package/clients/cloudcontrol.d.ts +385 -0
- package/clients/cloudcontrol.js +19 -0
- package/clients/codebuild.d.ts +8 -3
- package/clients/dataexchange.d.ts +226 -2
- package/clients/imagebuilder.d.ts +27 -27
- package/clients/kms.d.ts +2 -2
- package/clients/lambda.d.ts +61 -22
- package/clients/macie2.d.ts +29 -12
- package/clients/networkfirewall.d.ts +61 -10
- package/clients/sesv2.d.ts +128 -108
- package/clients/ssm.d.ts +7 -3
- package/clients/synthetics.d.ts +40 -0
- package/clients/transfer.d.ts +12 -12
- package/clients/workmail.d.ts +173 -0
- package/clients/workspaces.d.ts +87 -40
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +307 -219
- package/dist/aws-sdk.js +165 -118
- package/dist/aws-sdk.min.js +53 -53
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -27,6 +27,14 @@ declare class DataExchange extends Service {
|
|
|
27
27
|
* This operation creates a data set.
|
|
28
28
|
*/
|
|
29
29
|
createDataSet(callback?: (err: AWSError, data: DataExchange.Types.CreateDataSetResponse) => void): Request<DataExchange.Types.CreateDataSetResponse, AWSError>;
|
|
30
|
+
/**
|
|
31
|
+
* This operation creates an event action.
|
|
32
|
+
*/
|
|
33
|
+
createEventAction(params: DataExchange.Types.CreateEventActionRequest, callback?: (err: AWSError, data: DataExchange.Types.CreateEventActionResponse) => void): Request<DataExchange.Types.CreateEventActionResponse, AWSError>;
|
|
34
|
+
/**
|
|
35
|
+
* This operation creates an event action.
|
|
36
|
+
*/
|
|
37
|
+
createEventAction(callback?: (err: AWSError, data: DataExchange.Types.CreateEventActionResponse) => void): Request<DataExchange.Types.CreateEventActionResponse, AWSError>;
|
|
30
38
|
/**
|
|
31
39
|
* This operation creates a job.
|
|
32
40
|
*/
|
|
@@ -59,6 +67,14 @@ declare class DataExchange extends Service {
|
|
|
59
67
|
* This operation deletes a data set.
|
|
60
68
|
*/
|
|
61
69
|
deleteDataSet(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
70
|
+
/**
|
|
71
|
+
* This operation deletes the event action.
|
|
72
|
+
*/
|
|
73
|
+
deleteEventAction(params: DataExchange.Types.DeleteEventActionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
74
|
+
/**
|
|
75
|
+
* This operation deletes the event action.
|
|
76
|
+
*/
|
|
77
|
+
deleteEventAction(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
62
78
|
/**
|
|
63
79
|
* This operation deletes a revision.
|
|
64
80
|
*/
|
|
@@ -83,6 +99,14 @@ declare class DataExchange extends Service {
|
|
|
83
99
|
* This operation returns information about a data set.
|
|
84
100
|
*/
|
|
85
101
|
getDataSet(callback?: (err: AWSError, data: DataExchange.Types.GetDataSetResponse) => void): Request<DataExchange.Types.GetDataSetResponse, AWSError>;
|
|
102
|
+
/**
|
|
103
|
+
* This operation retrieves information about an event action.
|
|
104
|
+
*/
|
|
105
|
+
getEventAction(params: DataExchange.Types.GetEventActionRequest, callback?: (err: AWSError, data: DataExchange.Types.GetEventActionResponse) => void): Request<DataExchange.Types.GetEventActionResponse, AWSError>;
|
|
106
|
+
/**
|
|
107
|
+
* This operation retrieves information about an event action.
|
|
108
|
+
*/
|
|
109
|
+
getEventAction(callback?: (err: AWSError, data: DataExchange.Types.GetEventActionResponse) => void): Request<DataExchange.Types.GetEventActionResponse, AWSError>;
|
|
86
110
|
/**
|
|
87
111
|
* This operation returns information about a job.
|
|
88
112
|
*/
|
|
@@ -115,6 +139,14 @@ declare class DataExchange extends Service {
|
|
|
115
139
|
* This operation lists your data sets. When listing by origin OWNED, results are sorted by CreatedAt in descending order. When listing by origin ENTITLED, there is no order and the maxResults parameter is ignored.
|
|
116
140
|
*/
|
|
117
141
|
listDataSets(callback?: (err: AWSError, data: DataExchange.Types.ListDataSetsResponse) => void): Request<DataExchange.Types.ListDataSetsResponse, AWSError>;
|
|
142
|
+
/**
|
|
143
|
+
* This operation lists your event actions.
|
|
144
|
+
*/
|
|
145
|
+
listEventActions(params: DataExchange.Types.ListEventActionsRequest, callback?: (err: AWSError, data: DataExchange.Types.ListEventActionsResponse) => void): Request<DataExchange.Types.ListEventActionsResponse, AWSError>;
|
|
146
|
+
/**
|
|
147
|
+
* This operation lists your event actions.
|
|
148
|
+
*/
|
|
149
|
+
listEventActions(callback?: (err: AWSError, data: DataExchange.Types.ListEventActionsResponse) => void): Request<DataExchange.Types.ListEventActionsResponse, AWSError>;
|
|
118
150
|
/**
|
|
119
151
|
* This operation lists your jobs sorted by CreatedAt in descending order.
|
|
120
152
|
*/
|
|
@@ -179,6 +211,14 @@ declare class DataExchange extends Service {
|
|
|
179
211
|
* This operation updates a data set.
|
|
180
212
|
*/
|
|
181
213
|
updateDataSet(callback?: (err: AWSError, data: DataExchange.Types.UpdateDataSetResponse) => void): Request<DataExchange.Types.UpdateDataSetResponse, AWSError>;
|
|
214
|
+
/**
|
|
215
|
+
* This operation updates the event action.
|
|
216
|
+
*/
|
|
217
|
+
updateEventAction(params: DataExchange.Types.UpdateEventActionRequest, callback?: (err: AWSError, data: DataExchange.Types.UpdateEventActionResponse) => void): Request<DataExchange.Types.UpdateEventActionResponse, AWSError>;
|
|
218
|
+
/**
|
|
219
|
+
* This operation updates the event action.
|
|
220
|
+
*/
|
|
221
|
+
updateEventAction(callback?: (err: AWSError, data: DataExchange.Types.UpdateEventActionResponse) => void): Request<DataExchange.Types.UpdateEventActionResponse, AWSError>;
|
|
182
222
|
/**
|
|
183
223
|
* This operation updates a revision.
|
|
184
224
|
*/
|
|
@@ -189,6 +229,9 @@ declare class DataExchange extends Service {
|
|
|
189
229
|
updateRevision(callback?: (err: AWSError, data: DataExchange.Types.UpdateRevisionResponse) => void): Request<DataExchange.Types.UpdateRevisionResponse, AWSError>;
|
|
190
230
|
}
|
|
191
231
|
declare namespace DataExchange {
|
|
232
|
+
export interface Action {
|
|
233
|
+
ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails;
|
|
234
|
+
}
|
|
192
235
|
export type Arn = string;
|
|
193
236
|
export interface AssetDestinationEntry {
|
|
194
237
|
/**
|
|
@@ -261,6 +304,20 @@ declare namespace DataExchange {
|
|
|
261
304
|
Key: __string;
|
|
262
305
|
}
|
|
263
306
|
export type AssetType = "S3_SNAPSHOT"|string;
|
|
307
|
+
export interface AutoExportRevisionDestinationEntry {
|
|
308
|
+
/**
|
|
309
|
+
* The S3 bucket that is the destination for the event action.
|
|
310
|
+
*/
|
|
311
|
+
Bucket: __string;
|
|
312
|
+
/**
|
|
313
|
+
* A string representing the pattern for generated names of the individual assets in the revision. For more information about key patterns, see Key patterns when exporting revisions.
|
|
314
|
+
*/
|
|
315
|
+
KeyPattern?: __string;
|
|
316
|
+
}
|
|
317
|
+
export interface AutoExportRevisionToS3RequestDetails {
|
|
318
|
+
Encryption?: ExportServerSideEncryption;
|
|
319
|
+
RevisionDestination: AutoExportRevisionDestinationEntry;
|
|
320
|
+
}
|
|
264
321
|
export interface CancelJobRequest {
|
|
265
322
|
/**
|
|
266
323
|
* The unique identifier for a job.
|
|
@@ -332,6 +389,42 @@ declare namespace DataExchange {
|
|
|
332
389
|
*/
|
|
333
390
|
UpdatedAt?: Timestamp;
|
|
334
391
|
}
|
|
392
|
+
export interface CreateEventActionRequest {
|
|
393
|
+
/**
|
|
394
|
+
* What occurs after a certain event.
|
|
395
|
+
*/
|
|
396
|
+
Action: Action;
|
|
397
|
+
/**
|
|
398
|
+
* What occurs to start an action.
|
|
399
|
+
*/
|
|
400
|
+
Event: Event;
|
|
401
|
+
}
|
|
402
|
+
export interface CreateEventActionResponse {
|
|
403
|
+
/**
|
|
404
|
+
* What occurs after a certain event.
|
|
405
|
+
*/
|
|
406
|
+
Action?: Action;
|
|
407
|
+
/**
|
|
408
|
+
* The ARN for the event action.
|
|
409
|
+
*/
|
|
410
|
+
Arn?: Arn;
|
|
411
|
+
/**
|
|
412
|
+
* The date and time that the event action was created, in ISO 8601 format.
|
|
413
|
+
*/
|
|
414
|
+
CreatedAt?: Timestamp;
|
|
415
|
+
/**
|
|
416
|
+
* What occurs to start an action.
|
|
417
|
+
*/
|
|
418
|
+
Event?: Event;
|
|
419
|
+
/**
|
|
420
|
+
* The unique identifier for the event action.
|
|
421
|
+
*/
|
|
422
|
+
Id?: Id;
|
|
423
|
+
/**
|
|
424
|
+
* The date and time that the event action was last updated, in ISO 8601 format.
|
|
425
|
+
*/
|
|
426
|
+
UpdatedAt?: Timestamp;
|
|
427
|
+
}
|
|
335
428
|
export interface CreateJobRequest {
|
|
336
429
|
/**
|
|
337
430
|
* The details for the CreateJob request.
|
|
@@ -490,6 +583,12 @@ declare namespace DataExchange {
|
|
|
490
583
|
*/
|
|
491
584
|
DataSetId: __string;
|
|
492
585
|
}
|
|
586
|
+
export interface DeleteEventActionRequest {
|
|
587
|
+
/**
|
|
588
|
+
* The unique identifier for the event action.
|
|
589
|
+
*/
|
|
590
|
+
EventActionId: __string;
|
|
591
|
+
}
|
|
493
592
|
export interface DeleteRevisionRequest {
|
|
494
593
|
/**
|
|
495
594
|
* The unique identifier for a data set.
|
|
@@ -505,6 +604,35 @@ declare namespace DataExchange {
|
|
|
505
604
|
ImportAssetFromSignedUrlJobErrorDetails?: ImportAssetFromSignedUrlJobErrorDetails;
|
|
506
605
|
ImportAssetsFromS3JobErrorDetails?: ListOfAssetSourceEntry;
|
|
507
606
|
}
|
|
607
|
+
export interface Event {
|
|
608
|
+
RevisionPublished?: RevisionPublished;
|
|
609
|
+
}
|
|
610
|
+
export interface EventActionEntry {
|
|
611
|
+
/**
|
|
612
|
+
* What occurs after a certain event.
|
|
613
|
+
*/
|
|
614
|
+
Action: Action;
|
|
615
|
+
/**
|
|
616
|
+
* The ARN for the event action.
|
|
617
|
+
*/
|
|
618
|
+
Arn: Arn;
|
|
619
|
+
/**
|
|
620
|
+
* The date and time that the event action was created, in ISO 8601 format.
|
|
621
|
+
*/
|
|
622
|
+
CreatedAt: Timestamp;
|
|
623
|
+
/**
|
|
624
|
+
* What occurs to start an action.
|
|
625
|
+
*/
|
|
626
|
+
Event: Event;
|
|
627
|
+
/**
|
|
628
|
+
* The unique identifier for the event action.
|
|
629
|
+
*/
|
|
630
|
+
Id: Id;
|
|
631
|
+
/**
|
|
632
|
+
* The date and time that the event action was last updated, in ISO 8601 format.
|
|
633
|
+
*/
|
|
634
|
+
UpdatedAt: Timestamp;
|
|
635
|
+
}
|
|
508
636
|
export interface ExportAssetToSignedUrlRequestDetails {
|
|
509
637
|
/**
|
|
510
638
|
* The unique identifier for the asset that is exported to a signed URL.
|
|
@@ -607,7 +735,7 @@ declare namespace DataExchange {
|
|
|
607
735
|
}
|
|
608
736
|
export interface ExportServerSideEncryption {
|
|
609
737
|
/**
|
|
610
|
-
* The Amazon Resource Name (ARN) of the
|
|
738
|
+
* The Amazon Resource Name (ARN) of the AWS KMS key you want to use to encrypt the Amazon S3 objects. This parameter is required if you choose aws:kms as an encryption type.
|
|
611
739
|
*/
|
|
612
740
|
KmsKeyArn?: __string;
|
|
613
741
|
/**
|
|
@@ -723,6 +851,38 @@ declare namespace DataExchange {
|
|
|
723
851
|
*/
|
|
724
852
|
UpdatedAt?: Timestamp;
|
|
725
853
|
}
|
|
854
|
+
export interface GetEventActionRequest {
|
|
855
|
+
/**
|
|
856
|
+
* The unique identifier for the event action.
|
|
857
|
+
*/
|
|
858
|
+
EventActionId: __string;
|
|
859
|
+
}
|
|
860
|
+
export interface GetEventActionResponse {
|
|
861
|
+
/**
|
|
862
|
+
* What occurs after a certain event.
|
|
863
|
+
*/
|
|
864
|
+
Action?: Action;
|
|
865
|
+
/**
|
|
866
|
+
* The ARN for the event action.
|
|
867
|
+
*/
|
|
868
|
+
Arn?: Arn;
|
|
869
|
+
/**
|
|
870
|
+
* The date and time that the event action was created, in ISO 8601 format.
|
|
871
|
+
*/
|
|
872
|
+
CreatedAt?: Timestamp;
|
|
873
|
+
/**
|
|
874
|
+
* What occurs to start an action.
|
|
875
|
+
*/
|
|
876
|
+
Event?: Event;
|
|
877
|
+
/**
|
|
878
|
+
* The unique identifier for the event action.
|
|
879
|
+
*/
|
|
880
|
+
Id?: Id;
|
|
881
|
+
/**
|
|
882
|
+
* The date and time that the event action was last updated, in ISO 8601 format.
|
|
883
|
+
*/
|
|
884
|
+
UpdatedAt?: Timestamp;
|
|
885
|
+
}
|
|
726
886
|
export interface GetJobRequest {
|
|
727
887
|
/**
|
|
728
888
|
* The unique identifier for a job.
|
|
@@ -949,7 +1109,7 @@ declare namespace DataExchange {
|
|
|
949
1109
|
ResourceType?: JobErrorResourceTypes;
|
|
950
1110
|
}
|
|
951
1111
|
export type JobErrorLimitName = "Assets per revision"|"Asset size in GB"|string;
|
|
952
|
-
export type JobErrorResourceTypes = "REVISION"|"ASSET"|string;
|
|
1112
|
+
export type JobErrorResourceTypes = "REVISION"|"ASSET"|"DATA_SET"|string;
|
|
953
1113
|
export interface ListDataSetRevisionsRequest {
|
|
954
1114
|
/**
|
|
955
1115
|
* The unique identifier for a data set.
|
|
@@ -998,6 +1158,30 @@ declare namespace DataExchange {
|
|
|
998
1158
|
*/
|
|
999
1159
|
NextToken?: NextToken;
|
|
1000
1160
|
}
|
|
1161
|
+
export interface ListEventActionsRequest {
|
|
1162
|
+
/**
|
|
1163
|
+
* The unique identifier for the event source.
|
|
1164
|
+
*/
|
|
1165
|
+
EventSourceId?: __string;
|
|
1166
|
+
/**
|
|
1167
|
+
* The maximum number of results returned by a single call.
|
|
1168
|
+
*/
|
|
1169
|
+
MaxResults?: MaxResults;
|
|
1170
|
+
/**
|
|
1171
|
+
* The token value retrieved from a previous call to access the next page of results.
|
|
1172
|
+
*/
|
|
1173
|
+
NextToken?: __string;
|
|
1174
|
+
}
|
|
1175
|
+
export interface ListEventActionsResponse {
|
|
1176
|
+
/**
|
|
1177
|
+
* The event action objects listed by the request.
|
|
1178
|
+
*/
|
|
1179
|
+
EventActions?: ListOfEventActionEntry;
|
|
1180
|
+
/**
|
|
1181
|
+
* The token value retrieved from a previous call to access the next page of results.
|
|
1182
|
+
*/
|
|
1183
|
+
NextToken?: NextToken;
|
|
1184
|
+
}
|
|
1001
1185
|
export interface ListJobsRequest {
|
|
1002
1186
|
/**
|
|
1003
1187
|
* The unique identifier for a data set.
|
|
@@ -1168,6 +1352,9 @@ declare namespace DataExchange {
|
|
|
1168
1352
|
*/
|
|
1169
1353
|
UpdatedAt: Timestamp;
|
|
1170
1354
|
}
|
|
1355
|
+
export interface RevisionPublished {
|
|
1356
|
+
DataSetId: Id;
|
|
1357
|
+
}
|
|
1171
1358
|
export interface S3SnapshotAsset {
|
|
1172
1359
|
/**
|
|
1173
1360
|
* The size of the S3 object that is the object.
|
|
@@ -1322,6 +1509,42 @@ declare namespace DataExchange {
|
|
|
1322
1509
|
*/
|
|
1323
1510
|
UpdatedAt?: Timestamp;
|
|
1324
1511
|
}
|
|
1512
|
+
export interface UpdateEventActionRequest {
|
|
1513
|
+
/**
|
|
1514
|
+
* What occurs after a certain event.
|
|
1515
|
+
*/
|
|
1516
|
+
Action?: Action;
|
|
1517
|
+
/**
|
|
1518
|
+
* The unique identifier for the event action.
|
|
1519
|
+
*/
|
|
1520
|
+
EventActionId: __string;
|
|
1521
|
+
}
|
|
1522
|
+
export interface UpdateEventActionResponse {
|
|
1523
|
+
/**
|
|
1524
|
+
* What occurs after a certain event.
|
|
1525
|
+
*/
|
|
1526
|
+
Action?: Action;
|
|
1527
|
+
/**
|
|
1528
|
+
* The ARN for the event action.
|
|
1529
|
+
*/
|
|
1530
|
+
Arn?: Arn;
|
|
1531
|
+
/**
|
|
1532
|
+
* The date and time that the event action was created, in ISO 8601 format.
|
|
1533
|
+
*/
|
|
1534
|
+
CreatedAt?: Timestamp;
|
|
1535
|
+
/**
|
|
1536
|
+
* What occurs to start an action.
|
|
1537
|
+
*/
|
|
1538
|
+
Event?: Event;
|
|
1539
|
+
/**
|
|
1540
|
+
* The unique identifier for the event action.
|
|
1541
|
+
*/
|
|
1542
|
+
Id?: Id;
|
|
1543
|
+
/**
|
|
1544
|
+
* The date and time that the event action was last updated, in ISO 8601 format.
|
|
1545
|
+
*/
|
|
1546
|
+
UpdatedAt?: Timestamp;
|
|
1547
|
+
}
|
|
1325
1548
|
export interface UpdateRevisionRequest {
|
|
1326
1549
|
/**
|
|
1327
1550
|
* An optional comment about the revision.
|
|
@@ -1379,6 +1602,7 @@ declare namespace DataExchange {
|
|
|
1379
1602
|
export type __doubleMin0 = number;
|
|
1380
1603
|
export type ListOfAssetEntry = AssetEntry[];
|
|
1381
1604
|
export type ListOfDataSetEntry = DataSetEntry[];
|
|
1605
|
+
export type ListOfEventActionEntry = EventActionEntry[];
|
|
1382
1606
|
export type ListOfJobEntry = JobEntry[];
|
|
1383
1607
|
export type ListOfJobError = JobError[];
|
|
1384
1608
|
export type ListOfRevisionEntry = RevisionEntry[];
|
|
@@ -228,19 +228,19 @@ declare class Imagebuilder extends Service {
|
|
|
228
228
|
*/
|
|
229
229
|
importComponent(callback?: (err: AWSError, data: Imagebuilder.Types.ImportComponentResponse) => void): Request<Imagebuilder.Types.ImportComponentResponse, AWSError>;
|
|
230
230
|
/**
|
|
231
|
-
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the
|
|
231
|
+
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
232
232
|
*/
|
|
233
233
|
listComponentBuildVersions(params: Imagebuilder.Types.ListComponentBuildVersionsRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListComponentBuildVersionsResponse) => void): Request<Imagebuilder.Types.ListComponentBuildVersionsResponse, AWSError>;
|
|
234
234
|
/**
|
|
235
|
-
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the
|
|
235
|
+
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
236
236
|
*/
|
|
237
237
|
listComponentBuildVersions(callback?: (err: AWSError, data: Imagebuilder.Types.ListComponentBuildVersionsResponse) => void): Request<Imagebuilder.Types.ListComponentBuildVersionsResponse, AWSError>;
|
|
238
238
|
/**
|
|
239
|
-
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the
|
|
239
|
+
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
240
240
|
*/
|
|
241
241
|
listComponents(params: Imagebuilder.Types.ListComponentsRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListComponentsResponse) => void): Request<Imagebuilder.Types.ListComponentsResponse, AWSError>;
|
|
242
242
|
/**
|
|
243
|
-
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the
|
|
243
|
+
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
244
244
|
*/
|
|
245
245
|
listComponents(callback?: (err: AWSError, data: Imagebuilder.Types.ListComponentsResponse) => void): Request<Imagebuilder.Types.ListComponentsResponse, AWSError>;
|
|
246
246
|
/**
|
|
@@ -413,7 +413,7 @@ declare namespace Imagebuilder {
|
|
|
413
413
|
*/
|
|
414
414
|
systemsManagerAgent?: SystemsManagerAgent;
|
|
415
415
|
/**
|
|
416
|
-
* Use this property to provide commands or a command script to run when you launch your build instance. The userDataOverride property replaces any commands that Image Builder might have added to ensure that Systems Manager is installed on your Linux build instance. If you override the user data, make sure that you add commands to install Systems Manager, if it is not pre-installed on your
|
|
416
|
+
* Use this property to provide commands or a command script to run when you launch your build instance. The userDataOverride property replaces any commands that Image Builder might have added to ensure that Systems Manager is installed on your Linux build instance. If you override the user data, make sure that you add commands to install Systems Manager, if it is not pre-installed on your base image.
|
|
417
417
|
*/
|
|
418
418
|
userDataOverride?: UserDataOverride;
|
|
419
419
|
}
|
|
@@ -442,7 +442,7 @@ declare namespace Imagebuilder {
|
|
|
442
442
|
}
|
|
443
443
|
export interface AmiDistributionConfiguration {
|
|
444
444
|
/**
|
|
445
|
-
* The name of the
|
|
445
|
+
* The name of the output AMI.
|
|
446
446
|
*/
|
|
447
447
|
name?: AmiNameString;
|
|
448
448
|
/**
|
|
@@ -525,7 +525,7 @@ declare namespace Imagebuilder {
|
|
|
525
525
|
*/
|
|
526
526
|
platform?: Platform;
|
|
527
527
|
/**
|
|
528
|
-
* The operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the
|
|
528
|
+
* The operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the base image OS version during image recipe creation.
|
|
529
529
|
*/
|
|
530
530
|
supportedOsVersions?: OsVersionList;
|
|
531
531
|
/**
|
|
@@ -639,7 +639,7 @@ declare namespace Imagebuilder {
|
|
|
639
639
|
*/
|
|
640
640
|
platform?: Platform;
|
|
641
641
|
/**
|
|
642
|
-
* The operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the
|
|
642
|
+
* The operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the base image OS version during image recipe creation.
|
|
643
643
|
*/
|
|
644
644
|
supportedOsVersions?: OsVersionList;
|
|
645
645
|
/**
|
|
@@ -683,7 +683,7 @@ declare namespace Imagebuilder {
|
|
|
683
683
|
*/
|
|
684
684
|
name?: ResourceName;
|
|
685
685
|
/**
|
|
686
|
-
* The semantic version of the component. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the
|
|
686
|
+
* The semantic version of the component. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
687
687
|
*/
|
|
688
688
|
version?: VersionNumber;
|
|
689
689
|
/**
|
|
@@ -695,7 +695,7 @@ declare namespace Imagebuilder {
|
|
|
695
695
|
*/
|
|
696
696
|
platform?: Platform;
|
|
697
697
|
/**
|
|
698
|
-
* he operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the
|
|
698
|
+
* he operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the base image OS version during image recipe creation.
|
|
699
699
|
*/
|
|
700
700
|
supportedOsVersions?: OsVersionList;
|
|
701
701
|
/**
|
|
@@ -765,7 +765,7 @@ declare namespace Imagebuilder {
|
|
|
765
765
|
*/
|
|
766
766
|
owner?: NonEmptyString;
|
|
767
767
|
/**
|
|
768
|
-
* The semantic version of the container recipe. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the
|
|
768
|
+
* The semantic version of the container recipe. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
769
769
|
*/
|
|
770
770
|
version?: VersionNumber;
|
|
771
771
|
/**
|
|
@@ -789,7 +789,7 @@ declare namespace Imagebuilder {
|
|
|
789
789
|
*/
|
|
790
790
|
encrypted?: NullableBoolean;
|
|
791
791
|
/**
|
|
792
|
-
* The
|
|
792
|
+
* The base image for the container recipe.
|
|
793
793
|
*/
|
|
794
794
|
parentImage?: NonEmptyString;
|
|
795
795
|
/**
|
|
@@ -832,7 +832,7 @@ declare namespace Imagebuilder {
|
|
|
832
832
|
*/
|
|
833
833
|
owner?: NonEmptyString;
|
|
834
834
|
/**
|
|
835
|
-
* The
|
|
835
|
+
* The base image for the container recipe.
|
|
836
836
|
*/
|
|
837
837
|
parentImage?: NonEmptyString;
|
|
838
838
|
/**
|
|
@@ -869,7 +869,7 @@ declare namespace Imagebuilder {
|
|
|
869
869
|
*/
|
|
870
870
|
platform: Platform;
|
|
871
871
|
/**
|
|
872
|
-
* The operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the
|
|
872
|
+
* The operating system (OS) version supported by the component. If the OS information is available, a prefix match is performed against the base image OS version during image recipe creation.
|
|
873
873
|
*/
|
|
874
874
|
supportedOsVersions?: OsVersionList;
|
|
875
875
|
/**
|
|
@@ -941,15 +941,15 @@ declare namespace Imagebuilder {
|
|
|
941
941
|
*/
|
|
942
942
|
dockerfileTemplateUri?: Uri;
|
|
943
943
|
/**
|
|
944
|
-
* Specifies the operating system platform when you use a custom
|
|
944
|
+
* Specifies the operating system platform when you use a custom base image.
|
|
945
945
|
*/
|
|
946
946
|
platformOverride?: Platform;
|
|
947
947
|
/**
|
|
948
|
-
* Specifies the operating system version for the
|
|
948
|
+
* Specifies the operating system version for the base image.
|
|
949
949
|
*/
|
|
950
950
|
imageOsVersionOverride?: NonEmptyString;
|
|
951
951
|
/**
|
|
952
|
-
* The
|
|
952
|
+
* The base image for the container recipe.
|
|
953
953
|
*/
|
|
954
954
|
parentImage: NonEmptyString;
|
|
955
955
|
/**
|
|
@@ -1105,7 +1105,7 @@ declare namespace Imagebuilder {
|
|
|
1105
1105
|
*/
|
|
1106
1106
|
components: ComponentConfigurationList;
|
|
1107
1107
|
/**
|
|
1108
|
-
* The
|
|
1108
|
+
* The base image of the image recipe. The value of the string can be the ARN of the base image or an AMI ID. The format for the ARN follows this example: arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/x.x.x. You can provide the specific version that you want to use, or you can use a wildcard in all of the fields. If you enter an AMI ID for the string value, you must have access to the AMI, and the AMI must be in the same Region in which you are using Image Builder.
|
|
1109
1109
|
*/
|
|
1110
1110
|
parentImage: NonEmptyString;
|
|
1111
1111
|
/**
|
|
@@ -1201,7 +1201,7 @@ declare namespace Imagebuilder {
|
|
|
1201
1201
|
*/
|
|
1202
1202
|
description?: NonEmptyString;
|
|
1203
1203
|
/**
|
|
1204
|
-
* The instance
|
|
1204
|
+
* The instance types of the infrastructure configuration. You can specify one or more instance types to use for this build. The service will pick one of these instance types based on availability.
|
|
1205
1205
|
*/
|
|
1206
1206
|
instanceTypes?: InstanceTypeList;
|
|
1207
1207
|
/**
|
|
@@ -1712,7 +1712,7 @@ declare namespace Imagebuilder {
|
|
|
1712
1712
|
*/
|
|
1713
1713
|
name?: ResourceName;
|
|
1714
1714
|
/**
|
|
1715
|
-
* The semantic version of the image. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the
|
|
1715
|
+
* The semantic version of the image. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
1716
1716
|
*/
|
|
1717
1717
|
version?: VersionNumber;
|
|
1718
1718
|
/**
|
|
@@ -1891,7 +1891,7 @@ declare namespace Imagebuilder {
|
|
|
1891
1891
|
*/
|
|
1892
1892
|
components?: ComponentConfigurationList;
|
|
1893
1893
|
/**
|
|
1894
|
-
* The
|
|
1894
|
+
* The base image of the image recipe.
|
|
1895
1895
|
*/
|
|
1896
1896
|
parentImage?: NonEmptyString;
|
|
1897
1897
|
/**
|
|
@@ -1934,7 +1934,7 @@ declare namespace Imagebuilder {
|
|
|
1934
1934
|
*/
|
|
1935
1935
|
owner?: NonEmptyString;
|
|
1936
1936
|
/**
|
|
1937
|
-
* The
|
|
1937
|
+
* The base image of the image recipe.
|
|
1938
1938
|
*/
|
|
1939
1939
|
parentImage?: NonEmptyString;
|
|
1940
1940
|
/**
|
|
@@ -2031,7 +2031,7 @@ declare namespace Imagebuilder {
|
|
|
2031
2031
|
*/
|
|
2032
2032
|
type?: ImageType;
|
|
2033
2033
|
/**
|
|
2034
|
-
* Details for a specific version of an Image Builder image. This version follows the semantic version syntax. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the
|
|
2034
|
+
* Details for a specific version of an Image Builder image. This version follows the semantic version syntax. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
2035
2035
|
*/
|
|
2036
2036
|
version?: VersionNumber;
|
|
2037
2037
|
/**
|
|
@@ -2060,7 +2060,7 @@ declare namespace Imagebuilder {
|
|
|
2060
2060
|
*/
|
|
2061
2061
|
name: ResourceName;
|
|
2062
2062
|
/**
|
|
2063
|
-
* The semantic version of the component. This version follows the semantic version syntax. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the
|
|
2063
|
+
* The semantic version of the component. This version follows the semantic version syntax. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
2064
2064
|
*/
|
|
2065
2065
|
semanticVersion: VersionNumber;
|
|
2066
2066
|
/**
|
|
@@ -2240,7 +2240,7 @@ declare namespace Imagebuilder {
|
|
|
2240
2240
|
*/
|
|
2241
2241
|
virtualName?: NonEmptyString;
|
|
2242
2242
|
/**
|
|
2243
|
-
* Use to remove a mapping from the
|
|
2243
|
+
* Use to remove a mapping from the base image.
|
|
2244
2244
|
*/
|
|
2245
2245
|
noDevice?: EmptyString;
|
|
2246
2246
|
}
|
|
@@ -2604,7 +2604,7 @@ declare namespace Imagebuilder {
|
|
|
2604
2604
|
*/
|
|
2605
2605
|
requestId?: NonEmptyString;
|
|
2606
2606
|
/**
|
|
2607
|
-
* The list of image semantic versions. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the
|
|
2607
|
+
* The list of image semantic versions. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
|
|
2608
2608
|
*/
|
|
2609
2609
|
imageVersionList?: ImageVersionList;
|
|
2610
2610
|
/**
|
|
@@ -2782,7 +2782,7 @@ declare namespace Imagebuilder {
|
|
|
2782
2782
|
*/
|
|
2783
2783
|
timezone?: Timezone;
|
|
2784
2784
|
/**
|
|
2785
|
-
* The condition configures when the pipeline should trigger a new image build. When the pipelineExecutionStartCondition is set to EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE, and you use semantic version filters on the
|
|
2785
|
+
* The condition configures when the pipeline should trigger a new image build. When the pipelineExecutionStartCondition is set to EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE, and you use semantic version filters on the base image or components in your image recipe, EC2 Image Builder will build a new image only when there are new versions of the image or components in your recipe that match the semantic version filter. When it is set to EXPRESSION_MATCH_ONLY, it will build a new image every time the CRON expression matches the current time. For semantic version syntax, see CreateComponent in the EC2 Image Builder API Reference.
|
|
2786
2786
|
*/
|
|
2787
2787
|
pipelineExecutionStartCondition?: PipelineExecutionStartCondition;
|
|
2788
2788
|
}
|
package/clients/kms.d.ts
CHANGED
|
@@ -364,11 +364,11 @@ declare class KMS extends Service {
|
|
|
364
364
|
*/
|
|
365
365
|
updateAlias(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
366
366
|
/**
|
|
367
|
-
* Changes the properties of a custom key store. Use the CustomKeyStoreId parameter to identify the custom key store you want to edit. Use the remaining parameters to change the properties of the custom key store. You can only update a custom key store that is disconnected. To disconnect the custom key store, use DisconnectCustomKeyStore. To reconnect the custom key store after the update completes, use ConnectCustomKeyStore. To find the connection state of a custom key store, use the DescribeCustomKeyStores operation. Use the parameters of UpdateCustomKeyStore to edit your
|
|
367
|
+
* Changes the properties of a custom key store. Use the CustomKeyStoreId parameter to identify the custom key store you want to edit. Use the remaining parameters to change the properties of the custom key store. You can only update a custom key store that is disconnected. To disconnect the custom key store, use DisconnectCustomKeyStore. To reconnect the custom key store after the update completes, use ConnectCustomKeyStore. To find the connection state of a custom key store, use the DescribeCustomKeyStores operation. The CustomKeyStoreId parameter is required in all commands. Use the other parameters of UpdateCustomKeyStore to edit your key store settings. Use the NewCustomKeyStoreName parameter to change the friendly name of the custom key store to the value that you specify. Use the KeyStorePassword parameter tell KMS the current password of the kmsuser crypto user (CU) in the associated CloudHSM cluster. You can use this parameter to fix connection failures that occur when KMS cannot log into the associated cluster because the kmsuser password has changed. This value does not change the password in the CloudHSM cluster. Use the CloudHsmClusterId parameter to associate the custom key store with a different, but related, CloudHSM cluster. You can use this parameter to repair a custom key store if its CloudHSM cluster becomes corrupted or is deleted, or when you need to create or restore a cluster from a backup. If the operation succeeds, it returns a JSON object with no properties. This operation is part of the Custom Key Store feature feature in KMS, which combines the convenience and extensive integration of KMS with the isolation and control of a single-tenant key store. Cross-account use: No. You cannot perform this operation on a custom key store in a different Amazon Web Services account. Required permissions: kms:UpdateCustomKeyStore (IAM policy) Related operations: ConnectCustomKeyStore CreateCustomKeyStore DeleteCustomKeyStore DescribeCustomKeyStores DisconnectCustomKeyStore
|
|
368
368
|
*/
|
|
369
369
|
updateCustomKeyStore(params: KMS.Types.UpdateCustomKeyStoreRequest, callback?: (err: AWSError, data: KMS.Types.UpdateCustomKeyStoreResponse) => void): Request<KMS.Types.UpdateCustomKeyStoreResponse, AWSError>;
|
|
370
370
|
/**
|
|
371
|
-
* Changes the properties of a custom key store. Use the CustomKeyStoreId parameter to identify the custom key store you want to edit. Use the remaining parameters to change the properties of the custom key store. You can only update a custom key store that is disconnected. To disconnect the custom key store, use DisconnectCustomKeyStore. To reconnect the custom key store after the update completes, use ConnectCustomKeyStore. To find the connection state of a custom key store, use the DescribeCustomKeyStores operation. Use the parameters of UpdateCustomKeyStore to edit your
|
|
371
|
+
* Changes the properties of a custom key store. Use the CustomKeyStoreId parameter to identify the custom key store you want to edit. Use the remaining parameters to change the properties of the custom key store. You can only update a custom key store that is disconnected. To disconnect the custom key store, use DisconnectCustomKeyStore. To reconnect the custom key store after the update completes, use ConnectCustomKeyStore. To find the connection state of a custom key store, use the DescribeCustomKeyStores operation. The CustomKeyStoreId parameter is required in all commands. Use the other parameters of UpdateCustomKeyStore to edit your key store settings. Use the NewCustomKeyStoreName parameter to change the friendly name of the custom key store to the value that you specify. Use the KeyStorePassword parameter tell KMS the current password of the kmsuser crypto user (CU) in the associated CloudHSM cluster. You can use this parameter to fix connection failures that occur when KMS cannot log into the associated cluster because the kmsuser password has changed. This value does not change the password in the CloudHSM cluster. Use the CloudHsmClusterId parameter to associate the custom key store with a different, but related, CloudHSM cluster. You can use this parameter to repair a custom key store if its CloudHSM cluster becomes corrupted or is deleted, or when you need to create or restore a cluster from a backup. If the operation succeeds, it returns a JSON object with no properties. This operation is part of the Custom Key Store feature feature in KMS, which combines the convenience and extensive integration of KMS with the isolation and control of a single-tenant key store. Cross-account use: No. You cannot perform this operation on a custom key store in a different Amazon Web Services account. Required permissions: kms:UpdateCustomKeyStore (IAM policy) Related operations: ConnectCustomKeyStore CreateCustomKeyStore DeleteCustomKeyStore DescribeCustomKeyStores DisconnectCustomKeyStore
|
|
372
372
|
*/
|
|
373
373
|
updateCustomKeyStore(callback?: (err: AWSError, data: KMS.Types.UpdateCustomKeyStoreResponse) => void): Request<KMS.Types.UpdateCustomKeyStoreResponse, AWSError>;
|
|
374
374
|
/**
|