@jjrawlins/cdk-iam-policy-builder-helper 0.0.4 → 0.0.5
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 +210 -62
- package/.mergify.yml +60 -0
- package/jjrawlinscdkiampolicybuilderhelper/jsii/jsii.go +2 -2
- package/jjrawlinscdkiampolicybuilderhelper/version +1 -1
- package/lib/constructs/Actions.d.ts +799 -61
- package/lib/constructs/Actions.js +800 -62
- package/methods_list.txt +19274 -0
- package/node_modules/axios/CHANGELOG.md +257 -0
- package/node_modules/axios/README.md +71 -87
- package/node_modules/axios/dist/axios.js +303 -235
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +2 -1
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +230 -177
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +230 -177
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +2 -1
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +268 -187
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/index.d.cts +22 -6
- package/node_modules/axios/index.d.ts +14 -4
- package/node_modules/axios/lib/adapters/fetch.js +22 -22
- package/node_modules/axios/lib/adapters/http.js +7 -7
- package/node_modules/axios/lib/cancel/CancelToken.js +14 -0
- package/node_modules/axios/lib/core/Axios.js +20 -6
- package/node_modules/axios/lib/core/AxiosError.js +5 -2
- package/node_modules/axios/lib/core/AxiosHeaders.js +15 -3
- package/node_modules/axios/lib/core/buildFullPath.js +3 -2
- package/node_modules/axios/lib/core/mergeConfig.js +6 -6
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/lib/helpers/buildURL.js +7 -1
- package/node_modules/axios/lib/helpers/composeSignals.js +31 -29
- package/node_modules/axios/lib/helpers/formDataToStream.js +6 -5
- package/node_modules/axios/lib/helpers/isURLSameOrigin.js +12 -65
- package/node_modules/axios/lib/helpers/resolveConfig.js +1 -1
- package/node_modules/axios/lib/helpers/throttle.js +1 -1
- package/node_modules/axios/lib/helpers/toFormData.js +4 -0
- package/node_modules/axios/lib/helpers/toURLEncodedForm.js +4 -3
- package/node_modules/axios/lib/helpers/trackStream.js +25 -5
- package/node_modules/axios/lib/helpers/validator.js +8 -0
- package/node_modules/axios/lib/platform/common/utils.js +5 -4
- package/node_modules/axios/lib/platform/node/index.js +26 -0
- package/node_modules/axios/lib/utils.js +48 -28
- package/node_modules/axios/package.json +14 -5
- package/node_modules/form-data/CHANGELOG.md +601 -0
- package/node_modules/form-data/{Readme.md → README.md} +34 -37
- package/node_modules/form-data/lib/browser.js +3 -1
- package/node_modules/form-data/lib/form_data.js +126 -135
- package/node_modules/form-data/lib/populate.js +5 -5
- package/node_modules/form-data/package.json +24 -16
- package/package.json +15 -10
- package/node_modules/axios/SECURITY.md +0 -6
|
@@ -152,6 +152,7 @@ export declare const Actions: {
|
|
|
152
152
|
GetPrimaryEmail: string;
|
|
153
153
|
GetRegionOptStatus: string;
|
|
154
154
|
ListRegions: string;
|
|
155
|
+
PutAccountName: string;
|
|
155
156
|
PutAlternateContact: string;
|
|
156
157
|
PutContactInformation: string;
|
|
157
158
|
StartPrimaryEmailUpdate: string;
|
|
@@ -196,6 +197,7 @@ export declare const Actions: {
|
|
|
196
197
|
RenewCertificate: string;
|
|
197
198
|
RequestCertificate: string;
|
|
198
199
|
ResendValidationEmail: string;
|
|
200
|
+
RevokeCertificate: string;
|
|
199
201
|
UpdateCertificateOptions: string;
|
|
200
202
|
};
|
|
201
203
|
activate: {
|
|
@@ -231,6 +233,7 @@ export declare const Actions: {
|
|
|
231
233
|
UpdateInvestigation: string;
|
|
232
234
|
UpdateInvestigationEvent: string;
|
|
233
235
|
UpdateInvestigationGroup: string;
|
|
236
|
+
ValidateInvestigationGroup: string;
|
|
234
237
|
};
|
|
235
238
|
airflow: {
|
|
236
239
|
CreateCliToken: string;
|
|
@@ -361,6 +364,7 @@ export declare const Actions: {
|
|
|
361
364
|
BatchGetVpcEndpoint: string;
|
|
362
365
|
CreateAccessPolicy: string;
|
|
363
366
|
CreateCollection: string;
|
|
367
|
+
CreateIndex: string;
|
|
364
368
|
CreateLifecyclePolicy: string;
|
|
365
369
|
CreateSecurityConfig: string;
|
|
366
370
|
CreateSecurityPolicy: string;
|
|
@@ -368,12 +372,14 @@ export declare const Actions: {
|
|
|
368
372
|
DashboardsAccessAll: string;
|
|
369
373
|
DeleteAccessPolicy: string;
|
|
370
374
|
DeleteCollection: string;
|
|
375
|
+
DeleteIndex: string;
|
|
371
376
|
DeleteLifecyclePolicy: string;
|
|
372
377
|
DeleteSecurityConfig: string;
|
|
373
378
|
DeleteSecurityPolicy: string;
|
|
374
379
|
DeleteVpcEndpoint: string;
|
|
375
380
|
GetAccessPolicy: string;
|
|
376
381
|
GetAccountSettings: string;
|
|
382
|
+
GetIndex: string;
|
|
377
383
|
GetPoliciesStats: string;
|
|
378
384
|
GetSecurityConfig: string;
|
|
379
385
|
GetSecurityPolicy: string;
|
|
@@ -389,6 +395,7 @@ export declare const Actions: {
|
|
|
389
395
|
UpdateAccessPolicy: string;
|
|
390
396
|
UpdateAccountSettings: string;
|
|
391
397
|
UpdateCollection: string;
|
|
398
|
+
UpdateIndex: string;
|
|
392
399
|
UpdateLifecyclePolicy: string;
|
|
393
400
|
UpdateSecurityConfig: string;
|
|
394
401
|
UpdateSecurityPolicy: string;
|
|
@@ -397,8 +404,12 @@ export declare const Actions: {
|
|
|
397
404
|
apigateway: {
|
|
398
405
|
AddCertificateToDomain: string;
|
|
399
406
|
CreateAccessAssociation: string;
|
|
407
|
+
CreateRoutingRule: string;
|
|
400
408
|
DELETE: string;
|
|
409
|
+
DeleteRoutingRule: string;
|
|
401
410
|
GET: string;
|
|
411
|
+
GetRoutingRule: string;
|
|
412
|
+
ListRoutingRules: string;
|
|
402
413
|
PATCH: string;
|
|
403
414
|
POST: string;
|
|
404
415
|
PUT: string;
|
|
@@ -408,12 +419,14 @@ export declare const Actions: {
|
|
|
408
419
|
UpdateDomainNameManagementPolicy: string;
|
|
409
420
|
UpdateDomainNamePolicy: string;
|
|
410
421
|
UpdateRestApiPolicy: string;
|
|
422
|
+
UpdateRoutingRule: string;
|
|
411
423
|
};
|
|
412
424
|
'app-integrations': {
|
|
413
425
|
CreateApplication: string;
|
|
414
426
|
CreateApplicationAssociation: string;
|
|
415
427
|
CreateDataIntegration: string;
|
|
416
428
|
CreateDataIntegrationAssociation: string;
|
|
429
|
+
CreateDataIntegrationSchedule: string;
|
|
417
430
|
CreateEventIntegration: string;
|
|
418
431
|
CreateEventIntegrationAssociation: string;
|
|
419
432
|
DeleteApplication: string;
|
|
@@ -424,19 +437,25 @@ export declare const Actions: {
|
|
|
424
437
|
DeleteEventIntegrationAssociation: string;
|
|
425
438
|
GetApplication: string;
|
|
426
439
|
GetDataIntegration: string;
|
|
440
|
+
GetDataIntegrationExecution: string;
|
|
441
|
+
GetDataIntegrationSchedule: string;
|
|
427
442
|
GetEventIntegration: string;
|
|
428
443
|
ListApplicationAssociations: string;
|
|
429
444
|
ListApplications: string;
|
|
430
445
|
ListDataIntegrationAssociations: string;
|
|
446
|
+
ListDataIntegrationExecutions: string;
|
|
431
447
|
ListDataIntegrations: string;
|
|
448
|
+
ListDataIntegrationSchedules: string;
|
|
432
449
|
ListEventIntegrationAssociations: string;
|
|
433
450
|
ListEventIntegrations: string;
|
|
434
451
|
ListTagsForResource: string;
|
|
452
|
+
StartDataIntegrationExecution: string;
|
|
435
453
|
TagResource: string;
|
|
436
454
|
UntagResource: string;
|
|
437
455
|
UpdateApplication: string;
|
|
438
456
|
UpdateDataIntegration: string;
|
|
439
457
|
UpdateDataIntegrationAssociation: string;
|
|
458
|
+
UpdateDataIntegrationSchedule: string;
|
|
440
459
|
UpdateEventIntegration: string;
|
|
441
460
|
};
|
|
442
461
|
appconfig: {
|
|
@@ -979,20 +998,26 @@ export declare const Actions: {
|
|
|
979
998
|
CreateAlertManagerAlerts: string;
|
|
980
999
|
CreateAlertManagerDefinition: string;
|
|
981
1000
|
CreateLoggingConfiguration: string;
|
|
1001
|
+
CreateQueryLoggingConfiguration: string;
|
|
982
1002
|
CreateRuleGroupsNamespace: string;
|
|
983
1003
|
CreateScraper: string;
|
|
984
1004
|
CreateWorkspace: string;
|
|
985
1005
|
DeleteAlertManagerDefinition: string;
|
|
986
1006
|
DeleteAlertManagerSilence: string;
|
|
987
1007
|
DeleteLoggingConfiguration: string;
|
|
1008
|
+
DeleteQueryLoggingConfiguration: string;
|
|
1009
|
+
DeleteResourcePolicy: string;
|
|
988
1010
|
DeleteRuleGroupsNamespace: string;
|
|
989
1011
|
DeleteScraper: string;
|
|
990
1012
|
DeleteWorkspace: string;
|
|
991
1013
|
DescribeAlertManagerDefinition: string;
|
|
992
1014
|
DescribeLoggingConfiguration: string;
|
|
1015
|
+
DescribeQueryLoggingConfiguration: string;
|
|
1016
|
+
DescribeResourcePolicy: string;
|
|
993
1017
|
DescribeRuleGroupsNamespace: string;
|
|
994
1018
|
DescribeScraper: string;
|
|
995
1019
|
DescribeWorkspace: string;
|
|
1020
|
+
DescribeWorkspaceConfiguration: string;
|
|
996
1021
|
GetAlertManagerSilence: string;
|
|
997
1022
|
GetAlertManagerStatus: string;
|
|
998
1023
|
GetDefaultScraperConfiguration: string;
|
|
@@ -1011,16 +1036,45 @@ export declare const Actions: {
|
|
|
1011
1036
|
ListWorkspaces: string;
|
|
1012
1037
|
PutAlertManagerDefinition: string;
|
|
1013
1038
|
PutAlertManagerSilences: string;
|
|
1039
|
+
PutResourcePolicy: string;
|
|
1014
1040
|
PutRuleGroupsNamespace: string;
|
|
1015
1041
|
QueryMetrics: string;
|
|
1016
1042
|
RemoteWrite: string;
|
|
1017
1043
|
TagResource: string;
|
|
1018
1044
|
UntagResource: string;
|
|
1019
1045
|
UpdateLoggingConfiguration: string;
|
|
1046
|
+
UpdateQueryLoggingConfiguration: string;
|
|
1020
1047
|
UpdateScraper: string;
|
|
1021
1048
|
UpdateWorkspaceAlias: string;
|
|
1049
|
+
UpdateWorkspaceConfiguration: string;
|
|
1050
|
+
};
|
|
1051
|
+
'arc-region-switch': {
|
|
1052
|
+
ApprovePlanExecutionStep: string;
|
|
1053
|
+
CancelPlanExecution: string;
|
|
1054
|
+
CreatePlan: string;
|
|
1055
|
+
DeletePlan: string;
|
|
1056
|
+
DeleteResourcePolicy: string;
|
|
1057
|
+
GetPlan: string;
|
|
1058
|
+
GetPlanEvaluationStatus: string;
|
|
1059
|
+
GetPlanExecution: string;
|
|
1060
|
+
GetPlanInRegion: string;
|
|
1061
|
+
GetResourcePolicy: string;
|
|
1062
|
+
ListPlanExecutionEvents: string;
|
|
1063
|
+
ListPlanExecutions: string;
|
|
1064
|
+
ListPlans: string;
|
|
1065
|
+
ListPlansInRegion: string;
|
|
1066
|
+
ListRoute53HealthChecks: string;
|
|
1067
|
+
ListTagsForResource: string;
|
|
1068
|
+
PutResourcePolicy: string;
|
|
1069
|
+
StartPlanExecution: string;
|
|
1070
|
+
TagResource: string;
|
|
1071
|
+
UntagResource: string;
|
|
1072
|
+
UpdatePlan: string;
|
|
1073
|
+
UpdatePlanExecution: string;
|
|
1074
|
+
UpdatePlanExecutionStep: string;
|
|
1022
1075
|
};
|
|
1023
1076
|
'arc-zonal-shift': {
|
|
1077
|
+
CancelPracticeRun: string;
|
|
1024
1078
|
CancelZonalShift: string;
|
|
1025
1079
|
CreatePracticeRunConfiguration: string;
|
|
1026
1080
|
DeletePracticeRunConfiguration: string;
|
|
@@ -1029,6 +1083,7 @@ export declare const Actions: {
|
|
|
1029
1083
|
ListAutoshifts: string;
|
|
1030
1084
|
ListManagedResources: string;
|
|
1031
1085
|
ListZonalShifts: string;
|
|
1086
|
+
StartPracticeRun: string;
|
|
1032
1087
|
StartZonalShift: string;
|
|
1033
1088
|
UpdateAutoshiftObserverNotificationStatus: string;
|
|
1034
1089
|
UpdatePracticeRunConfiguration: string;
|
|
@@ -1297,7 +1352,6 @@ export declare const Actions: {
|
|
|
1297
1352
|
CancelAgreement: string;
|
|
1298
1353
|
CancelAgreementRequest: string;
|
|
1299
1354
|
CancelChangeSet: string;
|
|
1300
|
-
CompleteTask: string;
|
|
1301
1355
|
CreateAgreementRequest: string;
|
|
1302
1356
|
CreatePrivateMarketplaceRequests: string;
|
|
1303
1357
|
DeleteResourcePolicy: string;
|
|
@@ -1308,9 +1362,9 @@ export declare const Actions: {
|
|
|
1308
1362
|
DescribeEntity: string;
|
|
1309
1363
|
DescribePrivateMarketplaceRequests: string;
|
|
1310
1364
|
DescribeProcurementSystemConfiguration: string;
|
|
1311
|
-
DescribeTask: string;
|
|
1312
1365
|
DisassociateProductsFromPrivateMarketplace: string;
|
|
1313
1366
|
GetAgreementApprovalRequest: string;
|
|
1367
|
+
GetAgreementEntitlements: string;
|
|
1314
1368
|
GetAgreementRequest: string;
|
|
1315
1369
|
GetAgreementTerms: string;
|
|
1316
1370
|
GetBuyerDashboard: string;
|
|
@@ -1328,7 +1382,6 @@ export declare const Actions: {
|
|
|
1328
1382
|
ListPrivateListings: string;
|
|
1329
1383
|
ListPrivateMarketplaceRequests: string;
|
|
1330
1384
|
ListTagsForResource: string;
|
|
1331
|
-
ListTasks: string;
|
|
1332
1385
|
MeterUsage: string;
|
|
1333
1386
|
PutDeploymentParameter: string;
|
|
1334
1387
|
PutProcurementSystemConfiguration: string;
|
|
@@ -1345,7 +1398,6 @@ export declare const Actions: {
|
|
|
1345
1398
|
UntagResource: string;
|
|
1346
1399
|
UpdateAgreementApprovalRequest: string;
|
|
1347
1400
|
UpdatePurchaseOrders: string;
|
|
1348
|
-
UpdateTask: string;
|
|
1349
1401
|
ViewSubscriptions: string;
|
|
1350
1402
|
};
|
|
1351
1403
|
'aws-portal': {
|
|
@@ -1457,6 +1509,7 @@ export declare const Actions: {
|
|
|
1457
1509
|
UpdateObjectComplete: string;
|
|
1458
1510
|
};
|
|
1459
1511
|
backup: {
|
|
1512
|
+
AssociateBackupVaultMpaApprovalTeam: string;
|
|
1460
1513
|
CancelLegalHold: string;
|
|
1461
1514
|
CopyFromBackupVault: string;
|
|
1462
1515
|
CopyIntoBackupVault: string;
|
|
@@ -1467,6 +1520,7 @@ export declare const Actions: {
|
|
|
1467
1520
|
CreateLegalHold: string;
|
|
1468
1521
|
CreateLogicallyAirGappedBackupVault: string;
|
|
1469
1522
|
CreateReportPlan: string;
|
|
1523
|
+
CreateRestoreAccessBackupVault: string;
|
|
1470
1524
|
CreateRestoreTestingPlan: string;
|
|
1471
1525
|
CreateRestoreTestingSelection: string;
|
|
1472
1526
|
DeleteBackupPlan: string;
|
|
@@ -1492,6 +1546,7 @@ export declare const Actions: {
|
|
|
1492
1546
|
DescribeReportJob: string;
|
|
1493
1547
|
DescribeReportPlan: string;
|
|
1494
1548
|
DescribeRestoreJob: string;
|
|
1549
|
+
DisassociateBackupVaultMpaApprovalTeam: string;
|
|
1495
1550
|
DisassociateRecoveryPoint: string;
|
|
1496
1551
|
DisassociateRecoveryPointFromParent: string;
|
|
1497
1552
|
ExportBackupPlanTemplate: string;
|
|
@@ -1530,6 +1585,7 @@ export declare const Actions: {
|
|
|
1530
1585
|
ListRecoveryPointsByResource: string;
|
|
1531
1586
|
ListReportJobs: string;
|
|
1532
1587
|
ListReportPlans: string;
|
|
1588
|
+
ListRestoreAccessBackupVaults: string;
|
|
1533
1589
|
ListRestoreJobs: string;
|
|
1534
1590
|
ListRestoreJobsByProtectedResource: string;
|
|
1535
1591
|
ListRestoreJobSummaries: string;
|
|
@@ -1541,6 +1597,7 @@ export declare const Actions: {
|
|
|
1541
1597
|
PutBackupVaultNotifications: string;
|
|
1542
1598
|
PutBackupVaultSharingPolicy: string;
|
|
1543
1599
|
PutRestoreValidationResult: string;
|
|
1600
|
+
RevokeRestoreAccessBackupVault: string;
|
|
1544
1601
|
SearchRecoveryPoint: string;
|
|
1545
1602
|
StartBackupJob: string;
|
|
1546
1603
|
StartCopyJob: string;
|
|
@@ -1565,10 +1622,12 @@ export declare const Actions: {
|
|
|
1565
1622
|
CreateConsumableResource: string;
|
|
1566
1623
|
CreateJobQueue: string;
|
|
1567
1624
|
CreateSchedulingPolicy: string;
|
|
1625
|
+
CreateServiceEnvironment: string;
|
|
1568
1626
|
DeleteComputeEnvironment: string;
|
|
1569
1627
|
DeleteConsumableResource: string;
|
|
1570
1628
|
DeleteJobQueue: string;
|
|
1571
1629
|
DeleteSchedulingPolicy: string;
|
|
1630
|
+
DeleteServiceEnvironment: string;
|
|
1572
1631
|
DeregisterJobDefinition: string;
|
|
1573
1632
|
DescribeComputeEnvironments: string;
|
|
1574
1633
|
DescribeConsumableResource: string;
|
|
@@ -1576,21 +1635,38 @@ export declare const Actions: {
|
|
|
1576
1635
|
DescribeJobQueues: string;
|
|
1577
1636
|
DescribeJobs: string;
|
|
1578
1637
|
DescribeSchedulingPolicies: string;
|
|
1638
|
+
DescribeServiceEnvironments: string;
|
|
1639
|
+
DescribeServiceJob: string;
|
|
1579
1640
|
GetJobQueueSnapshot: string;
|
|
1580
1641
|
ListConsumableResources: string;
|
|
1581
1642
|
ListJobs: string;
|
|
1582
1643
|
ListJobsByConsumableResource: string;
|
|
1583
1644
|
ListSchedulingPolicies: string;
|
|
1645
|
+
ListServiceJobs: string;
|
|
1584
1646
|
ListTagsForResource: string;
|
|
1585
1647
|
RegisterJobDefinition: string;
|
|
1586
1648
|
SubmitJob: string;
|
|
1649
|
+
SubmitServiceJob: string;
|
|
1587
1650
|
TagResource: string;
|
|
1588
1651
|
TerminateJob: string;
|
|
1652
|
+
TerminateServiceJob: string;
|
|
1589
1653
|
UntagResource: string;
|
|
1590
1654
|
UpdateComputeEnvironment: string;
|
|
1591
1655
|
UpdateConsumableResource: string;
|
|
1592
1656
|
UpdateJobQueue: string;
|
|
1593
1657
|
UpdateSchedulingPolicy: string;
|
|
1658
|
+
UpdateServiceEnvironment: string;
|
|
1659
|
+
};
|
|
1660
|
+
'bcm-dashboards': {
|
|
1661
|
+
CreateDashboard: string;
|
|
1662
|
+
DeleteDashboard: string;
|
|
1663
|
+
GetDashboard: string;
|
|
1664
|
+
GetResourcePolicy: string;
|
|
1665
|
+
ListDashboards: string;
|
|
1666
|
+
ListTagsForResource: string;
|
|
1667
|
+
TagResource: string;
|
|
1668
|
+
UntagResource: string;
|
|
1669
|
+
UpdateDashboard: string;
|
|
1594
1670
|
};
|
|
1595
1671
|
'bcm-data-exports': {
|
|
1596
1672
|
CreateExport: string;
|
|
@@ -1644,6 +1720,92 @@ export declare const Actions: {
|
|
|
1644
1720
|
UpdateWorkloadEstimate: string;
|
|
1645
1721
|
UpdateWorkloadEstimateUsage: string;
|
|
1646
1722
|
};
|
|
1723
|
+
'bcm-recommended-actions': {
|
|
1724
|
+
ListRecommendedActions: string;
|
|
1725
|
+
};
|
|
1726
|
+
'bedrock-agentcore': {
|
|
1727
|
+
AllowVendedLogDeliveryForResource: string;
|
|
1728
|
+
ConnectBrowserAutomationStream: string;
|
|
1729
|
+
ConnectBrowserLiveViewStream: string;
|
|
1730
|
+
CreateAgentRuntime: string;
|
|
1731
|
+
CreateAgentRuntimeEndpoint: string;
|
|
1732
|
+
CreateApiKeyCredentialProvider: string;
|
|
1733
|
+
CreateBrowser: string;
|
|
1734
|
+
CreateCodeInterpreter: string;
|
|
1735
|
+
CreateEvent: string;
|
|
1736
|
+
CreateGateway: string;
|
|
1737
|
+
CreateGatewayTarget: string;
|
|
1738
|
+
CreateMemory: string;
|
|
1739
|
+
CreateOauth2CredentialProvider: string;
|
|
1740
|
+
CreateWorkloadIdentity: string;
|
|
1741
|
+
DeleteAgentRuntime: string;
|
|
1742
|
+
DeleteAgentRuntimeEndpoint: string;
|
|
1743
|
+
DeleteApiKeyCredentialProvider: string;
|
|
1744
|
+
DeleteBrowser: string;
|
|
1745
|
+
DeleteCodeInterpreter: string;
|
|
1746
|
+
DeleteEvent: string;
|
|
1747
|
+
DeleteGateway: string;
|
|
1748
|
+
DeleteGatewayTarget: string;
|
|
1749
|
+
DeleteMemory: string;
|
|
1750
|
+
DeleteMemoryRecord: string;
|
|
1751
|
+
DeleteOauth2CredentialProvider: string;
|
|
1752
|
+
DeleteWorkloadIdentity: string;
|
|
1753
|
+
GetAgentRuntime: string;
|
|
1754
|
+
GetAgentRuntimeEndpoint: string;
|
|
1755
|
+
GetApiKeyCredentialProvider: string;
|
|
1756
|
+
GetBrowser: string;
|
|
1757
|
+
GetBrowserSession: string;
|
|
1758
|
+
GetCodeInterpreter: string;
|
|
1759
|
+
GetCodeInterpreterSession: string;
|
|
1760
|
+
GetEvent: string;
|
|
1761
|
+
GetGateway: string;
|
|
1762
|
+
GetGatewayTarget: string;
|
|
1763
|
+
GetMemory: string;
|
|
1764
|
+
GetMemoryRecord: string;
|
|
1765
|
+
GetOauth2CredentialProvider: string;
|
|
1766
|
+
GetResourceApiKey: string;
|
|
1767
|
+
GetResourceOauth2Token: string;
|
|
1768
|
+
GetTokenVault: string;
|
|
1769
|
+
GetWorkloadAccessToken: string;
|
|
1770
|
+
GetWorkloadAccessTokenForJWT: string;
|
|
1771
|
+
GetWorkloadAccessTokenForUserId: string;
|
|
1772
|
+
GetWorkloadIdentity: string;
|
|
1773
|
+
InvokeAgentRuntime: string;
|
|
1774
|
+
InvokeCodeInterpreter: string;
|
|
1775
|
+
ListActors: string;
|
|
1776
|
+
ListAgentRuntimeEndpoints: string;
|
|
1777
|
+
ListAgentRuntimes: string;
|
|
1778
|
+
ListAgentRuntimeVersions: string;
|
|
1779
|
+
ListApiKeyCredentialProviders: string;
|
|
1780
|
+
ListBrowsers: string;
|
|
1781
|
+
ListBrowserSessions: string;
|
|
1782
|
+
ListCodeInterpreters: string;
|
|
1783
|
+
ListCodeInterpreterSessions: string;
|
|
1784
|
+
ListEvents: string;
|
|
1785
|
+
ListGateways: string;
|
|
1786
|
+
ListGatewayTargets: string;
|
|
1787
|
+
ListMemories: string;
|
|
1788
|
+
ListMemoryRecords: string;
|
|
1789
|
+
ListOauth2CredentialProviders: string;
|
|
1790
|
+
ListSessions: string;
|
|
1791
|
+
ListWorkloadIdentities: string;
|
|
1792
|
+
RetrieveMemoryRecords: string;
|
|
1793
|
+
SetTokenVaultCMK: string;
|
|
1794
|
+
StartBrowserSession: string;
|
|
1795
|
+
StartCodeInterpreterSession: string;
|
|
1796
|
+
StopBrowserSession: string;
|
|
1797
|
+
StopCodeInterpreterSession: string;
|
|
1798
|
+
SynchronizeGatewayTargets: string;
|
|
1799
|
+
UpdateAgentRuntime: string;
|
|
1800
|
+
UpdateAgentRuntimeEndpoint: string;
|
|
1801
|
+
UpdateApiKeyCredentialProvider: string;
|
|
1802
|
+
UpdateBrowserStream: string;
|
|
1803
|
+
UpdateGateway: string;
|
|
1804
|
+
UpdateGatewayTarget: string;
|
|
1805
|
+
UpdateMemory: string;
|
|
1806
|
+
UpdateOauth2CredentialProvider: string;
|
|
1807
|
+
UpdateWorkloadIdentity: string;
|
|
1808
|
+
};
|
|
1647
1809
|
bedrock: {
|
|
1648
1810
|
AllowVendedLogDeliveryForResource: string;
|
|
1649
1811
|
ApplyGuardrail: string;
|
|
@@ -1651,11 +1813,18 @@ export declare const Actions: {
|
|
|
1651
1813
|
AssociateAgentKnowledgeBase: string;
|
|
1652
1814
|
AssociateThirdPartyKnowledgeBase: string;
|
|
1653
1815
|
BatchDeleteEvaluationJob: string;
|
|
1816
|
+
CallWithBearerToken: string;
|
|
1817
|
+
CancelAutomatedReasoningPolicyBuildWorkflow: string;
|
|
1654
1818
|
CreateAgent: string;
|
|
1655
1819
|
CreateAgentActionGroup: string;
|
|
1656
1820
|
CreateAgentAlias: string;
|
|
1821
|
+
CreateAutomatedReasoningPolicy: string;
|
|
1822
|
+
CreateAutomatedReasoningPolicyTestCase: string;
|
|
1823
|
+
CreateAutomatedReasoningPolicyVersion: string;
|
|
1657
1824
|
CreateBlueprint: string;
|
|
1658
1825
|
CreateBlueprintVersion: string;
|
|
1826
|
+
CreateCustomModel: string;
|
|
1827
|
+
CreateCustomModelDeployment: string;
|
|
1659
1828
|
CreateDataAutomationProject: string;
|
|
1660
1829
|
CreateDataSource: string;
|
|
1661
1830
|
CreateEvaluationJob: string;
|
|
@@ -1684,8 +1853,12 @@ export declare const Actions: {
|
|
|
1684
1853
|
DeleteAgentAlias: string;
|
|
1685
1854
|
DeleteAgentMemory: string;
|
|
1686
1855
|
DeleteAgentVersion: string;
|
|
1856
|
+
DeleteAutomatedReasoningPolicy: string;
|
|
1857
|
+
DeleteAutomatedReasoningPolicyBuildWorkflow: string;
|
|
1858
|
+
DeleteAutomatedReasoningPolicyTestCase: string;
|
|
1687
1859
|
DeleteBlueprint: string;
|
|
1688
1860
|
DeleteCustomModel: string;
|
|
1861
|
+
DeleteCustomModelDeployment: string;
|
|
1689
1862
|
DeleteDataAutomationProject: string;
|
|
1690
1863
|
DeleteDataSource: string;
|
|
1691
1864
|
DeleteFlow: string;
|
|
@@ -1710,6 +1883,7 @@ export declare const Actions: {
|
|
|
1710
1883
|
DisassociateAgentCollaborator: string;
|
|
1711
1884
|
DisassociateAgentKnowledgeBase: string;
|
|
1712
1885
|
EndSession: string;
|
|
1886
|
+
ExportAutomatedReasoningPolicyVersion: string;
|
|
1713
1887
|
GenerateQuery: string;
|
|
1714
1888
|
GetAgent: string;
|
|
1715
1889
|
GetAgentActionGroup: string;
|
|
@@ -1719,15 +1893,25 @@ export declare const Actions: {
|
|
|
1719
1893
|
GetAgentMemory: string;
|
|
1720
1894
|
GetAgentVersion: string;
|
|
1721
1895
|
GetAsyncInvoke: string;
|
|
1896
|
+
GetAutomatedReasoningPolicy: string;
|
|
1897
|
+
GetAutomatedReasoningPolicyAnnotations: string;
|
|
1898
|
+
GetAutomatedReasoningPolicyBuildWorkflow: string;
|
|
1899
|
+
GetAutomatedReasoningPolicyBuildWorkflowResultAssets: string;
|
|
1900
|
+
GetAutomatedReasoningPolicyNextScenario: string;
|
|
1901
|
+
GetAutomatedReasoningPolicyTestCase: string;
|
|
1902
|
+
GetAutomatedReasoningPolicyTestResult: string;
|
|
1722
1903
|
GetBlueprint: string;
|
|
1723
1904
|
GetBlueprintRecommendation: string;
|
|
1724
1905
|
GetCustomModel: string;
|
|
1906
|
+
GetCustomModelDeployment: string;
|
|
1725
1907
|
GetDataAutomationProject: string;
|
|
1726
1908
|
GetDataAutomationStatus: string;
|
|
1727
1909
|
GetDataSource: string;
|
|
1728
1910
|
GetEvaluationJob: string;
|
|
1911
|
+
GetExecutionFlowSnapshot: string;
|
|
1729
1912
|
GetFlow: string;
|
|
1730
1913
|
GetFlowAlias: string;
|
|
1914
|
+
GetFlowExecution: string;
|
|
1731
1915
|
GetFlowVersion: string;
|
|
1732
1916
|
GetFoundationModel: string;
|
|
1733
1917
|
GetFoundationModelAvailability: string;
|
|
@@ -1753,6 +1937,7 @@ export declare const Actions: {
|
|
|
1753
1937
|
GetUseCaseForModelAccess: string;
|
|
1754
1938
|
IngestKnowledgeBaseDocuments: string;
|
|
1755
1939
|
InvokeAgent: string;
|
|
1940
|
+
InvokeAutomatedReasoningPolicy: string;
|
|
1756
1941
|
InvokeBlueprintRecommendationAsync: string;
|
|
1757
1942
|
InvokeBuilder: string;
|
|
1758
1943
|
InvokeDataAutomationAsync: string;
|
|
@@ -1767,12 +1952,19 @@ export declare const Actions: {
|
|
|
1767
1952
|
ListAgents: string;
|
|
1768
1953
|
ListAgentVersions: string;
|
|
1769
1954
|
ListAsyncInvokes: string;
|
|
1955
|
+
ListAutomatedReasoningPolicies: string;
|
|
1956
|
+
ListAutomatedReasoningPolicyBuildWorkflows: string;
|
|
1957
|
+
ListAutomatedReasoningPolicyTestCases: string;
|
|
1958
|
+
ListAutomatedReasoningPolicyTestResults: string;
|
|
1770
1959
|
ListBlueprints: string;
|
|
1960
|
+
ListCustomModelDeployments: string;
|
|
1771
1961
|
ListCustomModels: string;
|
|
1772
1962
|
ListDataAutomationProjects: string;
|
|
1773
1963
|
ListDataSources: string;
|
|
1774
1964
|
ListEvaluationJobs: string;
|
|
1775
1965
|
ListFlowAliases: string;
|
|
1966
|
+
ListFlowExecutionEvents: string;
|
|
1967
|
+
ListFlowExecutions: string;
|
|
1776
1968
|
ListFlows: string;
|
|
1777
1969
|
ListFlowVersions: string;
|
|
1778
1970
|
ListFoundationModelAgreementOffers: string;
|
|
@@ -1809,8 +2001,12 @@ export declare const Actions: {
|
|
|
1809
2001
|
Rerank: string;
|
|
1810
2002
|
Retrieve: string;
|
|
1811
2003
|
RetrieveAndGenerate: string;
|
|
2004
|
+
StartAutomatedReasoningPolicyBuildWorkflow: string;
|
|
2005
|
+
StartAutomatedReasoningPolicyTestWorkflow: string;
|
|
2006
|
+
StartFlowExecution: string;
|
|
1812
2007
|
StartIngestionJob: string;
|
|
1813
2008
|
StopEvaluationJob: string;
|
|
2009
|
+
StopFlowExecution: string;
|
|
1814
2010
|
StopIngestionJob: string;
|
|
1815
2011
|
StopModelCustomizationJob: string;
|
|
1816
2012
|
StopModelInvocationJob: string;
|
|
@@ -1821,6 +2017,9 @@ export declare const Actions: {
|
|
|
1821
2017
|
UpdateAgentAlias: string;
|
|
1822
2018
|
UpdateAgentCollaborator: string;
|
|
1823
2019
|
UpdateAgentKnowledgeBase: string;
|
|
2020
|
+
UpdateAutomatedReasoningPolicy: string;
|
|
2021
|
+
UpdateAutomatedReasoningPolicyAnnotations: string;
|
|
2022
|
+
UpdateAutomatedReasoningPolicyTestCase: string;
|
|
1824
2023
|
UpdateBlueprint: string;
|
|
1825
2024
|
UpdateDataAutomationProject: string;
|
|
1826
2025
|
UpdateDataSource: string;
|
|
@@ -1843,6 +2042,7 @@ export declare const Actions: {
|
|
|
1843
2042
|
GetBillingNotifications: string;
|
|
1844
2043
|
GetBillingPreferences: string;
|
|
1845
2044
|
GetBillingView: string;
|
|
2045
|
+
GetBillingViewData: string;
|
|
1846
2046
|
GetContractInformation: string;
|
|
1847
2047
|
GetCredits: string;
|
|
1848
2048
|
GetIAMAccessPreference: string;
|
|
@@ -1896,7 +2096,6 @@ export declare const Actions: {
|
|
|
1896
2096
|
};
|
|
1897
2097
|
braket: {
|
|
1898
2098
|
AcceptUserAgreement: string;
|
|
1899
|
-
AccessBraketFeature: string;
|
|
1900
2099
|
CancelJob: string;
|
|
1901
2100
|
CancelQuantumTask: string;
|
|
1902
2101
|
CreateJob: string;
|
|
@@ -1958,6 +2157,7 @@ export declare const Actions: {
|
|
|
1958
2157
|
CreateLayout: string;
|
|
1959
2158
|
CreateRelatedItem: string;
|
|
1960
2159
|
CreateTemplate: string;
|
|
2160
|
+
DeleteCase: string;
|
|
1961
2161
|
DeleteCaseRule: string;
|
|
1962
2162
|
DeleteDomain: string;
|
|
1963
2163
|
DeleteField: string;
|
|
@@ -1996,6 +2196,10 @@ export declare const Actions: {
|
|
|
1996
2196
|
CreateMultiRegionResource: string;
|
|
1997
2197
|
Drop: string;
|
|
1998
2198
|
DropMultiRegionResource: string;
|
|
2199
|
+
GetRecords: string;
|
|
2200
|
+
GetShardIterator: string;
|
|
2201
|
+
GetStream: string;
|
|
2202
|
+
ListStreams: string;
|
|
1999
2203
|
Modify: string;
|
|
2000
2204
|
ModifyMultiRegionResource: string;
|
|
2001
2205
|
Restore: string;
|
|
@@ -2029,8 +2233,10 @@ export declare const Actions: {
|
|
|
2029
2233
|
GetCommitmentPurchaseAnalysis: string;
|
|
2030
2234
|
GetConsoleActionSetEnforced: string;
|
|
2031
2235
|
GetCostAndUsage: string;
|
|
2236
|
+
GetCostAndUsageComparisons: string;
|
|
2032
2237
|
GetCostAndUsageWithResources: string;
|
|
2033
2238
|
GetCostCategories: string;
|
|
2239
|
+
GetCostComparisonDrivers: string;
|
|
2034
2240
|
GetCostForecast: string;
|
|
2035
2241
|
GetDimensionValues: string;
|
|
2036
2242
|
GetPreferences: string;
|
|
@@ -2474,6 +2680,7 @@ export declare const Actions: {
|
|
|
2474
2680
|
ListTagsForResource: string;
|
|
2475
2681
|
ListTrainedModelInferenceJobs: string;
|
|
2476
2682
|
ListTrainedModels: string;
|
|
2683
|
+
ListTrainedModelVersions: string;
|
|
2477
2684
|
ListTrainingDatasets: string;
|
|
2478
2685
|
PutConfiguredAudienceModelPolicy: string;
|
|
2479
2686
|
PutMLConfiguration: string;
|
|
@@ -2563,9 +2770,11 @@ export declare const Actions: {
|
|
|
2563
2770
|
UpdateCollaboration: string;
|
|
2564
2771
|
UpdateConfiguredAudienceModelAssociation: string;
|
|
2565
2772
|
UpdateConfiguredTable: string;
|
|
2773
|
+
UpdateConfiguredTableAllowedColumns: string;
|
|
2566
2774
|
UpdateConfiguredTableAnalysisRule: string;
|
|
2567
2775
|
UpdateConfiguredTableAssociation: string;
|
|
2568
2776
|
UpdateConfiguredTableAssociationAnalysisRule: string;
|
|
2777
|
+
UpdateConfiguredTableReference: string;
|
|
2569
2778
|
UpdateIdMappingTable: string;
|
|
2570
2779
|
UpdateIdNamespaceAssociation: string;
|
|
2571
2780
|
UpdateMembership: string;
|
|
@@ -2603,7 +2812,6 @@ export declare const Actions: {
|
|
|
2603
2812
|
UpdateMembershipSettings: string;
|
|
2604
2813
|
UpdateSSHRemote: string;
|
|
2605
2814
|
UpdateUserSettings: string;
|
|
2606
|
-
ValidateEnvironmentName: string;
|
|
2607
2815
|
};
|
|
2608
2816
|
clouddirectory: {
|
|
2609
2817
|
AddFacetToObject: string;
|
|
@@ -2785,16 +2993,21 @@ export declare const Actions: {
|
|
|
2785
2993
|
cloudfront: {
|
|
2786
2994
|
AllowVendedLogDeliveryForResource: string;
|
|
2787
2995
|
AssociateAlias: string;
|
|
2996
|
+
AssociateDistributionTenantWebACL: string;
|
|
2997
|
+
AssociateDistributionWebACL: string;
|
|
2788
2998
|
CopyDistribution: string;
|
|
2789
2999
|
CreateAnycastIpList: string;
|
|
2790
3000
|
CreateCachePolicy: string;
|
|
2791
3001
|
CreateCloudFrontOriginAccessIdentity: string;
|
|
3002
|
+
CreateConnectionGroup: string;
|
|
2792
3003
|
CreateContinuousDeploymentPolicy: string;
|
|
2793
3004
|
CreateDistribution: string;
|
|
3005
|
+
CreateDistributionTenant: string;
|
|
2794
3006
|
CreateFieldLevelEncryptionConfig: string;
|
|
2795
3007
|
CreateFieldLevelEncryptionProfile: string;
|
|
2796
3008
|
CreateFunction: string;
|
|
2797
3009
|
CreateInvalidation: string;
|
|
3010
|
+
CreateInvalidationForDistributionTenant: string;
|
|
2798
3011
|
CreateKeyGroup: string;
|
|
2799
3012
|
CreateKeyValueStore: string;
|
|
2800
3013
|
CreateMonitoringSubscription: string;
|
|
@@ -2810,8 +3023,10 @@ export declare const Actions: {
|
|
|
2810
3023
|
DeleteAnycastIpList: string;
|
|
2811
3024
|
DeleteCachePolicy: string;
|
|
2812
3025
|
DeleteCloudFrontOriginAccessIdentity: string;
|
|
3026
|
+
DeleteConnectionGroup: string;
|
|
2813
3027
|
DeleteContinuousDeploymentPolicy: string;
|
|
2814
3028
|
DeleteDistribution: string;
|
|
3029
|
+
DeleteDistributionTenant: string;
|
|
2815
3030
|
DeleteFieldLevelEncryptionConfig: string;
|
|
2816
3031
|
DeleteFieldLevelEncryptionProfile: string;
|
|
2817
3032
|
DeleteFunction: string;
|
|
@@ -2827,23 +3042,31 @@ export declare const Actions: {
|
|
|
2827
3042
|
DeleteVpcOrigin: string;
|
|
2828
3043
|
DescribeFunction: string;
|
|
2829
3044
|
DescribeKeyValueStore: string;
|
|
3045
|
+
DisassociateDistributionTenantWebACL: string;
|
|
3046
|
+
DisassociateDistributionWebACL: string;
|
|
2830
3047
|
GetAnycastIpList: string;
|
|
2831
3048
|
GetCachePolicy: string;
|
|
2832
3049
|
GetCachePolicyConfig: string;
|
|
2833
3050
|
GetCloudFrontOriginAccessIdentity: string;
|
|
2834
3051
|
GetCloudFrontOriginAccessIdentityConfig: string;
|
|
3052
|
+
GetConnectionGroup: string;
|
|
3053
|
+
GetConnectionGroupByRoutingEndpoint: string;
|
|
2835
3054
|
GetContinuousDeploymentPolicy: string;
|
|
2836
3055
|
GetContinuousDeploymentPolicyConfig: string;
|
|
2837
3056
|
GetDistribution: string;
|
|
2838
3057
|
GetDistributionConfig: string;
|
|
3058
|
+
GetDistributionTenant: string;
|
|
3059
|
+
GetDistributionTenantByDomain: string;
|
|
2839
3060
|
GetFieldLevelEncryption: string;
|
|
2840
3061
|
GetFieldLevelEncryptionConfig: string;
|
|
2841
3062
|
GetFieldLevelEncryptionProfile: string;
|
|
2842
3063
|
GetFieldLevelEncryptionProfileConfig: string;
|
|
2843
3064
|
GetFunction: string;
|
|
2844
3065
|
GetInvalidation: string;
|
|
3066
|
+
GetInvalidationForDistributionTenant: string;
|
|
2845
3067
|
GetKeyGroup: string;
|
|
2846
3068
|
GetKeyGroupConfig: string;
|
|
3069
|
+
GetManagedCertificateDetails: string;
|
|
2847
3070
|
GetMonitoringSubscription: string;
|
|
2848
3071
|
GetOriginAccessControl: string;
|
|
2849
3072
|
GetOriginAccessControlConfig: string;
|
|
@@ -2862,10 +3085,12 @@ export declare const Actions: {
|
|
|
2862
3085
|
ListCachePolicies: string;
|
|
2863
3086
|
ListCloudFrontOriginAccessIdentities: string;
|
|
2864
3087
|
ListConflictingAliases: string;
|
|
3088
|
+
ListConnectionGroups: string;
|
|
2865
3089
|
ListContinuousDeploymentPolicies: string;
|
|
2866
3090
|
ListDistributions: string;
|
|
2867
3091
|
ListDistributionsByAnycastIpListId: string;
|
|
2868
3092
|
ListDistributionsByCachePolicyId: string;
|
|
3093
|
+
ListDistributionsByConnectionMode: string;
|
|
2869
3094
|
ListDistributionsByKeyGroup: string;
|
|
2870
3095
|
ListDistributionsByLambdaFunction: string;
|
|
2871
3096
|
ListDistributionsByOriginRequestPolicyId: string;
|
|
@@ -2873,10 +3098,14 @@ export declare const Actions: {
|
|
|
2873
3098
|
ListDistributionsByResponseHeadersPolicyId: string;
|
|
2874
3099
|
ListDistributionsByVpcOriginId: string;
|
|
2875
3100
|
ListDistributionsByWebACLId: string;
|
|
3101
|
+
ListDistributionTenants: string;
|
|
3102
|
+
ListDistributionTenantsByCustomization: string;
|
|
3103
|
+
ListDomainConflicts: string;
|
|
2876
3104
|
ListFieldLevelEncryptionConfigs: string;
|
|
2877
3105
|
ListFieldLevelEncryptionProfiles: string;
|
|
2878
3106
|
ListFunctions: string;
|
|
2879
3107
|
ListInvalidations: string;
|
|
3108
|
+
ListInvalidationsForDistributionTenant: string;
|
|
2880
3109
|
ListKeyGroups: string;
|
|
2881
3110
|
ListKeyValueStores: string;
|
|
2882
3111
|
ListOriginAccessControls: string;
|
|
@@ -2896,9 +3125,12 @@ export declare const Actions: {
|
|
|
2896
3125
|
UntagResource: string;
|
|
2897
3126
|
UpdateCachePolicy: string;
|
|
2898
3127
|
UpdateCloudFrontOriginAccessIdentity: string;
|
|
3128
|
+
UpdateConnectionGroup: string;
|
|
2899
3129
|
UpdateContinuousDeploymentPolicy: string;
|
|
2900
3130
|
UpdateDistribution: string;
|
|
3131
|
+
UpdateDistributionTenant: string;
|
|
2901
3132
|
UpdateDistributionWithStagingConfig: string;
|
|
3133
|
+
UpdateDomainAssociation: string;
|
|
2902
3134
|
UpdateFieldLevelEncryptionConfig: string;
|
|
2903
3135
|
UpdateFieldLevelEncryptionProfile: string;
|
|
2904
3136
|
UpdateFunction: string;
|
|
@@ -2912,6 +3144,7 @@ export declare const Actions: {
|
|
|
2912
3144
|
UpdateSavingsPlan: string;
|
|
2913
3145
|
UpdateStreamingDistribution: string;
|
|
2914
3146
|
UpdateVpcOrigin: string;
|
|
3147
|
+
VerifyDnsConfiguration: string;
|
|
2915
3148
|
};
|
|
2916
3149
|
cloudhsm: {
|
|
2917
3150
|
CopyBackupToRegion: string;
|
|
@@ -3006,6 +3239,7 @@ export declare const Actions: {
|
|
|
3006
3239
|
GenerateQueryResultsSummary: string;
|
|
3007
3240
|
GetChannel: string;
|
|
3008
3241
|
GetDashboard: string;
|
|
3242
|
+
GetEventConfiguration: string;
|
|
3009
3243
|
GetEventDataStore: string;
|
|
3010
3244
|
GetEventDataStoreData: string;
|
|
3011
3245
|
GetEventSelectors: string;
|
|
@@ -3027,6 +3261,7 @@ export declare const Actions: {
|
|
|
3027
3261
|
ListTags: string;
|
|
3028
3262
|
ListTrails: string;
|
|
3029
3263
|
LookupEvents: string;
|
|
3264
|
+
PutEventConfiguration: string;
|
|
3030
3265
|
PutEventSelectors: string;
|
|
3031
3266
|
PutInsightSelectors: string;
|
|
3032
3267
|
PutResourcePolicy: string;
|
|
@@ -3069,6 +3304,7 @@ export declare const Actions: {
|
|
|
3069
3304
|
EnableInsightRules: string;
|
|
3070
3305
|
EnableTopologyDiscovery: string;
|
|
3071
3306
|
GenerateQuery: string;
|
|
3307
|
+
GenerateQueryResultsSummary: string;
|
|
3072
3308
|
GetDashboard: string;
|
|
3073
3309
|
GetInsightRuleReport: string;
|
|
3074
3310
|
GetMetricData: string;
|
|
@@ -3161,10 +3397,12 @@ export declare const Actions: {
|
|
|
3161
3397
|
BatchDeleteBuilds: string;
|
|
3162
3398
|
BatchGetBuildBatches: string;
|
|
3163
3399
|
BatchGetBuilds: string;
|
|
3400
|
+
BatchGetCommandExecutions: string;
|
|
3164
3401
|
BatchGetFleets: string;
|
|
3165
3402
|
BatchGetProjects: string;
|
|
3166
3403
|
BatchGetReportGroups: string;
|
|
3167
3404
|
BatchGetReports: string;
|
|
3405
|
+
BatchGetSandboxes: string;
|
|
3168
3406
|
BatchPutCodeCoverages: string;
|
|
3169
3407
|
BatchPutTestCases: string;
|
|
3170
3408
|
CreateFleet: string;
|
|
@@ -3191,6 +3429,7 @@ export declare const Actions: {
|
|
|
3191
3429
|
ListBuildBatchesForProject: string;
|
|
3192
3430
|
ListBuilds: string;
|
|
3193
3431
|
ListBuildsForProject: string;
|
|
3432
|
+
ListCommandExecutionsForSandbox: string;
|
|
3194
3433
|
ListConnectedOAuthAccounts: string;
|
|
3195
3434
|
ListCuratedEnvironmentImages: string;
|
|
3196
3435
|
ListFleets: string;
|
|
@@ -3199,6 +3438,8 @@ export declare const Actions: {
|
|
|
3199
3438
|
ListReports: string;
|
|
3200
3439
|
ListReportsForReportGroup: string;
|
|
3201
3440
|
ListRepositories: string;
|
|
3441
|
+
ListSandboxes: string;
|
|
3442
|
+
ListSandboxesForProject: string;
|
|
3202
3443
|
ListSharedProjects: string;
|
|
3203
3444
|
ListSharedReportGroups: string;
|
|
3204
3445
|
ListSourceCredentials: string;
|
|
@@ -3208,8 +3449,12 @@ export declare const Actions: {
|
|
|
3208
3449
|
RetryBuildBatch: string;
|
|
3209
3450
|
StartBuild: string;
|
|
3210
3451
|
StartBuildBatch: string;
|
|
3452
|
+
StartCommandExecution: string;
|
|
3453
|
+
StartSandbox: string;
|
|
3454
|
+
StartSandboxConnection: string;
|
|
3211
3455
|
StopBuild: string;
|
|
3212
3456
|
StopBuildBatch: string;
|
|
3457
|
+
StopSandbox: string;
|
|
3213
3458
|
UpdateFleet: string;
|
|
3214
3459
|
UpdateProject: string;
|
|
3215
3460
|
UpdateProjectVisibility: string;
|
|
@@ -3520,6 +3765,7 @@ export declare const Actions: {
|
|
|
3520
3765
|
GetThirdPartyJobDetails: string;
|
|
3521
3766
|
ListActionExecutions: string;
|
|
3522
3767
|
ListActionTypes: string;
|
|
3768
|
+
ListDeployActionExecutionTargets: string;
|
|
3523
3769
|
ListPipelineExecutions: string;
|
|
3524
3770
|
ListPipelines: string;
|
|
3525
3771
|
ListRuleExecutions: string;
|
|
@@ -3742,6 +3988,7 @@ export declare const Actions: {
|
|
|
3742
3988
|
GetIdentityProviderByIdentifier: string;
|
|
3743
3989
|
GetLogDeliveryConfiguration: string;
|
|
3744
3990
|
GetSigningCertificate: string;
|
|
3991
|
+
GetTokensFromRefreshToken: string;
|
|
3745
3992
|
GetUICustomization: string;
|
|
3746
3993
|
GetUser: string;
|
|
3747
3994
|
GetUserAttributeVerificationCode: string;
|
|
@@ -4064,6 +4311,7 @@ export declare const Actions: {
|
|
|
4064
4311
|
GetCampaignState: string;
|
|
4065
4312
|
GetCampaignStateBatch: string;
|
|
4066
4313
|
GetConnectInstanceConfig: string;
|
|
4314
|
+
GetInstanceCommunicationLimits: string;
|
|
4067
4315
|
GetInstanceOnboardingJobStatus: string;
|
|
4068
4316
|
ListCampaigns: string;
|
|
4069
4317
|
ListConnectInstanceIntegrations: string;
|
|
@@ -4071,6 +4319,7 @@ export declare const Actions: {
|
|
|
4071
4319
|
PauseCampaign: string;
|
|
4072
4320
|
PutConnectInstanceIntegration: string;
|
|
4073
4321
|
PutDialRequestBatch: string;
|
|
4322
|
+
PutInstanceCommunicationLimits: string;
|
|
4074
4323
|
PutOutboundRequestBatch: string;
|
|
4075
4324
|
PutProfileOutboundRequestBatch: string;
|
|
4076
4325
|
ResumeCampaign: string;
|
|
@@ -4217,6 +4466,7 @@ export declare const Actions: {
|
|
|
4217
4466
|
DismissUserContact: string;
|
|
4218
4467
|
GetAttachedFile: string;
|
|
4219
4468
|
GetContactAttributes: string;
|
|
4469
|
+
GetContactMetrics: string;
|
|
4220
4470
|
GetCurrentMetricData: string;
|
|
4221
4471
|
GetCurrentUserData: string;
|
|
4222
4472
|
GetEffectiveHoursOfOperations: string;
|
|
@@ -4393,6 +4643,7 @@ export declare const Actions: {
|
|
|
4393
4643
|
controlcatalog: {
|
|
4394
4644
|
GetControl: string;
|
|
4395
4645
|
ListCommonControls: string;
|
|
4646
|
+
ListControlMappings: string;
|
|
4396
4647
|
ListControls: string;
|
|
4397
4648
|
ListDomains: string;
|
|
4398
4649
|
ListObjectives: string;
|
|
@@ -4679,10 +4930,12 @@ export declare const Actions: {
|
|
|
4679
4930
|
AddEntityOwner: string;
|
|
4680
4931
|
AddPolicyGrant: string;
|
|
4681
4932
|
AssociateEnvironmentRole: string;
|
|
4933
|
+
AssociateGovernedTerms: string;
|
|
4682
4934
|
BatchDeleteLinkedTypes: string;
|
|
4683
4935
|
BatchPutLinkedTypes: string;
|
|
4684
4936
|
CancelMetadataGenerationRun: string;
|
|
4685
4937
|
CancelSubscription: string;
|
|
4938
|
+
CreateAccountPool: string;
|
|
4686
4939
|
CreateAsset: string;
|
|
4687
4940
|
CreateAssetFilter: string;
|
|
4688
4941
|
CreateAssetRevision: string;
|
|
@@ -4710,6 +4963,7 @@ export declare const Actions: {
|
|
|
4710
4963
|
CreateSubscriptionRequest: string;
|
|
4711
4964
|
CreateSubscriptionTarget: string;
|
|
4712
4965
|
CreateUserProfile: string;
|
|
4966
|
+
DeleteAccountPool: string;
|
|
4713
4967
|
DeleteAsset: string;
|
|
4714
4968
|
DeleteAssetFilter: string;
|
|
4715
4969
|
DeleteAssetType: string;
|
|
@@ -4737,6 +4991,8 @@ export declare const Actions: {
|
|
|
4737
4991
|
DeleteSubscriptionTarget: string;
|
|
4738
4992
|
DeleteTimeSeriesDataPoints: string;
|
|
4739
4993
|
DisassociateEnvironmentRole: string;
|
|
4994
|
+
DisassociateGovernedTerms: string;
|
|
4995
|
+
GetAccountPool: string;
|
|
4740
4996
|
GetAsset: string;
|
|
4741
4997
|
GetAssetFilter: string;
|
|
4742
4998
|
GetAssetType: string;
|
|
@@ -4777,6 +5033,8 @@ export declare const Actions: {
|
|
|
4777
5033
|
GetUpdateEligibility: string;
|
|
4778
5034
|
GetUserProfile: string;
|
|
4779
5035
|
ListAccountEnvironments: string;
|
|
5036
|
+
ListAccountPools: string;
|
|
5037
|
+
ListAccountsInAccountPool: string;
|
|
4780
5038
|
ListAssetFilters: string;
|
|
4781
5039
|
ListAssetRevisions: string;
|
|
4782
5040
|
ListConnections: string;
|
|
@@ -4831,11 +5089,13 @@ export declare const Actions: {
|
|
|
4831
5089
|
SearchUserProfiles: string;
|
|
4832
5090
|
SsoLogin: string;
|
|
4833
5091
|
SsoLogout: string;
|
|
5092
|
+
StartAccountBootstrapAction: string;
|
|
4834
5093
|
StartDataSourceRun: string;
|
|
4835
5094
|
StartMetadataGenerationRun: string;
|
|
4836
5095
|
StopMetadataGenerationRun: string;
|
|
4837
5096
|
TagResource: string;
|
|
4838
5097
|
UntagResource: string;
|
|
5098
|
+
UpdateAccountPool: string;
|
|
4839
5099
|
UpdateAssetFilter: string;
|
|
4840
5100
|
UpdateConnection: string;
|
|
4841
5101
|
UpdateDataSource: string;
|
|
@@ -5360,9 +5620,6 @@ export declare const Actions: {
|
|
|
5360
5620
|
ApplyPendingMaintenanceAction: string;
|
|
5361
5621
|
AssociateExtensionPack: string;
|
|
5362
5622
|
BatchStartRecommendations: string;
|
|
5363
|
-
CancelMetadataModelAssessment: string;
|
|
5364
|
-
CancelMetadataModelConversion: string;
|
|
5365
|
-
CancelMetadataModelExport: string;
|
|
5366
5623
|
CancelReplicationTaskAssessmentRun: string;
|
|
5367
5624
|
CreateDataMigration: string;
|
|
5368
5625
|
CreateDataProvider: string;
|
|
@@ -5396,7 +5653,6 @@ export declare const Actions: {
|
|
|
5396
5653
|
DescribeConnections: string;
|
|
5397
5654
|
DescribeConversionConfiguration: string;
|
|
5398
5655
|
DescribeDataMigrations: string;
|
|
5399
|
-
DescribeDataProviders: string;
|
|
5400
5656
|
DescribeEndpoints: string;
|
|
5401
5657
|
DescribeEndpointSettings: string;
|
|
5402
5658
|
DescribeEndpointTypes: string;
|
|
@@ -5404,19 +5660,12 @@ export declare const Actions: {
|
|
|
5404
5660
|
DescribeEventCategories: string;
|
|
5405
5661
|
DescribeEvents: string;
|
|
5406
5662
|
DescribeEventSubscriptions: string;
|
|
5407
|
-
DescribeExtensionPackAssociations: string;
|
|
5408
5663
|
DescribeFleetAdvisorCollectors: string;
|
|
5409
5664
|
DescribeFleetAdvisorDatabases: string;
|
|
5410
5665
|
DescribeFleetAdvisorLsaAnalysis: string;
|
|
5411
5666
|
DescribeFleetAdvisorSchemaObjectSummary: string;
|
|
5412
5667
|
DescribeFleetAdvisorSchemas: string;
|
|
5413
|
-
DescribeInstanceProfiles: string;
|
|
5414
|
-
DescribeMetadataModelAssessments: string;
|
|
5415
|
-
DescribeMetadataModelConversions: string;
|
|
5416
|
-
DescribeMetadataModelExportsAsScript: string;
|
|
5417
|
-
DescribeMetadataModelExportsToTarget: string;
|
|
5418
5668
|
DescribeMetadataModelImports: string;
|
|
5419
|
-
DescribeMigrationProjects: string;
|
|
5420
5669
|
DescribeOrderableReplicationInstances: string;
|
|
5421
5670
|
DescribePendingMaintenanceActions: string;
|
|
5422
5671
|
DescribeRecommendationLimitations: string;
|
|
@@ -5434,9 +5683,7 @@ export declare const Actions: {
|
|
|
5434
5683
|
DescribeReplicationTasks: string;
|
|
5435
5684
|
DescribeSchemas: string;
|
|
5436
5685
|
DescribeTableStatistics: string;
|
|
5437
|
-
DisassociateExtensionPack: string;
|
|
5438
5686
|
ExportMetadataModelAssessment: string;
|
|
5439
|
-
GetMetadataModel: string;
|
|
5440
5687
|
ImportCertificate: string;
|
|
5441
5688
|
ListDataProviders: string;
|
|
5442
5689
|
ListExtensionPacks: string;
|
|
@@ -5447,15 +5694,11 @@ export declare const Actions: {
|
|
|
5447
5694
|
ListMetadataModelExports: string;
|
|
5448
5695
|
ListMigrationProjects: string;
|
|
5449
5696
|
ListTagsForResource: string;
|
|
5450
|
-
ModifyConversionConfiguration: string;
|
|
5451
5697
|
ModifyDataMigration: string;
|
|
5452
|
-
ModifyDataProvider: string;
|
|
5453
5698
|
ModifyEndpoint: string;
|
|
5454
5699
|
ModifyEventSubscription: string;
|
|
5455
5700
|
ModifyFleetAdvisorCollector: string;
|
|
5456
5701
|
ModifyFleetAdvisorCollectorStatuses: string;
|
|
5457
|
-
ModifyInstanceProfile: string;
|
|
5458
|
-
ModifyMigrationProject: string;
|
|
5459
5702
|
ModifyReplicationConfig: string;
|
|
5460
5703
|
ModifyReplicationInstance: string;
|
|
5461
5704
|
ModifyReplicationSubnetGroup: string;
|
|
@@ -5468,10 +5711,8 @@ export declare const Actions: {
|
|
|
5468
5711
|
RemoveTagsFromResource: string;
|
|
5469
5712
|
RunFleetAdvisorLsaAnalysis: string;
|
|
5470
5713
|
StartDataMigration: string;
|
|
5471
|
-
StartExtensionPackAssociation: string;
|
|
5472
5714
|
StartMetadataModelAssessment: string;
|
|
5473
5715
|
StartMetadataModelConversion: string;
|
|
5474
|
-
StartMetadataModelExportAsScript: string;
|
|
5475
5716
|
StartMetadataModelExportAsScripts: string;
|
|
5476
5717
|
StartMetadataModelExportToTarget: string;
|
|
5477
5718
|
StartMetadataModelImport: string;
|
|
@@ -5637,11 +5878,13 @@ export declare const Actions: {
|
|
|
5637
5878
|
CreateComputer: string;
|
|
5638
5879
|
CreateConditionalForwarder: string;
|
|
5639
5880
|
CreateDirectory: string;
|
|
5881
|
+
CreateHybridAD: string;
|
|
5640
5882
|
CreateIdentityPoolDirectory: string;
|
|
5641
5883
|
CreateLogSubscription: string;
|
|
5642
5884
|
CreateMicrosoftAD: string;
|
|
5643
5885
|
CreateSnapshot: string;
|
|
5644
5886
|
CreateTrust: string;
|
|
5887
|
+
DeleteADAssessment: string;
|
|
5645
5888
|
DeleteConditionalForwarder: string;
|
|
5646
5889
|
DeleteDirectory: string;
|
|
5647
5890
|
DeleteLogSubscription: string;
|
|
@@ -5649,6 +5892,8 @@ export declare const Actions: {
|
|
|
5649
5892
|
DeleteTrust: string;
|
|
5650
5893
|
DeregisterCertificate: string;
|
|
5651
5894
|
DeregisterEventTopic: string;
|
|
5895
|
+
DescribeADAssessment: string;
|
|
5896
|
+
DescribeCAEnrollmentPolicy: string;
|
|
5652
5897
|
DescribeCertificate: string;
|
|
5653
5898
|
DescribeClientAuthenticationSettings: string;
|
|
5654
5899
|
DescribeConditionalForwarders: string;
|
|
@@ -5656,6 +5901,7 @@ export declare const Actions: {
|
|
|
5656
5901
|
DescribeDirectoryDataAccess: string;
|
|
5657
5902
|
DescribeDomainControllers: string;
|
|
5658
5903
|
DescribeEventTopics: string;
|
|
5904
|
+
DescribeHybridADUpdate: string;
|
|
5659
5905
|
DescribeLDAPSSettings: string;
|
|
5660
5906
|
DescribeRegions: string;
|
|
5661
5907
|
DescribeSettings: string;
|
|
@@ -5663,12 +5909,14 @@ export declare const Actions: {
|
|
|
5663
5909
|
DescribeSnapshots: string;
|
|
5664
5910
|
DescribeTrusts: string;
|
|
5665
5911
|
DescribeUpdateDirectory: string;
|
|
5912
|
+
DisableCAEnrollmentPolicy: string;
|
|
5666
5913
|
DisableClientAuthentication: string;
|
|
5667
5914
|
DisableDirectoryDataAccess: string;
|
|
5668
5915
|
DisableLDAPS: string;
|
|
5669
5916
|
DisableRadius: string;
|
|
5670
5917
|
DisableRoleAccess: string;
|
|
5671
5918
|
DisableSso: string;
|
|
5919
|
+
EnableCAEnrollmentPolicy: string;
|
|
5672
5920
|
EnableClientAuthentication: string;
|
|
5673
5921
|
EnableDirectoryDataAccess: string;
|
|
5674
5922
|
EnableLDAPS: string;
|
|
@@ -5678,6 +5926,7 @@ export declare const Actions: {
|
|
|
5678
5926
|
GetAuthorizedApplicationDetails: string;
|
|
5679
5927
|
GetDirectoryLimits: string;
|
|
5680
5928
|
GetSnapshotLimits: string;
|
|
5929
|
+
ListADAssessments: string;
|
|
5681
5930
|
ListAuthorizedApplications: string;
|
|
5682
5931
|
ListCertificates: string;
|
|
5683
5932
|
ListIpRoutes: string;
|
|
@@ -5693,6 +5942,7 @@ export declare const Actions: {
|
|
|
5693
5942
|
ResetUserPassword: string;
|
|
5694
5943
|
RestoreFromSnapshot: string;
|
|
5695
5944
|
ShareDirectory: string;
|
|
5945
|
+
StartADAssessment: string;
|
|
5696
5946
|
StartSchemaExtension: string;
|
|
5697
5947
|
UnauthorizeApplication: string;
|
|
5698
5948
|
UnshareDirectory: string;
|
|
@@ -5700,6 +5950,7 @@ export declare const Actions: {
|
|
|
5700
5950
|
UpdateConditionalForwarder: string;
|
|
5701
5951
|
UpdateDirectory: string;
|
|
5702
5952
|
UpdateDirectorySetup: string;
|
|
5953
|
+
UpdateHybridAD: string;
|
|
5703
5954
|
UpdateNumberOfDomainControllers: string;
|
|
5704
5955
|
UpdateRadius: string;
|
|
5705
5956
|
UpdateSettings: string;
|
|
@@ -5707,15 +5958,25 @@ export declare const Actions: {
|
|
|
5707
5958
|
VerifyTrust: string;
|
|
5708
5959
|
};
|
|
5709
5960
|
dsql: {
|
|
5961
|
+
AddPeerCluster: string;
|
|
5710
5962
|
CreateCluster: string;
|
|
5711
|
-
CreateMultiRegionClusters: string;
|
|
5712
5963
|
DbConnect: string;
|
|
5713
5964
|
DbConnectAdmin: string;
|
|
5714
5965
|
DeleteCluster: string;
|
|
5715
|
-
|
|
5966
|
+
GetBackupJob: string;
|
|
5716
5967
|
GetCluster: string;
|
|
5968
|
+
GetRestoreJob: string;
|
|
5969
|
+
GetVpcEndpointServiceName: string;
|
|
5970
|
+
InjectError: string;
|
|
5717
5971
|
ListClusters: string;
|
|
5718
5972
|
ListTagsForResource: string;
|
|
5973
|
+
PutMultiRegionProperties: string;
|
|
5974
|
+
PutWitnessRegion: string;
|
|
5975
|
+
RemovePeerCluster: string;
|
|
5976
|
+
StartBackupJob: string;
|
|
5977
|
+
StartRestoreJob: string;
|
|
5978
|
+
StopBackupJob: string;
|
|
5979
|
+
StopRestoreJob: string;
|
|
5719
5980
|
TagResource: string;
|
|
5720
5981
|
UntagResource: string;
|
|
5721
5982
|
UpdateCluster: string;
|
|
@@ -5726,9 +5987,11 @@ export declare const Actions: {
|
|
|
5726
5987
|
ConditionCheckItem: string;
|
|
5727
5988
|
CreateBackup: string;
|
|
5728
5989
|
CreateGlobalTable: string;
|
|
5990
|
+
CreateGlobalTableWitness: string;
|
|
5729
5991
|
CreateTable: string;
|
|
5730
5992
|
CreateTableReplica: string;
|
|
5731
5993
|
DeleteBackup: string;
|
|
5994
|
+
DeleteGlobalTableWitness: string;
|
|
5732
5995
|
DeleteItem: string;
|
|
5733
5996
|
DeleteResourcePolicy: string;
|
|
5734
5997
|
DeleteTable: string;
|
|
@@ -5833,6 +6096,7 @@ export declare const Actions: {
|
|
|
5833
6096
|
AssociateIpamByoasn: string;
|
|
5834
6097
|
AssociateIpamResourceDiscovery: string;
|
|
5835
6098
|
AssociateNatGatewayAddress: string;
|
|
6099
|
+
AssociateRouteServer: string;
|
|
5836
6100
|
AssociateRouteTable: string;
|
|
5837
6101
|
AssociateSecurityGroupVpc: string;
|
|
5838
6102
|
AssociateSubnetCidrBlock: string;
|
|
@@ -5879,12 +6143,14 @@ export declare const Actions: {
|
|
|
5879
6143
|
CreateCustomerGateway: string;
|
|
5880
6144
|
CreateDefaultSubnet: string;
|
|
5881
6145
|
CreateDefaultVpc: string;
|
|
6146
|
+
CreateDelegateMacVolumeOwnershipTask: string;
|
|
5882
6147
|
CreateDhcpOptions: string;
|
|
5883
6148
|
CreateEgressOnlyInternetGateway: string;
|
|
5884
6149
|
CreateFleet: string;
|
|
5885
6150
|
CreateFlowLogs: string;
|
|
5886
6151
|
CreateFpgaImage: string;
|
|
5887
6152
|
CreateImage: string;
|
|
6153
|
+
CreateImageUsageReport: string;
|
|
5888
6154
|
CreateInstanceConnectEndpoint: string;
|
|
5889
6155
|
CreateInstanceEventWindow: string;
|
|
5890
6156
|
CreateInstanceExportTask: string;
|
|
@@ -5902,6 +6168,9 @@ export declare const Actions: {
|
|
|
5902
6168
|
CreateLocalGatewayRouteTablePermission: string;
|
|
5903
6169
|
CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation: string;
|
|
5904
6170
|
CreateLocalGatewayRouteTableVpcAssociation: string;
|
|
6171
|
+
CreateLocalGatewayVirtualInterface: string;
|
|
6172
|
+
CreateLocalGatewayVirtualInterfaceGroup: string;
|
|
6173
|
+
CreateMacSystemIntegrityProtectionModificationTask: string;
|
|
5905
6174
|
CreateManagedPrefixList: string;
|
|
5906
6175
|
CreateNatGateway: string;
|
|
5907
6176
|
CreateNetworkAcl: string;
|
|
@@ -5916,6 +6185,9 @@ export declare const Actions: {
|
|
|
5916
6185
|
CreateReservedInstancesListing: string;
|
|
5917
6186
|
CreateRestoreImageTask: string;
|
|
5918
6187
|
CreateRoute: string;
|
|
6188
|
+
CreateRouteServer: string;
|
|
6189
|
+
CreateRouteServerEndpoint: string;
|
|
6190
|
+
CreateRouteServerPeer: string;
|
|
5919
6191
|
CreateRouteTable: string;
|
|
5920
6192
|
CreateSecurityGroup: string;
|
|
5921
6193
|
CreateSnapshot: string;
|
|
@@ -5966,6 +6238,7 @@ export declare const Actions: {
|
|
|
5966
6238
|
DeleteFleets: string;
|
|
5967
6239
|
DeleteFlowLogs: string;
|
|
5968
6240
|
DeleteFpgaImage: string;
|
|
6241
|
+
DeleteImageUsageReport: string;
|
|
5969
6242
|
DeleteInstanceConnectEndpoint: string;
|
|
5970
6243
|
DeleteInstanceEventWindow: string;
|
|
5971
6244
|
DeleteInternetGateway: string;
|
|
@@ -5982,6 +6255,8 @@ export declare const Actions: {
|
|
|
5982
6255
|
DeleteLocalGatewayRouteTablePermission: string;
|
|
5983
6256
|
DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation: string;
|
|
5984
6257
|
DeleteLocalGatewayRouteTableVpcAssociation: string;
|
|
6258
|
+
DeleteLocalGatewayVirtualInterface: string;
|
|
6259
|
+
DeleteLocalGatewayVirtualInterfaceGroup: string;
|
|
5985
6260
|
DeleteManagedPrefixList: string;
|
|
5986
6261
|
DeleteNatGateway: string;
|
|
5987
6262
|
DeleteNetworkAcl: string;
|
|
@@ -5997,6 +6272,9 @@ export declare const Actions: {
|
|
|
5997
6272
|
DeleteQueuedReservedInstances: string;
|
|
5998
6273
|
DeleteResourcePolicy: string;
|
|
5999
6274
|
DeleteRoute: string;
|
|
6275
|
+
DeleteRouteServer: string;
|
|
6276
|
+
DeleteRouteServerEndpoint: string;
|
|
6277
|
+
DeleteRouteServerPeer: string;
|
|
6000
6278
|
DeleteRouteTable: string;
|
|
6001
6279
|
DeleteSecurityGroup: string;
|
|
6002
6280
|
DeleteSnapshot: string;
|
|
@@ -6053,6 +6331,8 @@ export declare const Actions: {
|
|
|
6053
6331
|
DescribeCapacityBlockExtensionHistory: string;
|
|
6054
6332
|
DescribeCapacityBlockExtensionOfferings: string;
|
|
6055
6333
|
DescribeCapacityBlockOfferings: string;
|
|
6334
|
+
DescribeCapacityBlocks: string;
|
|
6335
|
+
DescribeCapacityBlockStatus: string;
|
|
6056
6336
|
DescribeCapacityReservationBillingRequests: string;
|
|
6057
6337
|
DescribeCapacityReservationFleets: string;
|
|
6058
6338
|
DescribeCapacityReservations: string;
|
|
@@ -6087,7 +6367,10 @@ export declare const Actions: {
|
|
|
6087
6367
|
DescribeIdentityIdFormat: string;
|
|
6088
6368
|
DescribeIdFormat: string;
|
|
6089
6369
|
DescribeImageAttribute: string;
|
|
6370
|
+
DescribeImageReferences: string;
|
|
6090
6371
|
DescribeImages: string;
|
|
6372
|
+
DescribeImageUsageReportEntries: string;
|
|
6373
|
+
DescribeImageUsageReports: string;
|
|
6091
6374
|
DescribeImportImageTasks: string;
|
|
6092
6375
|
DescribeImportSnapshotTasks: string;
|
|
6093
6376
|
DescribeInstanceAttribute: string;
|
|
@@ -6122,6 +6405,7 @@ export declare const Actions: {
|
|
|
6122
6405
|
DescribeLocalGatewayVirtualInterfaces: string;
|
|
6123
6406
|
DescribeLockedSnapshots: string;
|
|
6124
6407
|
DescribeMacHosts: string;
|
|
6408
|
+
DescribeMacModificationTasks: string;
|
|
6125
6409
|
DescribeManagedPrefixLists: string;
|
|
6126
6410
|
DescribeMovingAddresses: string;
|
|
6127
6411
|
DescribeNatGateways: string;
|
|
@@ -6133,6 +6417,7 @@ export declare const Actions: {
|
|
|
6133
6417
|
DescribeNetworkInterfaceAttribute: string;
|
|
6134
6418
|
DescribeNetworkInterfacePermissions: string;
|
|
6135
6419
|
DescribeNetworkInterfaces: string;
|
|
6420
|
+
DescribeOutpostLags: string;
|
|
6136
6421
|
DescribePlacementGroups: string;
|
|
6137
6422
|
DescribePrefixLists: string;
|
|
6138
6423
|
DescribePrincipalIdFormat: string;
|
|
@@ -6143,6 +6428,9 @@ export declare const Actions: {
|
|
|
6143
6428
|
DescribeReservedInstancesListings: string;
|
|
6144
6429
|
DescribeReservedInstancesModifications: string;
|
|
6145
6430
|
DescribeReservedInstancesOfferings: string;
|
|
6431
|
+
DescribeRouteServerEndpoints: string;
|
|
6432
|
+
DescribeRouteServerPeers: string;
|
|
6433
|
+
DescribeRouteServers: string;
|
|
6146
6434
|
DescribeRouteTables: string;
|
|
6147
6435
|
DescribeScheduledInstanceAvailability: string;
|
|
6148
6436
|
DescribeScheduledInstances: string;
|
|
@@ -6150,6 +6438,7 @@ export declare const Actions: {
|
|
|
6150
6438
|
DescribeSecurityGroupRules: string;
|
|
6151
6439
|
DescribeSecurityGroups: string;
|
|
6152
6440
|
DescribeSecurityGroupVpcAssociations: string;
|
|
6441
|
+
DescribeServiceLinkVirtualInterfaces: string;
|
|
6153
6442
|
DescribeSnapshotAttribute: string;
|
|
6154
6443
|
DescribeSnapshots: string;
|
|
6155
6444
|
DescribeSnapshotTierStatus: string;
|
|
@@ -6221,6 +6510,7 @@ export declare const Actions: {
|
|
|
6221
6510
|
DisableImageDeprecation: string;
|
|
6222
6511
|
DisableImageDeregistrationProtection: string;
|
|
6223
6512
|
DisableIpamOrganizationAdminAccount: string;
|
|
6513
|
+
DisableRouteServerPropagation: string;
|
|
6224
6514
|
DisableSerialConsoleAccess: string;
|
|
6225
6515
|
DisableSnapshotBlockPublicAccess: string;
|
|
6226
6516
|
DisableTransitGatewayRouteTablePropagation: string;
|
|
@@ -6236,6 +6526,7 @@ export declare const Actions: {
|
|
|
6236
6526
|
DisassociateIpamByoasn: string;
|
|
6237
6527
|
DisassociateIpamResourceDiscovery: string;
|
|
6238
6528
|
DisassociateNatGatewayAddress: string;
|
|
6529
|
+
DisassociateRouteServer: string;
|
|
6239
6530
|
DisassociateRouteTable: string;
|
|
6240
6531
|
DisassociateSecurityGroupVpc: string;
|
|
6241
6532
|
DisassociateSubnetCidrBlock: string;
|
|
@@ -6257,6 +6548,7 @@ export declare const Actions: {
|
|
|
6257
6548
|
EnableImageDeregistrationProtection: string;
|
|
6258
6549
|
EnableIpamOrganizationAdminAccount: string;
|
|
6259
6550
|
EnableReachabilityAnalyzerOrganizationSharing: string;
|
|
6551
|
+
EnableRouteServerPropagation: string;
|
|
6260
6552
|
EnableSerialConsoleAccess: string;
|
|
6261
6553
|
EnableSnapshotBlockPublicAccess: string;
|
|
6262
6554
|
EnableTransitGatewayRouteTablePropagation: string;
|
|
@@ -6269,6 +6561,7 @@ export declare const Actions: {
|
|
|
6269
6561
|
ExportImage: string;
|
|
6270
6562
|
ExportTransitGatewayRoutes: string;
|
|
6271
6563
|
ExportVerifiedAccessInstanceClientConfiguration: string;
|
|
6564
|
+
GetActiveVpnTunnelStatus: string;
|
|
6272
6565
|
GetAllowedImagesSettings: string;
|
|
6273
6566
|
GetAssociatedEnclaveCertificateIamRoles: string;
|
|
6274
6567
|
GetAssociatedIpv6PoolCidrs: string;
|
|
@@ -6304,6 +6597,9 @@ export declare const Actions: {
|
|
|
6304
6597
|
GetPasswordData: string;
|
|
6305
6598
|
GetReservedInstancesExchangeQuote: string;
|
|
6306
6599
|
GetResourcePolicy: string;
|
|
6600
|
+
GetRouteServerAssociations: string;
|
|
6601
|
+
GetRouteServerPropagations: string;
|
|
6602
|
+
GetRouteServerRoutingDatabase: string;
|
|
6307
6603
|
GetSecurityGroupsForVpc: string;
|
|
6308
6604
|
GetSerialConsoleAccessStatus: string;
|
|
6309
6605
|
GetSnapshotBlockPublicAccessState: string;
|
|
@@ -6349,6 +6645,7 @@ export declare const Actions: {
|
|
|
6349
6645
|
ModifyImageAttribute: string;
|
|
6350
6646
|
ModifyInstanceAttribute: string;
|
|
6351
6647
|
ModifyInstanceCapacityReservationAttributes: string;
|
|
6648
|
+
ModifyInstanceConnectEndpoint: string;
|
|
6352
6649
|
ModifyInstanceCpuOptions: string;
|
|
6353
6650
|
ModifyInstanceCreditSpecification: string;
|
|
6354
6651
|
ModifyInstanceEventStartTime: string;
|
|
@@ -6368,7 +6665,9 @@ export declare const Actions: {
|
|
|
6368
6665
|
ModifyManagedPrefixList: string;
|
|
6369
6666
|
ModifyNetworkInterfaceAttribute: string;
|
|
6370
6667
|
ModifyPrivateDnsNameOptions: string;
|
|
6668
|
+
ModifyPublicIpDnsNameOptions: string;
|
|
6371
6669
|
ModifyReservedInstances: string;
|
|
6670
|
+
ModifyRouteServer: string;
|
|
6372
6671
|
ModifySecurityGroupRules: string;
|
|
6373
6672
|
ModifySnapshotAttribute: string;
|
|
6374
6673
|
ModifySnapshotTier: string;
|
|
@@ -6616,6 +6915,7 @@ export declare const Actions: {
|
|
|
6616
6915
|
RunTask: string;
|
|
6617
6916
|
StartTask: string;
|
|
6618
6917
|
StartTelemetrySession: string;
|
|
6918
|
+
StopServiceDeployment: string;
|
|
6619
6919
|
StopTask: string;
|
|
6620
6920
|
SubmitAttachmentStateChanges: string;
|
|
6621
6921
|
SubmitContainerStateChange: string;
|
|
@@ -6665,6 +6965,7 @@ export declare const Actions: {
|
|
|
6665
6965
|
DescribeFargateProfile: string;
|
|
6666
6966
|
DescribeIdentityProviderConfig: string;
|
|
6667
6967
|
DescribeInsight: string;
|
|
6968
|
+
DescribeInsightsRefresh: string;
|
|
6668
6969
|
DescribeNodegroup: string;
|
|
6669
6970
|
DescribePodIdentityAssociation: string;
|
|
6670
6971
|
DescribeUpdate: string;
|
|
@@ -6675,6 +6976,8 @@ export declare const Actions: {
|
|
|
6675
6976
|
ListAddons: string;
|
|
6676
6977
|
ListAssociatedAccessPolicies: string;
|
|
6677
6978
|
ListClusters: string;
|
|
6979
|
+
ListDashboardData: string;
|
|
6980
|
+
ListDashboardResources: string;
|
|
6678
6981
|
ListEksAnywhereSubscriptions: string;
|
|
6679
6982
|
ListFargateProfiles: string;
|
|
6680
6983
|
ListIdentityProviderConfigs: string;
|
|
@@ -6684,6 +6987,7 @@ export declare const Actions: {
|
|
|
6684
6987
|
ListTagsForResource: string;
|
|
6685
6988
|
ListUpdates: string;
|
|
6686
6989
|
RegisterCluster: string;
|
|
6990
|
+
StartInsightsRefresh: string;
|
|
6687
6991
|
TagResource: string;
|
|
6688
6992
|
UntagResource: string;
|
|
6689
6993
|
UpdateAccessEntry: string;
|
|
@@ -6941,6 +7245,7 @@ export declare const Actions: {
|
|
|
6941
7245
|
SetWebAcl: string;
|
|
6942
7246
|
};
|
|
6943
7247
|
elasticmapreduce: {
|
|
7248
|
+
AccessAllEventLogs: string;
|
|
6944
7249
|
AddInstanceFleet: string;
|
|
6945
7250
|
AddInstanceGroups: string;
|
|
6946
7251
|
AddJobFlowSteps: string;
|
|
@@ -7125,6 +7430,7 @@ export declare const Actions: {
|
|
|
7125
7430
|
'emr-serverless': {
|
|
7126
7431
|
AccessInteractiveEndpoints: string;
|
|
7127
7432
|
AccessLivyEndpoints: string;
|
|
7433
|
+
AccessSystemProfileLogs: string;
|
|
7128
7434
|
CancelJobRun: string;
|
|
7129
7435
|
CreateApplication: string;
|
|
7130
7436
|
DeleteApplication: string;
|
|
@@ -7154,6 +7460,7 @@ export declare const Actions: {
|
|
|
7154
7460
|
DeleteMatchingWorkflow: string;
|
|
7155
7461
|
DeletePolicyStatement: string;
|
|
7156
7462
|
DeleteSchemaMapping: string;
|
|
7463
|
+
GenerateMatchId: string;
|
|
7157
7464
|
GetIdMappingJob: string;
|
|
7158
7465
|
GetIdMappingWorkflow: string;
|
|
7159
7466
|
GetIdNamespace: string;
|
|
@@ -7297,6 +7604,7 @@ export declare const Actions: {
|
|
|
7297
7604
|
};
|
|
7298
7605
|
events: {
|
|
7299
7606
|
ActivateEventSource: string;
|
|
7607
|
+
AllowVendedLogDeliveryForResource: string;
|
|
7300
7608
|
CancelReplay: string;
|
|
7301
7609
|
CreateApiDestination: string;
|
|
7302
7610
|
CreateArchive: string;
|
|
@@ -7396,6 +7704,19 @@ export declare const Actions: {
|
|
|
7396
7704
|
UpdateProject: string;
|
|
7397
7705
|
UpdateProjectDataDelivery: string;
|
|
7398
7706
|
};
|
|
7707
|
+
evs: {
|
|
7708
|
+
CreateEnvironment: string;
|
|
7709
|
+
CreateEnvironmentHost: string;
|
|
7710
|
+
DeleteEnvironment: string;
|
|
7711
|
+
DeleteEnvironmentHost: string;
|
|
7712
|
+
GetEnvironment: string;
|
|
7713
|
+
ListEnvironmentHosts: string;
|
|
7714
|
+
ListEnvironments: string;
|
|
7715
|
+
ListEnvironmentVlans: string;
|
|
7716
|
+
ListTagsForResource: string;
|
|
7717
|
+
TagResource: string;
|
|
7718
|
+
UntagResource: string;
|
|
7719
|
+
};
|
|
7399
7720
|
'execute-api': {
|
|
7400
7721
|
InvalidateCache: string;
|
|
7401
7722
|
Invoke: string;
|
|
@@ -7725,9 +8046,13 @@ export declare const Actions: {
|
|
|
7725
8046
|
VerifyEmail: string;
|
|
7726
8047
|
};
|
|
7727
8048
|
freetier: {
|
|
8049
|
+
GetAccountActivity: string;
|
|
8050
|
+
GetAccountPlanState: string;
|
|
7728
8051
|
GetFreeTierAlertPreference: string;
|
|
7729
8052
|
GetFreeTierUsage: string;
|
|
8053
|
+
ListAccountActivities: string;
|
|
7730
8054
|
PutFreeTierAlertPreference: string;
|
|
8055
|
+
UpgradeAccountPlan: string;
|
|
7731
8056
|
};
|
|
7732
8057
|
fsx: {
|
|
7733
8058
|
AssociateFileGateway: string;
|
|
@@ -7736,6 +8061,7 @@ export declare const Actions: {
|
|
|
7736
8061
|
CancelDataRepositoryTask: string;
|
|
7737
8062
|
CopyBackup: string;
|
|
7738
8063
|
CopySnapshotAndUpdateVolume: string;
|
|
8064
|
+
CreateAndAttachS3AccessPoint: string;
|
|
7739
8065
|
CreateBackup: string;
|
|
7740
8066
|
CreateDataRepositoryAssociation: string;
|
|
7741
8067
|
CreateDataRepositoryTask: string;
|
|
@@ -7761,10 +8087,12 @@ export declare const Actions: {
|
|
|
7761
8087
|
DescribeFileCaches: string;
|
|
7762
8088
|
DescribeFileSystemAliases: string;
|
|
7763
8089
|
DescribeFileSystems: string;
|
|
8090
|
+
DescribeS3AccessPointAttachments: string;
|
|
7764
8091
|
DescribeSharedVpcConfiguration: string;
|
|
7765
8092
|
DescribeSnapshots: string;
|
|
7766
8093
|
DescribeStorageVirtualMachines: string;
|
|
7767
8094
|
DescribeVolumes: string;
|
|
8095
|
+
DetachAndDeleteS3AccessPoint: string;
|
|
7768
8096
|
DisassociateFileGateway: string;
|
|
7769
8097
|
DisassociateFileSystemAliases: string;
|
|
7770
8098
|
GetResourcePolicy: string;
|
|
@@ -8139,6 +8467,7 @@ export declare const Actions: {
|
|
|
8139
8467
|
CreateDatabase: string;
|
|
8140
8468
|
CreateDataQualityRuleset: string;
|
|
8141
8469
|
CreateDevEndpoint: string;
|
|
8470
|
+
CreateGlueIdentityCenterConfiguration: string;
|
|
8142
8471
|
CreateInboundIntegration: string;
|
|
8143
8472
|
CreateIntegration: string;
|
|
8144
8473
|
CreateIntegrationResourceProperty: string;
|
|
@@ -8170,6 +8499,7 @@ export declare const Actions: {
|
|
|
8170
8499
|
DeleteDatabase: string;
|
|
8171
8500
|
DeleteDataQualityRuleset: string;
|
|
8172
8501
|
DeleteDevEndpoint: string;
|
|
8502
|
+
DeleteGlueIdentityCenterConfiguration: string;
|
|
8173
8503
|
DeleteIntegration: string;
|
|
8174
8504
|
DeleteIntegrationTableProperties: string;
|
|
8175
8505
|
DeleteJob: string;
|
|
@@ -8233,6 +8563,7 @@ export declare const Actions: {
|
|
|
8233
8563
|
GetExecutors: string;
|
|
8234
8564
|
GetExecutorsThreads: string;
|
|
8235
8565
|
GetGeneratedCode: string;
|
|
8566
|
+
GetGlueIdentityCenterConfiguration: string;
|
|
8236
8567
|
GetIntegrationResourceProperty: string;
|
|
8237
8568
|
GetIntegrationTableProperties: string;
|
|
8238
8569
|
GetJob: string;
|
|
@@ -8379,6 +8710,7 @@ export declare const Actions: {
|
|
|
8379
8710
|
UpdateDatabase: string;
|
|
8380
8711
|
UpdateDataQualityRuleset: string;
|
|
8381
8712
|
UpdateDevEndpoint: string;
|
|
8713
|
+
UpdateGlueIdentityCenterConfiguration: string;
|
|
8382
8714
|
UpdateIntegrationResourceProperty: string;
|
|
8383
8715
|
UpdateIntegrationTableProperties: string;
|
|
8384
8716
|
UpdateJob: string;
|
|
@@ -8603,7 +8935,9 @@ export declare const Actions: {
|
|
|
8603
8935
|
CreateMembers: string;
|
|
8604
8936
|
CreatePublishingDestination: string;
|
|
8605
8937
|
CreateSampleFindings: string;
|
|
8938
|
+
CreateThreatEntitySet: string;
|
|
8606
8939
|
CreateThreatIntelSet: string;
|
|
8940
|
+
CreateTrustedEntitySet: string;
|
|
8607
8941
|
DeclineInvitations: string;
|
|
8608
8942
|
DeleteDetector: string;
|
|
8609
8943
|
DeleteFilter: string;
|
|
@@ -8612,7 +8946,9 @@ export declare const Actions: {
|
|
|
8612
8946
|
DeleteMalwareProtectionPlan: string;
|
|
8613
8947
|
DeleteMembers: string;
|
|
8614
8948
|
DeletePublishingDestination: string;
|
|
8949
|
+
DeleteThreatEntitySet: string;
|
|
8615
8950
|
DeleteThreatIntelSet: string;
|
|
8951
|
+
DeleteTrustedEntitySet: string;
|
|
8616
8952
|
DescribeMalwareScans: string;
|
|
8617
8953
|
DescribeOrganizationConfiguration: string;
|
|
8618
8954
|
DescribePublishingDestination: string;
|
|
@@ -8636,7 +8972,9 @@ export declare const Actions: {
|
|
|
8636
8972
|
GetMembers: string;
|
|
8637
8973
|
GetOrganizationStatistics: string;
|
|
8638
8974
|
GetRemainingFreeTrialDays: string;
|
|
8975
|
+
GetThreatEntitySet: string;
|
|
8639
8976
|
GetThreatIntelSet: string;
|
|
8977
|
+
GetTrustedEntitySet: string;
|
|
8640
8978
|
GetUsageStatistics: string;
|
|
8641
8979
|
InviteMembers: string;
|
|
8642
8980
|
ListCoverage: string;
|
|
@@ -8650,7 +8988,9 @@ export declare const Actions: {
|
|
|
8650
8988
|
ListOrganizationAdminAccounts: string;
|
|
8651
8989
|
ListPublishingDestinations: string;
|
|
8652
8990
|
ListTagsForResource: string;
|
|
8991
|
+
ListThreatEntitySets: string;
|
|
8653
8992
|
ListThreatIntelSets: string;
|
|
8993
|
+
ListTrustedEntitySets: string;
|
|
8654
8994
|
SendSecurityTelemetry: string;
|
|
8655
8995
|
StartMalwareScan: string;
|
|
8656
8996
|
StartMonitoringMembers: string;
|
|
@@ -8667,7 +9007,9 @@ export declare const Actions: {
|
|
|
8667
9007
|
UpdateMemberDetectors: string;
|
|
8668
9008
|
UpdateOrganizationConfiguration: string;
|
|
8669
9009
|
UpdatePublishingDestination: string;
|
|
9010
|
+
UpdateThreatEntitySet: string;
|
|
8670
9011
|
UpdateThreatIntelSet: string;
|
|
9012
|
+
UpdateTrustedEntitySet: string;
|
|
8671
9013
|
};
|
|
8672
9014
|
health: {
|
|
8673
9015
|
DescribeAffectedAccountsForOrganization: string;
|
|
@@ -9096,6 +9438,8 @@ export declare const Actions: {
|
|
|
9096
9438
|
};
|
|
9097
9439
|
inspector2: {
|
|
9098
9440
|
AssociateMember: string;
|
|
9441
|
+
BatchAssociateCodeSecurityScanConfiguration: string;
|
|
9442
|
+
BatchDisassociateCodeSecurityScanConfiguration: string;
|
|
9099
9443
|
BatchGetAccountStatus: string;
|
|
9100
9444
|
BatchGetCodeSnippet: string;
|
|
9101
9445
|
BatchGetFindingDetails: string;
|
|
@@ -9105,10 +9449,14 @@ export declare const Actions: {
|
|
|
9105
9449
|
CancelFindingsReport: string;
|
|
9106
9450
|
CancelSbomExport: string;
|
|
9107
9451
|
CreateCisScanConfiguration: string;
|
|
9452
|
+
CreateCodeSecurityIntegration: string;
|
|
9453
|
+
CreateCodeSecurityScanConfiguration: string;
|
|
9108
9454
|
CreateFilter: string;
|
|
9109
9455
|
CreateFindingsReport: string;
|
|
9110
9456
|
CreateSbomExport: string;
|
|
9111
9457
|
DeleteCisScanConfiguration: string;
|
|
9458
|
+
DeleteCodeSecurityIntegration: string;
|
|
9459
|
+
DeleteCodeSecurityScanConfiguration: string;
|
|
9112
9460
|
DeleteFilter: string;
|
|
9113
9461
|
DescribeOrganizationConfiguration: string;
|
|
9114
9462
|
Disable: string;
|
|
@@ -9118,6 +9466,10 @@ export declare const Actions: {
|
|
|
9118
9466
|
EnableDelegatedAdminAccount: string;
|
|
9119
9467
|
GetCisScanReport: string;
|
|
9120
9468
|
GetCisScanResultDetails: string;
|
|
9469
|
+
GetClustersForImage: string;
|
|
9470
|
+
GetCodeSecurityIntegration: string;
|
|
9471
|
+
GetCodeSecurityScan: string;
|
|
9472
|
+
GetCodeSecurityScanConfiguration: string;
|
|
9121
9473
|
GetConfiguration: string;
|
|
9122
9474
|
GetDelegatedAdminAccount: string;
|
|
9123
9475
|
GetEc2DeepInspectionConfiguration: string;
|
|
@@ -9130,6 +9482,9 @@ export declare const Actions: {
|
|
|
9130
9482
|
ListCisScanResultsAggregatedByChecks: string;
|
|
9131
9483
|
ListCisScanResultsAggregatedByTargetResource: string;
|
|
9132
9484
|
ListCisScans: string;
|
|
9485
|
+
ListCodeSecurityIntegrations: string;
|
|
9486
|
+
ListCodeSecurityScanConfigurationAssociations: string;
|
|
9487
|
+
ListCodeSecurityScanConfigurations: string;
|
|
9133
9488
|
ListCoverage: string;
|
|
9134
9489
|
ListCoverageStatistics: string;
|
|
9135
9490
|
ListDelegatedAdminAccounts: string;
|
|
@@ -9144,10 +9499,13 @@ export declare const Actions: {
|
|
|
9144
9499
|
SendCisSessionHealth: string;
|
|
9145
9500
|
SendCisSessionTelemetry: string;
|
|
9146
9501
|
StartCisSession: string;
|
|
9502
|
+
StartCodeSecurityScan: string;
|
|
9147
9503
|
StopCisSession: string;
|
|
9148
9504
|
TagResource: string;
|
|
9149
9505
|
UntagResource: string;
|
|
9150
9506
|
UpdateCisScanConfiguration: string;
|
|
9507
|
+
UpdateCodeSecurityIntegration: string;
|
|
9508
|
+
UpdateCodeSecurityScanConfiguration: string;
|
|
9151
9509
|
UpdateConfiguration: string;
|
|
9152
9510
|
UpdateEc2DeepInspectionConfiguration: string;
|
|
9153
9511
|
UpdateEncryptionKey: string;
|
|
@@ -9257,6 +9615,7 @@ export declare const Actions: {
|
|
|
9257
9615
|
DeleteCertificateProvider: string;
|
|
9258
9616
|
DeleteCommand: string;
|
|
9259
9617
|
DeleteCommandExecution: string;
|
|
9618
|
+
DeleteConnection: string;
|
|
9260
9619
|
DeleteCustomMetric: string;
|
|
9261
9620
|
DeleteDimension: string;
|
|
9262
9621
|
DeleteDomainConfiguration: string;
|
|
@@ -9301,6 +9660,7 @@ export declare const Actions: {
|
|
|
9301
9660
|
DescribeDetectMitigationActionsTask: string;
|
|
9302
9661
|
DescribeDimension: string;
|
|
9303
9662
|
DescribeDomainConfiguration: string;
|
|
9663
|
+
DescribeEncryptionConfiguration: string;
|
|
9304
9664
|
DescribeEndpoint: string;
|
|
9305
9665
|
DescribeEventConfigurations: string;
|
|
9306
9666
|
DescribeFleetMetric: string;
|
|
@@ -9464,6 +9824,7 @@ export declare const Actions: {
|
|
|
9464
9824
|
UpdateDimension: string;
|
|
9465
9825
|
UpdateDomainConfiguration: string;
|
|
9466
9826
|
UpdateDynamicThingGroup: string;
|
|
9827
|
+
UpdateEncryptionConfiguration: string;
|
|
9467
9828
|
UpdateEventConfigurations: string;
|
|
9468
9829
|
UpdateFleetMetric: string;
|
|
9469
9830
|
UpdateIndexingConfiguration: string;
|
|
@@ -9618,8 +9979,6 @@ export declare const Actions: {
|
|
|
9618
9979
|
};
|
|
9619
9980
|
iotfleetwise: {
|
|
9620
9981
|
AssociateVehicleFleet: string;
|
|
9621
|
-
BatchCreateVehicle: string;
|
|
9622
|
-
BatchUpdateVehicle: string;
|
|
9623
9982
|
CreateCampaign: string;
|
|
9624
9983
|
CreateDecoderManifest: string;
|
|
9625
9984
|
CreateFleet: string;
|
|
@@ -9683,6 +10042,9 @@ export declare const Actions: {
|
|
|
9683
10042
|
UpdateJobExecution: string;
|
|
9684
10043
|
};
|
|
9685
10044
|
iotmanagedintegrations: {
|
|
10045
|
+
CreateAccountAssociation: string;
|
|
10046
|
+
CreateCloudConnector: string;
|
|
10047
|
+
CreateConnectorDestination: string;
|
|
9686
10048
|
CreateCredentialLocker: string;
|
|
9687
10049
|
CreateDestination: string;
|
|
9688
10050
|
CreateEventLogConfiguration: string;
|
|
@@ -9691,6 +10053,9 @@ export declare const Actions: {
|
|
|
9691
10053
|
CreateOtaTask: string;
|
|
9692
10054
|
CreateOtaTaskConfiguration: string;
|
|
9693
10055
|
CreateProvisioningProfile: string;
|
|
10056
|
+
DeleteAccountAssociation: string;
|
|
10057
|
+
DeleteCloudConnector: string;
|
|
10058
|
+
DeleteConnectorDestination: string;
|
|
9694
10059
|
DeleteCredentialLocker: string;
|
|
9695
10060
|
DeleteDestination: string;
|
|
9696
10061
|
DeleteEventLogConfiguration: string;
|
|
@@ -9699,6 +10064,10 @@ export declare const Actions: {
|
|
|
9699
10064
|
DeleteOtaTask: string;
|
|
9700
10065
|
DeleteOtaTaskConfiguration: string;
|
|
9701
10066
|
DeleteProvisioningProfile: string;
|
|
10067
|
+
DeregisterAccountAssociation: string;
|
|
10068
|
+
GetAccountAssociation: string;
|
|
10069
|
+
GetCloudConnector: string;
|
|
10070
|
+
GetConnectorDestination: string;
|
|
9702
10071
|
GetCredentialLocker: string;
|
|
9703
10072
|
GetCustomEndpoint: string;
|
|
9704
10073
|
GetDefaultEncryptionConfiguration: string;
|
|
@@ -9717,9 +10086,15 @@ export declare const Actions: {
|
|
|
9717
10086
|
GetProvisioningProfile: string;
|
|
9718
10087
|
GetRuntimeLogConfiguration: string;
|
|
9719
10088
|
GetSchemaVersion: string;
|
|
10089
|
+
ListAccountAssociations: string;
|
|
10090
|
+
ListCloudConnectors: string;
|
|
10091
|
+
ListConnectorDestinations: string;
|
|
9720
10092
|
ListCredentialLockers: string;
|
|
9721
10093
|
ListDestinations: string;
|
|
10094
|
+
ListDeviceDiscoveries: string;
|
|
10095
|
+
ListDiscoveredDevices: string;
|
|
9722
10096
|
ListEventLogConfigurations: string;
|
|
10097
|
+
ListManagedThingAccountAssociations: string;
|
|
9723
10098
|
ListManagedThings: string;
|
|
9724
10099
|
ListManagedThingSchemas: string;
|
|
9725
10100
|
ListNotificationConfigurations: string;
|
|
@@ -9728,13 +10103,22 @@ export declare const Actions: {
|
|
|
9728
10103
|
ListOtaTasks: string;
|
|
9729
10104
|
ListProvisioningProfiles: string;
|
|
9730
10105
|
ListSchemaVersions: string;
|
|
10106
|
+
ListTagsForResource: string;
|
|
9731
10107
|
PutDefaultEncryptionConfiguration: string;
|
|
9732
10108
|
PutHubConfiguration: string;
|
|
9733
10109
|
PutRuntimeLogConfiguration: string;
|
|
10110
|
+
RegisterAccountAssociation: string;
|
|
9734
10111
|
RegisterCustomEndpoint: string;
|
|
9735
10112
|
ResetRuntimeLogConfiguration: string;
|
|
10113
|
+
SendConnectorEvent: string;
|
|
9736
10114
|
SendManagedThingCommand: string;
|
|
10115
|
+
StartAccountAssociationRefresh: string;
|
|
9737
10116
|
StartDeviceDiscovery: string;
|
|
10117
|
+
TagResource: string;
|
|
10118
|
+
UntagResource: string;
|
|
10119
|
+
UpdateAccountAssociation: string;
|
|
10120
|
+
UpdateCloudConnector: string;
|
|
10121
|
+
UpdateConnectorDestination: string;
|
|
9738
10122
|
UpdateDestination: string;
|
|
9739
10123
|
UpdateEventLogConfiguration: string;
|
|
9740
10124
|
UpdateManagedThing: string;
|
|
@@ -9755,6 +10139,7 @@ export declare const Actions: {
|
|
|
9755
10139
|
CreateAssetModel: string;
|
|
9756
10140
|
CreateAssetModelCompositeModel: string;
|
|
9757
10141
|
CreateBulkImportJob: string;
|
|
10142
|
+
CreateComputationModel: string;
|
|
9758
10143
|
CreateDashboard: string;
|
|
9759
10144
|
CreateDataset: string;
|
|
9760
10145
|
CreateGateway: string;
|
|
@@ -9764,6 +10149,8 @@ export declare const Actions: {
|
|
|
9764
10149
|
DeleteAsset: string;
|
|
9765
10150
|
DeleteAssetModel: string;
|
|
9766
10151
|
DeleteAssetModelCompositeModel: string;
|
|
10152
|
+
DeleteAssetModelInterfaceRelationship: string;
|
|
10153
|
+
DeleteComputationModel: string;
|
|
9767
10154
|
DeleteDashboard: string;
|
|
9768
10155
|
DeleteDataset: string;
|
|
9769
10156
|
DeleteGateway: string;
|
|
@@ -9776,11 +10163,15 @@ export declare const Actions: {
|
|
|
9776
10163
|
DescribeAssetCompositeModel: string;
|
|
9777
10164
|
DescribeAssetModel: string;
|
|
9778
10165
|
DescribeAssetModelCompositeModel: string;
|
|
10166
|
+
DescribeAssetModelInterfaceRelationship: string;
|
|
9779
10167
|
DescribeAssetProperty: string;
|
|
9780
10168
|
DescribeBulkImportJob: string;
|
|
10169
|
+
DescribeComputationModel: string;
|
|
10170
|
+
DescribeComputationModelExecutionSummary: string;
|
|
9781
10171
|
DescribeDashboard: string;
|
|
9782
10172
|
DescribeDataset: string;
|
|
9783
10173
|
DescribeDefaultEncryptionConfiguration: string;
|
|
10174
|
+
DescribeExecution: string;
|
|
9784
10175
|
DescribeGateway: string;
|
|
9785
10176
|
DescribeGatewayCapabilityConfiguration: string;
|
|
9786
10177
|
DescribeLoggingOptions: string;
|
|
@@ -9809,14 +10200,20 @@ export declare const Actions: {
|
|
|
9809
10200
|
ListAssociatedAssets: string;
|
|
9810
10201
|
ListBulkImportJobs: string;
|
|
9811
10202
|
ListCompositionRelationships: string;
|
|
10203
|
+
ListComputationModelDataBindingUsages: string;
|
|
10204
|
+
ListComputationModelResolveToResources: string;
|
|
10205
|
+
ListComputationModels: string;
|
|
9812
10206
|
ListDashboards: string;
|
|
9813
10207
|
ListDatasets: string;
|
|
10208
|
+
ListExecutions: string;
|
|
9814
10209
|
ListGateways: string;
|
|
10210
|
+
ListInterfaceRelationships: string;
|
|
9815
10211
|
ListPortals: string;
|
|
9816
10212
|
ListProjectAssets: string;
|
|
9817
10213
|
ListProjects: string;
|
|
9818
10214
|
ListTagsForResource: string;
|
|
9819
10215
|
ListTimeSeries: string;
|
|
10216
|
+
PutAssetModelInterfaceRelationship: string;
|
|
9820
10217
|
PutDefaultEncryptionConfiguration: string;
|
|
9821
10218
|
PutLoggingOptions: string;
|
|
9822
10219
|
PutStorageConfiguration: string;
|
|
@@ -9828,6 +10225,7 @@ export declare const Actions: {
|
|
|
9828
10225
|
UpdateAssetModelCompositeModel: string;
|
|
9829
10226
|
UpdateAssetModelPropertyRouting: string;
|
|
9830
10227
|
UpdateAssetProperty: string;
|
|
10228
|
+
UpdateComputationModel: string;
|
|
9831
10229
|
UpdateDashboard: string;
|
|
9832
10230
|
UpdateDataset: string;
|
|
9833
10231
|
UpdateGateway: string;
|
|
@@ -10114,6 +10512,7 @@ export declare const Actions: {
|
|
|
10114
10512
|
ListEncoderConfigurations: string;
|
|
10115
10513
|
ListIngestConfigurations: string;
|
|
10116
10514
|
ListParticipantEvents: string;
|
|
10515
|
+
ListParticipantReplicas: string;
|
|
10117
10516
|
ListParticipants: string;
|
|
10118
10517
|
ListPlaybackKeyPairs: string;
|
|
10119
10518
|
ListPlaybackRestrictionPolicies: string;
|
|
@@ -10128,8 +10527,10 @@ export declare const Actions: {
|
|
|
10128
10527
|
ListTagsForResource: string;
|
|
10129
10528
|
PutMetadata: string;
|
|
10130
10529
|
StartComposition: string;
|
|
10530
|
+
StartParticipantReplication: string;
|
|
10131
10531
|
StartViewerSessionRevocation: string;
|
|
10132
10532
|
StopComposition: string;
|
|
10533
|
+
StopParticipantReplication: string;
|
|
10133
10534
|
StopStream: string;
|
|
10134
10535
|
TagResource: string;
|
|
10135
10536
|
UntagResource: string;
|
|
@@ -10351,6 +10752,7 @@ export declare const Actions: {
|
|
|
10351
10752
|
ListShards: string;
|
|
10352
10753
|
ListStreamConsumers: string;
|
|
10353
10754
|
ListStreams: string;
|
|
10755
|
+
ListTagsForResource: string;
|
|
10354
10756
|
ListTagsForStream: string;
|
|
10355
10757
|
MergeShards: string;
|
|
10356
10758
|
PutRecord: string;
|
|
@@ -10362,6 +10764,8 @@ export declare const Actions: {
|
|
|
10362
10764
|
StartStreamEncryption: string;
|
|
10363
10765
|
StopStreamEncryption: string;
|
|
10364
10766
|
SubscribeToShard: string;
|
|
10767
|
+
TagResource: string;
|
|
10768
|
+
UntagResource: string;
|
|
10365
10769
|
UpdateShardCount: string;
|
|
10366
10770
|
UpdateStreamMode: string;
|
|
10367
10771
|
};
|
|
@@ -10692,6 +11096,7 @@ export declare const Actions: {
|
|
|
10692
11096
|
CreateIntent: string;
|
|
10693
11097
|
CreateIntentVersion: string;
|
|
10694
11098
|
CreateResourcePolicy: string;
|
|
11099
|
+
CreateResourcePolicyStatement: string;
|
|
10695
11100
|
CreateSlot: string;
|
|
10696
11101
|
CreateSlotType: string;
|
|
10697
11102
|
CreateSlotTypeVersion: string;
|
|
@@ -10711,6 +11116,7 @@ export declare const Actions: {
|
|
|
10711
11116
|
DeleteIntent: string;
|
|
10712
11117
|
DeleteIntentVersion: string;
|
|
10713
11118
|
DeleteResourcePolicy: string;
|
|
11119
|
+
DeleteResourcePolicyStatement: string;
|
|
10714
11120
|
DeleteSession: string;
|
|
10715
11121
|
DeleteSlot: string;
|
|
10716
11122
|
DeleteSlotType: string;
|
|
@@ -11135,6 +11541,7 @@ export declare const Actions: {
|
|
|
11135
11541
|
ListIntegrations: string;
|
|
11136
11542
|
ListLogAnomalyDetectors: string;
|
|
11137
11543
|
ListLogDeliveries: string;
|
|
11544
|
+
ListLogGroups: string;
|
|
11138
11545
|
ListLogGroupsForEntity: string;
|
|
11139
11546
|
ListLogGroupsForQuery: string;
|
|
11140
11547
|
ListTagsForResource: string;
|
|
@@ -11284,6 +11691,7 @@ export declare const Actions: {
|
|
|
11284
11691
|
m2: {
|
|
11285
11692
|
CancelBatchJobExecution: string;
|
|
11286
11693
|
CreateApplication: string;
|
|
11694
|
+
CreateDataSetExportTask: string;
|
|
11287
11695
|
CreateDataSetImportTask: string;
|
|
11288
11696
|
CreateDeployment: string;
|
|
11289
11697
|
CreateEnvironment: string;
|
|
@@ -11294,6 +11702,7 @@ export declare const Actions: {
|
|
|
11294
11702
|
GetApplicationVersion: string;
|
|
11295
11703
|
GetBatchJobExecution: string;
|
|
11296
11704
|
GetDataSetDetails: string;
|
|
11705
|
+
GetDataSetExportTask: string;
|
|
11297
11706
|
GetDataSetImportTask: string;
|
|
11298
11707
|
GetDeployment: string;
|
|
11299
11708
|
GetEnvironment: string;
|
|
@@ -11303,6 +11712,7 @@ export declare const Actions: {
|
|
|
11303
11712
|
ListBatchJobDefinitions: string;
|
|
11304
11713
|
ListBatchJobExecutions: string;
|
|
11305
11714
|
ListBatchJobRestartPoints: string;
|
|
11715
|
+
ListDataSetExportHistory: string;
|
|
11306
11716
|
ListDataSetImportHistory: string;
|
|
11307
11717
|
ListDataSets: string;
|
|
11308
11718
|
ListDeployments: string;
|
|
@@ -11643,6 +12053,7 @@ export declare const Actions: {
|
|
|
11643
12053
|
CreateNode: string;
|
|
11644
12054
|
CreateNodeRegistrationScript: string;
|
|
11645
12055
|
CreatePartnerInput: string;
|
|
12056
|
+
CreateSdiSource: string;
|
|
11646
12057
|
CreateSignalMap: string;
|
|
11647
12058
|
CreateTags: string;
|
|
11648
12059
|
DeleteChannel: string;
|
|
@@ -11660,6 +12071,7 @@ export declare const Actions: {
|
|
|
11660
12071
|
DeleteNode: string;
|
|
11661
12072
|
DeleteReservation: string;
|
|
11662
12073
|
DeleteSchedule: string;
|
|
12074
|
+
DeleteSdiSource: string;
|
|
11663
12075
|
DeleteSignalMap: string;
|
|
11664
12076
|
DeleteTags: string;
|
|
11665
12077
|
DescribeAccountConfiguration: string;
|
|
@@ -11677,6 +12089,7 @@ export declare const Actions: {
|
|
|
11677
12089
|
DescribeOffering: string;
|
|
11678
12090
|
DescribeReservation: string;
|
|
11679
12091
|
DescribeSchedule: string;
|
|
12092
|
+
DescribeSdiSource: string;
|
|
11680
12093
|
DescribeThumbnails: string;
|
|
11681
12094
|
GetCloudWatchAlarmTemplate: string;
|
|
11682
12095
|
GetCloudWatchAlarmTemplateGroup: string;
|
|
@@ -11700,6 +12113,7 @@ export declare const Actions: {
|
|
|
11700
12113
|
ListNodes: string;
|
|
11701
12114
|
ListOfferings: string;
|
|
11702
12115
|
ListReservations: string;
|
|
12116
|
+
ListSdiSources: string;
|
|
11703
12117
|
ListSignalMaps: string;
|
|
11704
12118
|
ListTagsForResource: string;
|
|
11705
12119
|
ListVersions: string;
|
|
@@ -11738,6 +12152,7 @@ export declare const Actions: {
|
|
|
11738
12152
|
UpdateNode: string;
|
|
11739
12153
|
UpdateNodeState: string;
|
|
11740
12154
|
UpdateReservation: string;
|
|
12155
|
+
UpdateSdiSource: string;
|
|
11741
12156
|
};
|
|
11742
12157
|
'mediapackage-vod': {
|
|
11743
12158
|
ConfigureLogs: string;
|
|
@@ -11895,10 +12310,12 @@ export declare const Actions: {
|
|
|
11895
12310
|
DeleteDatastore: string;
|
|
11896
12311
|
DeleteImageSet: string;
|
|
11897
12312
|
GetDatastore: string;
|
|
12313
|
+
GetDICOMBulkdata: string;
|
|
11898
12314
|
GetDICOMImportJob: string;
|
|
11899
12315
|
GetDICOMInstance: string;
|
|
11900
12316
|
GetDICOMInstanceFrames: string;
|
|
11901
12317
|
GetDICOMInstanceMetadata: string;
|
|
12318
|
+
GetDICOMSeriesMetadata: string;
|
|
11902
12319
|
GetImageFrame: string;
|
|
11903
12320
|
GetImageSet: string;
|
|
11904
12321
|
GetImageSetMetadata: string;
|
|
@@ -11906,8 +12323,13 @@ export declare const Actions: {
|
|
|
11906
12323
|
ListDICOMImportJobs: string;
|
|
11907
12324
|
ListImageSetVersions: string;
|
|
11908
12325
|
ListTagsForResource: string;
|
|
12326
|
+
SearchDICOMInstances: string;
|
|
12327
|
+
SearchDICOMSeries: string;
|
|
12328
|
+
SearchDICOMStudies: string;
|
|
11909
12329
|
SearchImageSets: string;
|
|
11910
12330
|
StartDICOMImportJob: string;
|
|
12331
|
+
StoreDICOM: string;
|
|
12332
|
+
StoreDICOMStudy: string;
|
|
11911
12333
|
TagResource: string;
|
|
11912
12334
|
UntagResource: string;
|
|
11913
12335
|
UpdateImageSetMetadata: string;
|
|
@@ -11949,6 +12371,7 @@ export declare const Actions: {
|
|
|
11949
12371
|
ListAllowedMultiRegionClusterUpdates: string;
|
|
11950
12372
|
ListAllowedNodeTypeUpdates: string;
|
|
11951
12373
|
ListTags: string;
|
|
12374
|
+
PauseMultiRegionClusterReplication: string;
|
|
11952
12375
|
PurchaseReservedNodesOffering: string;
|
|
11953
12376
|
ResetParameterGroup: string;
|
|
11954
12377
|
TagResource: string;
|
|
@@ -12357,6 +12780,32 @@ export declare const Actions: {
|
|
|
12357
12780
|
UntagResource: string;
|
|
12358
12781
|
UpdateProject: string;
|
|
12359
12782
|
};
|
|
12783
|
+
mpa: {
|
|
12784
|
+
CancelSession: string;
|
|
12785
|
+
CreateApprovalTeam: string;
|
|
12786
|
+
CreateIdentitySource: string;
|
|
12787
|
+
DeleteIdentitySource: string;
|
|
12788
|
+
DeleteInactiveApprovalTeamVersion: string;
|
|
12789
|
+
DeleteResourcePolicy: string;
|
|
12790
|
+
GetApprovalTeam: string;
|
|
12791
|
+
GetIdentitySource: string;
|
|
12792
|
+
GetPolicyVersion: string;
|
|
12793
|
+
GetResourcePolicy: string;
|
|
12794
|
+
GetSession: string;
|
|
12795
|
+
ListApprovalTeams: string;
|
|
12796
|
+
ListIdentitySources: string;
|
|
12797
|
+
ListPolicies: string;
|
|
12798
|
+
ListPolicyVersions: string;
|
|
12799
|
+
ListResourcePolicies: string;
|
|
12800
|
+
ListSessions: string;
|
|
12801
|
+
ListTagsForResource: string;
|
|
12802
|
+
PutResourcePolicy: string;
|
|
12803
|
+
StartActiveApprovalTeamDeletion: string;
|
|
12804
|
+
StartSession: string;
|
|
12805
|
+
TagResource: string;
|
|
12806
|
+
UntagResource: string;
|
|
12807
|
+
UpdateApprovalTeam: string;
|
|
12808
|
+
};
|
|
12360
12809
|
mq: {
|
|
12361
12810
|
CreateBroker: string;
|
|
12362
12811
|
CreateConfiguration: string;
|
|
@@ -12364,6 +12813,7 @@ export declare const Actions: {
|
|
|
12364
12813
|
CreateTags: string;
|
|
12365
12814
|
CreateUser: string;
|
|
12366
12815
|
DeleteBroker: string;
|
|
12816
|
+
DeleteConfiguration: string;
|
|
12367
12817
|
DeleteTags: string;
|
|
12368
12818
|
DeleteUser: string;
|
|
12369
12819
|
DescribeBroker: string;
|
|
@@ -12450,32 +12900,43 @@ export declare const Actions: {
|
|
|
12450
12900
|
ResetGraph: string;
|
|
12451
12901
|
RestoreGraphFromSnapshot: string;
|
|
12452
12902
|
StartExportTask: string;
|
|
12903
|
+
StartGraph: string;
|
|
12453
12904
|
StartImportTask: string;
|
|
12905
|
+
StopGraph: string;
|
|
12454
12906
|
TagResource: string;
|
|
12455
12907
|
UntagResource: string;
|
|
12456
12908
|
UpdateGraph: string;
|
|
12457
12909
|
WriteDataViaQuery: string;
|
|
12458
12910
|
};
|
|
12459
12911
|
'network-firewall': {
|
|
12912
|
+
AcceptNetworkFirewallTransitGatewayAttachment: string;
|
|
12913
|
+
AssociateAvailabilityZones: string;
|
|
12460
12914
|
AssociateFirewallPolicy: string;
|
|
12461
12915
|
AssociateSubnets: string;
|
|
12462
12916
|
CreateFirewall: string;
|
|
12463
12917
|
CreateFirewallPolicy: string;
|
|
12464
12918
|
CreateRuleGroup: string;
|
|
12465
12919
|
CreateTLSInspectionConfiguration: string;
|
|
12920
|
+
CreateVpcEndpointAssociation: string;
|
|
12466
12921
|
DeleteFirewall: string;
|
|
12467
12922
|
DeleteFirewallPolicy: string;
|
|
12923
|
+
DeleteNetworkFirewallTransitGatewayAttachment: string;
|
|
12468
12924
|
DeleteResourcePolicy: string;
|
|
12469
12925
|
DeleteRuleGroup: string;
|
|
12470
12926
|
DeleteTLSInspectionConfiguration: string;
|
|
12927
|
+
DeleteVpcEndpointAssociation: string;
|
|
12471
12928
|
DescribeFirewall: string;
|
|
12929
|
+
DescribeFirewallMetadata: string;
|
|
12472
12930
|
DescribeFirewallPolicy: string;
|
|
12473
12931
|
DescribeFlowOperation: string;
|
|
12474
12932
|
DescribeLoggingConfiguration: string;
|
|
12475
12933
|
DescribeResourcePolicy: string;
|
|
12476
12934
|
DescribeRuleGroup: string;
|
|
12477
12935
|
DescribeRuleGroupMetadata: string;
|
|
12936
|
+
DescribeRuleGroupSummary: string;
|
|
12478
12937
|
DescribeTLSInspectionConfiguration: string;
|
|
12938
|
+
DescribeVpcEndpointAssociation: string;
|
|
12939
|
+
DisassociateAvailabilityZones: string;
|
|
12479
12940
|
DisassociateSubnets: string;
|
|
12480
12941
|
GetAnalysisReportResults: string;
|
|
12481
12942
|
ListAnalysisReports: string;
|
|
@@ -12486,12 +12947,15 @@ export declare const Actions: {
|
|
|
12486
12947
|
ListRuleGroups: string;
|
|
12487
12948
|
ListTagsForResource: string;
|
|
12488
12949
|
ListTLSInspectionConfigurations: string;
|
|
12950
|
+
ListVpcEndpointAssociations: string;
|
|
12489
12951
|
PutResourcePolicy: string;
|
|
12952
|
+
RejectNetworkFirewallTransitGatewayAttachment: string;
|
|
12490
12953
|
StartAnalysisReport: string;
|
|
12491
12954
|
StartFlowCapture: string;
|
|
12492
12955
|
StartFlowFlush: string;
|
|
12493
12956
|
TagResource: string;
|
|
12494
12957
|
UntagResource: string;
|
|
12958
|
+
UpdateAvailabilityZoneChangeProtection: string;
|
|
12495
12959
|
UpdateFirewallAnalysisSettings: string;
|
|
12496
12960
|
UpdateFirewallDeleteProtection: string;
|
|
12497
12961
|
UpdateFirewallDescription: string;
|
|
@@ -12503,6 +12967,17 @@ export declare const Actions: {
|
|
|
12503
12967
|
UpdateSubnetChangeProtection: string;
|
|
12504
12968
|
UpdateTLSInspectionConfiguration: string;
|
|
12505
12969
|
};
|
|
12970
|
+
'network-security-director': {
|
|
12971
|
+
GetFinding: string;
|
|
12972
|
+
GetNetworkSecurityScan: string;
|
|
12973
|
+
GetResource: string;
|
|
12974
|
+
ListFindings: string;
|
|
12975
|
+
ListInsights: string;
|
|
12976
|
+
ListRemediations: string;
|
|
12977
|
+
ListResources: string;
|
|
12978
|
+
StartNetworkSecurityScan: string;
|
|
12979
|
+
UpdateFinding: string;
|
|
12980
|
+
};
|
|
12506
12981
|
networkflowmonitor: {
|
|
12507
12982
|
CreateMonitor: string;
|
|
12508
12983
|
CreateScope: string;
|
|
@@ -12765,14 +13240,75 @@ export declare const Actions: {
|
|
|
12765
13240
|
UpdateLink: string;
|
|
12766
13241
|
};
|
|
12767
13242
|
observabilityadmin: {
|
|
13243
|
+
CreateTelemetryRule: string;
|
|
13244
|
+
CreateTelemetryRuleForOrganization: string;
|
|
13245
|
+
DeleteTelemetryRule: string;
|
|
13246
|
+
DeleteTelemetryRuleForOrganization: string;
|
|
12768
13247
|
GetTelemetryEvaluationStatus: string;
|
|
12769
13248
|
GetTelemetryEvaluationStatusForOrganization: string;
|
|
13249
|
+
GetTelemetryRule: string;
|
|
13250
|
+
GetTelemetryRuleForOrganization: string;
|
|
12770
13251
|
ListResourceTelemetry: string;
|
|
12771
13252
|
ListResourceTelemetryForOrganization: string;
|
|
13253
|
+
ListTagsForResource: string;
|
|
13254
|
+
ListTelemetryRules: string;
|
|
13255
|
+
ListTelemetryRulesForOrganization: string;
|
|
12772
13256
|
StartTelemetryEvaluation: string;
|
|
12773
13257
|
StartTelemetryEvaluationForOrganization: string;
|
|
12774
13258
|
StopTelemetryEvaluation: string;
|
|
12775
13259
|
StopTelemetryEvaluationForOrganization: string;
|
|
13260
|
+
TagResource: string;
|
|
13261
|
+
UntagResource: string;
|
|
13262
|
+
UpdateTelemetryRule: string;
|
|
13263
|
+
UpdateTelemetryRuleForOrganization: string;
|
|
13264
|
+
};
|
|
13265
|
+
odb: {
|
|
13266
|
+
AcceptMarketplaceRegistration: string;
|
|
13267
|
+
CreateCloudAutonomousVmCluster: string;
|
|
13268
|
+
CreateCloudExadataInfrastructure: string;
|
|
13269
|
+
CreateCloudVmCluster: string;
|
|
13270
|
+
CreateDbNode: string;
|
|
13271
|
+
CreateOdbNetwork: string;
|
|
13272
|
+
CreateOdbPeeringConnection: string;
|
|
13273
|
+
CreateOutboundIntegration: string;
|
|
13274
|
+
DeleteCloudAutonomousVmCluster: string;
|
|
13275
|
+
DeleteCloudExadataInfrastructure: string;
|
|
13276
|
+
DeleteCloudVmCluster: string;
|
|
13277
|
+
DeleteDbNode: string;
|
|
13278
|
+
DeleteOdbNetwork: string;
|
|
13279
|
+
DeleteOdbPeeringConnection: string;
|
|
13280
|
+
DeleteResourcePolicy: string;
|
|
13281
|
+
GetCloudAutonomousVmCluster: string;
|
|
13282
|
+
GetCloudExadataInfrastructure: string;
|
|
13283
|
+
GetCloudExadataInfrastructureUnallocatedResources: string;
|
|
13284
|
+
GetCloudVmCluster: string;
|
|
13285
|
+
GetDbNode: string;
|
|
13286
|
+
GetDbServer: string;
|
|
13287
|
+
GetOciOnboardingStatus: string;
|
|
13288
|
+
GetOdbNetwork: string;
|
|
13289
|
+
GetOdbPeeringConnection: string;
|
|
13290
|
+
GetResourcePolicy: string;
|
|
13291
|
+
InitializeService: string;
|
|
13292
|
+
ListAutonomousVirtualMachines: string;
|
|
13293
|
+
ListCloudAutonomousVmClusters: string;
|
|
13294
|
+
ListCloudExadataInfrastructures: string;
|
|
13295
|
+
ListCloudVmClusters: string;
|
|
13296
|
+
ListDbNodes: string;
|
|
13297
|
+
ListDbServers: string;
|
|
13298
|
+
ListDbSystemShapes: string;
|
|
13299
|
+
ListGiVersions: string;
|
|
13300
|
+
ListOdbNetworks: string;
|
|
13301
|
+
ListOdbPeeringConnections: string;
|
|
13302
|
+
ListSystemVersions: string;
|
|
13303
|
+
ListTagsForResource: string;
|
|
13304
|
+
PutResourcePolicy: string;
|
|
13305
|
+
RebootDbNode: string;
|
|
13306
|
+
StartDbNode: string;
|
|
13307
|
+
StopDbNode: string;
|
|
13308
|
+
TagResource: string;
|
|
13309
|
+
UntagResource: string;
|
|
13310
|
+
UpdateCloudExadataInfrastructure: string;
|
|
13311
|
+
UpdateOdbNetwork: string;
|
|
12776
13312
|
};
|
|
12777
13313
|
omics: {
|
|
12778
13314
|
AbortMultipartReadSetUpload: string;
|
|
@@ -12792,6 +13328,7 @@ export declare const Actions: {
|
|
|
12792
13328
|
CreateShare: string;
|
|
12793
13329
|
CreateVariantStore: string;
|
|
12794
13330
|
CreateWorkflow: string;
|
|
13331
|
+
CreateWorkflowVersion: string;
|
|
12795
13332
|
DeleteAnnotationStore: string;
|
|
12796
13333
|
DeleteAnnotationStoreVersions: string;
|
|
12797
13334
|
DeleteReference: string;
|
|
@@ -12804,6 +13341,7 @@ export declare const Actions: {
|
|
|
12804
13341
|
DeleteShare: string;
|
|
12805
13342
|
DeleteVariantStore: string;
|
|
12806
13343
|
DeleteWorkflow: string;
|
|
13344
|
+
DeleteWorkflowVersion: string;
|
|
12807
13345
|
GetAnnotationImportJob: string;
|
|
12808
13346
|
GetAnnotationStore: string;
|
|
12809
13347
|
GetAnnotationStoreVersion: string;
|
|
@@ -12826,6 +13364,7 @@ export declare const Actions: {
|
|
|
12826
13364
|
GetVariantImportJob: string;
|
|
12827
13365
|
GetVariantStore: string;
|
|
12828
13366
|
GetWorkflow: string;
|
|
13367
|
+
GetWorkflowVersion: string;
|
|
12829
13368
|
ListAnnotationImportJobs: string;
|
|
12830
13369
|
ListAnnotationStores: string;
|
|
12831
13370
|
ListAnnotationStoreVersions: string;
|
|
@@ -12848,6 +13387,7 @@ export declare const Actions: {
|
|
|
12848
13387
|
ListVariantImportJobs: string;
|
|
12849
13388
|
ListVariantStores: string;
|
|
12850
13389
|
ListWorkflows: string;
|
|
13390
|
+
ListWorkflowVersions: string;
|
|
12851
13391
|
PutS3AccessPolicy: string;
|
|
12852
13392
|
StartAnnotationImportJob: string;
|
|
12853
13393
|
StartReadSetActivationJob: string;
|
|
@@ -12865,6 +13405,7 @@ export declare const Actions: {
|
|
|
12865
13405
|
UpdateSequenceStore: string;
|
|
12866
13406
|
UpdateVariantStore: string;
|
|
12867
13407
|
UpdateWorkflow: string;
|
|
13408
|
+
UpdateWorkflowVersion: string;
|
|
12868
13409
|
UploadReadSetPart: string;
|
|
12869
13410
|
};
|
|
12870
13411
|
one: {
|
|
@@ -13088,6 +13629,7 @@ export declare const Actions: {
|
|
|
13088
13629
|
GetConnection: string;
|
|
13089
13630
|
GetOrder: string;
|
|
13090
13631
|
GetOutpost: string;
|
|
13632
|
+
GetOutpostBillingInformation: string;
|
|
13091
13633
|
GetOutpostInstanceTypes: string;
|
|
13092
13634
|
GetOutpostSupportedInstanceTypes: string;
|
|
13093
13635
|
GetPrivateConnectivityConfig: string;
|
|
@@ -13480,6 +14022,7 @@ export declare const Actions: {
|
|
|
13480
14022
|
BatchGetProfile: string;
|
|
13481
14023
|
CreateCalculatedAttributeDefinition: string;
|
|
13482
14024
|
CreateDomain: string;
|
|
14025
|
+
CreateDomainLayout: string;
|
|
13483
14026
|
CreateEventStream: string;
|
|
13484
14027
|
CreateEventTrigger: string;
|
|
13485
14028
|
CreateIntegrationWorkflow: string;
|
|
@@ -13488,8 +14031,10 @@ export declare const Actions: {
|
|
|
13488
14031
|
CreateSegmentEstimate: string;
|
|
13489
14032
|
CreateSegmentSnapshot: string;
|
|
13490
14033
|
CreateSnapshot: string;
|
|
14034
|
+
CreateUploadJob: string;
|
|
13491
14035
|
DeleteCalculatedAttributeDefinition: string;
|
|
13492
14036
|
DeleteDomain: string;
|
|
14037
|
+
DeleteDomainLayout: string;
|
|
13493
14038
|
DeleteEventStream: string;
|
|
13494
14039
|
DeleteEventTrigger: string;
|
|
13495
14040
|
DeleteIntegration: string;
|
|
@@ -13504,6 +14049,7 @@ export declare const Actions: {
|
|
|
13504
14049
|
GetCalculatedAttributeDefinition: string;
|
|
13505
14050
|
GetCalculatedAttributeForProfile: string;
|
|
13506
14051
|
GetDomain: string;
|
|
14052
|
+
GetDomainLayout: string;
|
|
13507
14053
|
GetEventStream: string;
|
|
13508
14054
|
GetEventTrigger: string;
|
|
13509
14055
|
GetIdentityResolutionJob: string;
|
|
@@ -13517,11 +14063,14 @@ export declare const Actions: {
|
|
|
13517
14063
|
GetSegmentSnapshot: string;
|
|
13518
14064
|
GetSimilarProfiles: string;
|
|
13519
14065
|
GetSnapshot: string;
|
|
14066
|
+
GetUploadJob: string;
|
|
14067
|
+
GetUploadJobPath: string;
|
|
13520
14068
|
GetWorkflow: string;
|
|
13521
14069
|
GetWorkflowSteps: string;
|
|
13522
14070
|
ListAccountIntegrations: string;
|
|
13523
14071
|
ListCalculatedAttributeDefinitions: string;
|
|
13524
14072
|
ListCalculatedAttributesForProfile: string;
|
|
14073
|
+
ListDomainLayouts: string;
|
|
13525
14074
|
ListDomains: string;
|
|
13526
14075
|
ListEventStreams: string;
|
|
13527
14076
|
ListEventTriggers: string;
|
|
@@ -13535,16 +14084,20 @@ export declare const Actions: {
|
|
|
13535
14084
|
ListRuleBasedMatches: string;
|
|
13536
14085
|
ListSegmentDefinitions: string;
|
|
13537
14086
|
ListTagsForResource: string;
|
|
14087
|
+
ListUploadJobs: string;
|
|
13538
14088
|
ListWorkflows: string;
|
|
13539
14089
|
MergeProfiles: string;
|
|
13540
14090
|
PutIntegration: string;
|
|
13541
14091
|
PutProfileObject: string;
|
|
13542
14092
|
PutProfileObjectType: string;
|
|
13543
14093
|
SearchProfiles: string;
|
|
14094
|
+
StartUploadJob: string;
|
|
14095
|
+
StopUploadJob: string;
|
|
13544
14096
|
TagResource: string;
|
|
13545
14097
|
UntagResource: string;
|
|
13546
14098
|
UpdateCalculatedAttributeDefinition: string;
|
|
13547
14099
|
UpdateDomain: string;
|
|
14100
|
+
UpdateDomainLayout: string;
|
|
13548
14101
|
UpdateEventTrigger: string;
|
|
13549
14102
|
UpdateProfile: string;
|
|
13550
14103
|
};
|
|
@@ -13684,8 +14237,11 @@ export declare const Actions: {
|
|
|
13684
14237
|
CreateOAuthAppConnection: string;
|
|
13685
14238
|
CreatePlugin: string;
|
|
13686
14239
|
DeleteAssignment: string;
|
|
14240
|
+
DeleteConversation: string;
|
|
14241
|
+
DeleteOAuthAppConnection: string;
|
|
13687
14242
|
DeletePlugin: string;
|
|
13688
14243
|
GenerateCodeFromCommands: string;
|
|
14244
|
+
GenerateCodeRecommendations: string;
|
|
13689
14245
|
GetConnector: string;
|
|
13690
14246
|
GetConversation: string;
|
|
13691
14247
|
GetIdentityMetadata: string;
|
|
@@ -13706,9 +14262,12 @@ export declare const Actions: {
|
|
|
13706
14262
|
TagResource: string;
|
|
13707
14263
|
UntagResource: string;
|
|
13708
14264
|
UpdateAuthGrant: string;
|
|
14265
|
+
UpdateConversation: string;
|
|
13709
14266
|
UpdateOAuthAppConnection: string;
|
|
14267
|
+
UpdatePlugin: string;
|
|
13710
14268
|
UpdateTroubleshootingCommandResult: string;
|
|
13711
14269
|
UsePlugin: string;
|
|
14270
|
+
VerifyOAuthAppConnection: string;
|
|
13712
14271
|
};
|
|
13713
14272
|
qapps: {
|
|
13714
14273
|
AssociateLibraryItemReview: string;
|
|
@@ -13719,7 +14278,6 @@ export declare const Actions: {
|
|
|
13719
14278
|
CopyQApp: string;
|
|
13720
14279
|
CreateLibraryItem: string;
|
|
13721
14280
|
CreateLibraryItemReview: string;
|
|
13722
|
-
CreatePresignedUrl: string;
|
|
13723
14281
|
CreateQApp: string;
|
|
13724
14282
|
CreateSubscriptionToken: string;
|
|
13725
14283
|
DeleteLibraryItem: string;
|
|
@@ -13733,8 +14291,6 @@ export declare const Actions: {
|
|
|
13733
14291
|
GetQAppSession: string;
|
|
13734
14292
|
GetQAppSessionMetadata: string;
|
|
13735
14293
|
ImportDocument: string;
|
|
13736
|
-
ImportDocumentToQApp: string;
|
|
13737
|
-
ImportDocumentToQAppSession: string;
|
|
13738
14294
|
ListCategories: string;
|
|
13739
14295
|
ListLibraryItems: string;
|
|
13740
14296
|
ListQApps: string;
|
|
@@ -13755,7 +14311,6 @@ export declare const Actions: {
|
|
|
13755
14311
|
UpdateQAppSessionMetadata: string;
|
|
13756
14312
|
};
|
|
13757
14313
|
qbusiness: {
|
|
13758
|
-
AddUserLicenses: string;
|
|
13759
14314
|
AllowVendedLogDeliveryForResource: string;
|
|
13760
14315
|
AssociatePermission: string;
|
|
13761
14316
|
BatchDeleteDocument: string;
|
|
@@ -13763,12 +14318,15 @@ export declare const Actions: {
|
|
|
13763
14318
|
CancelSubscription: string;
|
|
13764
14319
|
Chat: string;
|
|
13765
14320
|
ChatSync: string;
|
|
14321
|
+
CheckDocumentAccess: string;
|
|
14322
|
+
CreateAnonymousWebExperienceUrl: string;
|
|
13766
14323
|
CreateApplication: string;
|
|
14324
|
+
CreateChatResponseConfiguration: string;
|
|
13767
14325
|
CreateDataAccessor: string;
|
|
14326
|
+
CreateDataAccessorWithTti: string;
|
|
13768
14327
|
CreateDataSource: string;
|
|
13769
14328
|
CreateIndex: string;
|
|
13770
14329
|
CreateIntegration: string;
|
|
13771
|
-
CreateLicense: string;
|
|
13772
14330
|
CreatePlugin: string;
|
|
13773
14331
|
CreateRetriever: string;
|
|
13774
14332
|
CreateSubscription: string;
|
|
@@ -13777,6 +14335,7 @@ export declare const Actions: {
|
|
|
13777
14335
|
DeleteApplication: string;
|
|
13778
14336
|
DeleteAttachment: string;
|
|
13779
14337
|
DeleteChatControlsConfiguration: string;
|
|
14338
|
+
DeleteChatResponseConfiguration: string;
|
|
13780
14339
|
DeleteConversation: string;
|
|
13781
14340
|
DeleteDataAccessor: string;
|
|
13782
14341
|
DeleteDataSource: string;
|
|
@@ -13791,12 +14350,13 @@ export declare const Actions: {
|
|
|
13791
14350
|
DisassociatePermission: string;
|
|
13792
14351
|
GetApplication: string;
|
|
13793
14352
|
GetChatControlsConfiguration: string;
|
|
14353
|
+
GetChatResponseConfiguration: string;
|
|
13794
14354
|
GetDataAccessor: string;
|
|
13795
14355
|
GetDataSource: string;
|
|
14356
|
+
GetDocumentContent: string;
|
|
13796
14357
|
GetGroup: string;
|
|
13797
14358
|
GetIndex: string;
|
|
13798
14359
|
GetIntegration: string;
|
|
13799
|
-
GetLicense: string;
|
|
13800
14360
|
GetMedia: string;
|
|
13801
14361
|
GetPlugin: string;
|
|
13802
14362
|
GetPolicy: string;
|
|
@@ -13805,6 +14365,7 @@ export declare const Actions: {
|
|
|
13805
14365
|
GetWebExperience: string;
|
|
13806
14366
|
ListApplications: string;
|
|
13807
14367
|
ListAttachments: string;
|
|
14368
|
+
ListChatResponseConfigurations: string;
|
|
13808
14369
|
ListConversations: string;
|
|
13809
14370
|
ListDataAccessors: string;
|
|
13810
14371
|
ListDataSources: string;
|
|
@@ -13821,12 +14382,10 @@ export declare const Actions: {
|
|
|
13821
14382
|
ListRetrievers: string;
|
|
13822
14383
|
ListSubscriptions: string;
|
|
13823
14384
|
ListTagsForResource: string;
|
|
13824
|
-
ListUserLicenses: string;
|
|
13825
14385
|
ListWebExperiences: string;
|
|
13826
14386
|
PutFeedback: string;
|
|
13827
14387
|
PutGroup: string;
|
|
13828
14388
|
PutResourcePolicy: string;
|
|
13829
|
-
RemoveUserLicenses: string;
|
|
13830
14389
|
SearchRelevantContent: string;
|
|
13831
14390
|
StartDataSourceSyncJob: string;
|
|
13832
14391
|
StartDeployment: string;
|
|
@@ -13835,6 +14394,7 @@ export declare const Actions: {
|
|
|
13835
14394
|
UntagResource: string;
|
|
13836
14395
|
UpdateApplication: string;
|
|
13837
14396
|
UpdateChatControlsConfiguration: string;
|
|
14397
|
+
UpdateChatResponseConfiguration: string;
|
|
13838
14398
|
UpdateDataAccessor: string;
|
|
13839
14399
|
UpdateDataSource: string;
|
|
13840
14400
|
UpdateIndex: string;
|
|
@@ -14255,6 +14815,7 @@ export declare const Actions: {
|
|
|
14255
14815
|
DescribeDBInstanceAutomatedBackups: string;
|
|
14256
14816
|
DescribeDBInstances: string;
|
|
14257
14817
|
DescribeDBLogFiles: string;
|
|
14818
|
+
DescribeDBMajorEngineVersions: string;
|
|
14258
14819
|
DescribeDBParameterGroups: string;
|
|
14259
14820
|
DescribeDBParameters: string;
|
|
14260
14821
|
DescribeDBProxies: string;
|
|
@@ -14370,6 +14931,7 @@ export declare const Actions: {
|
|
|
14370
14931
|
CreateCustomDomainAssociation: string;
|
|
14371
14932
|
CreateEndpointAccess: string;
|
|
14372
14933
|
CreateNamespace: string;
|
|
14934
|
+
CreateReservation: string;
|
|
14373
14935
|
CreateScheduledAction: string;
|
|
14374
14936
|
CreateSnapshot: string;
|
|
14375
14937
|
CreateSnapshotCopyConfiguration: string;
|
|
@@ -14391,6 +14953,8 @@ export declare const Actions: {
|
|
|
14391
14953
|
GetManagedWorkgroup: string;
|
|
14392
14954
|
GetNamespace: string;
|
|
14393
14955
|
GetRecoveryPoint: string;
|
|
14956
|
+
GetReservation: string;
|
|
14957
|
+
GetReservationOffering: string;
|
|
14394
14958
|
GetResourcePolicy: string;
|
|
14395
14959
|
GetScheduledAction: string;
|
|
14396
14960
|
GetSnapshot: string;
|
|
@@ -14403,6 +14967,8 @@ export declare const Actions: {
|
|
|
14403
14967
|
ListManagedWorkgroups: string;
|
|
14404
14968
|
ListNamespaces: string;
|
|
14405
14969
|
ListRecoveryPoints: string;
|
|
14970
|
+
ListReservationOfferings: string;
|
|
14971
|
+
ListReservations: string;
|
|
14406
14972
|
ListScheduledActions: string;
|
|
14407
14973
|
ListSnapshotCopyConfigurations: string;
|
|
14408
14974
|
ListSnapshots: string;
|
|
@@ -14697,18 +15263,24 @@ export declare const Actions: {
|
|
|
14697
15263
|
UpdateStreamProcessor: string;
|
|
14698
15264
|
};
|
|
14699
15265
|
repostspace: {
|
|
15266
|
+
BatchAddChannelRoleToAccessors: string;
|
|
14700
15267
|
BatchAddRole: string;
|
|
15268
|
+
BatchRemoveChannelRoleFromAccessors: string;
|
|
14701
15269
|
BatchRemoveRole: string;
|
|
15270
|
+
CreateChannel: string;
|
|
14702
15271
|
CreateSpace: string;
|
|
14703
15272
|
DeleteSpace: string;
|
|
14704
15273
|
DeregisterAdmin: string;
|
|
15274
|
+
GetChannel: string;
|
|
14705
15275
|
GetSpace: string;
|
|
15276
|
+
ListChannels: string;
|
|
14706
15277
|
ListSpaces: string;
|
|
14707
15278
|
ListTagsForResource: string;
|
|
14708
15279
|
RegisterAdmin: string;
|
|
14709
15280
|
SendInvites: string;
|
|
14710
15281
|
TagResource: string;
|
|
14711
15282
|
UntagResource: string;
|
|
15283
|
+
UpdateChannel: string;
|
|
14712
15284
|
UpdateSpace: string;
|
|
14713
15285
|
};
|
|
14714
15286
|
resiliencehub: {
|
|
@@ -15466,6 +16038,8 @@ export declare const Actions: {
|
|
|
15466
16038
|
TagResource: string;
|
|
15467
16039
|
UntagResource: string;
|
|
15468
16040
|
UpdateAccessGrantsLocation: string;
|
|
16041
|
+
UpdateBucketMetadataInventoryTableConfiguration: string;
|
|
16042
|
+
UpdateBucketMetadataJournalTableConfiguration: string;
|
|
15469
16043
|
UpdateJobPriority: string;
|
|
15470
16044
|
UpdateJobStatus: string;
|
|
15471
16045
|
UpdateStorageLensGroup: string;
|
|
@@ -15487,11 +16061,14 @@ export declare const Actions: {
|
|
|
15487
16061
|
GetLifecycleConfiguration: string;
|
|
15488
16062
|
ListAccessPointsForDirectoryBuckets: string;
|
|
15489
16063
|
ListAllMyDirectoryBuckets: string;
|
|
16064
|
+
ListTagsForResource: string;
|
|
15490
16065
|
PutAccessPointPolicy: string;
|
|
15491
16066
|
PutAccessPointScope: string;
|
|
15492
16067
|
PutBucketPolicy: string;
|
|
15493
16068
|
PutEncryptionConfiguration: string;
|
|
15494
16069
|
PutLifecycleConfiguration: string;
|
|
16070
|
+
TagResource: string;
|
|
16071
|
+
UntagResource: string;
|
|
15495
16072
|
};
|
|
15496
16073
|
s3tables: {
|
|
15497
16074
|
CreateNamespace: string;
|
|
@@ -15500,14 +16077,17 @@ export declare const Actions: {
|
|
|
15500
16077
|
DeleteNamespace: string;
|
|
15501
16078
|
DeleteTable: string;
|
|
15502
16079
|
DeleteTableBucket: string;
|
|
16080
|
+
DeleteTableBucketEncryption: string;
|
|
15503
16081
|
DeleteTableBucketPolicy: string;
|
|
15504
16082
|
DeleteTablePolicy: string;
|
|
15505
16083
|
GetNamespace: string;
|
|
15506
16084
|
GetTable: string;
|
|
15507
16085
|
GetTableBucket: string;
|
|
16086
|
+
GetTableBucketEncryption: string;
|
|
15508
16087
|
GetTableBucketMaintenanceConfiguration: string;
|
|
15509
16088
|
GetTableBucketPolicy: string;
|
|
15510
16089
|
GetTableData: string;
|
|
16090
|
+
GetTableEncryption: string;
|
|
15511
16091
|
GetTableMaintenanceConfiguration: string;
|
|
15512
16092
|
GetTableMaintenanceJobStatus: string;
|
|
15513
16093
|
GetTableMetadataLocation: string;
|
|
@@ -15515,14 +16095,34 @@ export declare const Actions: {
|
|
|
15515
16095
|
ListNamespaces: string;
|
|
15516
16096
|
ListTableBuckets: string;
|
|
15517
16097
|
ListTables: string;
|
|
16098
|
+
PutTableBucketEncryption: string;
|
|
15518
16099
|
PutTableBucketMaintenanceConfiguration: string;
|
|
15519
16100
|
PutTableBucketPolicy: string;
|
|
15520
16101
|
PutTableData: string;
|
|
16102
|
+
PutTableEncryption: string;
|
|
15521
16103
|
PutTableMaintenanceConfiguration: string;
|
|
15522
16104
|
PutTablePolicy: string;
|
|
15523
16105
|
RenameTable: string;
|
|
15524
16106
|
UpdateTableMetadataLocation: string;
|
|
15525
16107
|
};
|
|
16108
|
+
s3vectors: {
|
|
16109
|
+
CreateIndex: string;
|
|
16110
|
+
CreateVectorBucket: string;
|
|
16111
|
+
DeleteIndex: string;
|
|
16112
|
+
DeleteVectorBucket: string;
|
|
16113
|
+
DeleteVectorBucketPolicy: string;
|
|
16114
|
+
DeleteVectors: string;
|
|
16115
|
+
GetIndex: string;
|
|
16116
|
+
GetVectorBucket: string;
|
|
16117
|
+
GetVectorBucketPolicy: string;
|
|
16118
|
+
GetVectors: string;
|
|
16119
|
+
ListIndexes: string;
|
|
16120
|
+
ListVectorBuckets: string;
|
|
16121
|
+
ListVectors: string;
|
|
16122
|
+
PutVectorBucketPolicy: string;
|
|
16123
|
+
PutVectors: string;
|
|
16124
|
+
QueryVectors: string;
|
|
16125
|
+
};
|
|
15526
16126
|
'sagemaker-data-science-assistant': {
|
|
15527
16127
|
SendConversation: string;
|
|
15528
16128
|
};
|
|
@@ -15547,20 +16147,6 @@ export declare const Actions: {
|
|
|
15547
16147
|
TagResource: string;
|
|
15548
16148
|
UntagResource: string;
|
|
15549
16149
|
};
|
|
15550
|
-
'sagemaker-groundtruth-synthetic': {
|
|
15551
|
-
CreateProject: string;
|
|
15552
|
-
DeleteProject: string;
|
|
15553
|
-
GetAccountDetails: string;
|
|
15554
|
-
GetBatch: string;
|
|
15555
|
-
GetProject: string;
|
|
15556
|
-
ListBatchDataTransfers: string;
|
|
15557
|
-
ListBatchSummaries: string;
|
|
15558
|
-
ListProjectDataTransfers: string;
|
|
15559
|
-
ListProjectSummaries: string;
|
|
15560
|
-
StartBatchDataTransfer: string;
|
|
15561
|
-
StartProjectDataTransfer: string;
|
|
15562
|
-
UpdateBatch: string;
|
|
15563
|
-
};
|
|
15564
16150
|
'sagemaker-mlflow': {
|
|
15565
16151
|
AccessUI: string;
|
|
15566
16152
|
CreateExperiment: string;
|
|
@@ -15568,6 +16154,8 @@ export declare const Actions: {
|
|
|
15568
16154
|
CreateRegisteredModel: string;
|
|
15569
16155
|
CreateRun: string;
|
|
15570
16156
|
DeleteExperiment: string;
|
|
16157
|
+
DeleteLoggedModel: string;
|
|
16158
|
+
DeleteLoggedModelTag: string;
|
|
15571
16159
|
DeleteModelVersion: string;
|
|
15572
16160
|
DeleteModelVersionTag: string;
|
|
15573
16161
|
DeleteRegisteredModel: string;
|
|
@@ -15578,10 +16166,12 @@ export declare const Actions: {
|
|
|
15578
16166
|
DeleteTraces: string;
|
|
15579
16167
|
DeleteTraceTag: string;
|
|
15580
16168
|
EndTrace: string;
|
|
16169
|
+
FinalizeLoggedModel: string;
|
|
15581
16170
|
GetDownloadURIForModelVersionArtifacts: string;
|
|
15582
16171
|
GetExperiment: string;
|
|
15583
16172
|
GetExperimentByName: string;
|
|
15584
16173
|
GetLatestModelVersions: string;
|
|
16174
|
+
GetLoggedModel: string;
|
|
15585
16175
|
GetMetricHistory: string;
|
|
15586
16176
|
GetModelVersion: string;
|
|
15587
16177
|
GetModelVersionByAlias: string;
|
|
@@ -15589,20 +16179,25 @@ export declare const Actions: {
|
|
|
15589
16179
|
GetRun: string;
|
|
15590
16180
|
GetTraceInfo: string;
|
|
15591
16181
|
ListArtifacts: string;
|
|
16182
|
+
ListLoggedModelArtifacts: string;
|
|
15592
16183
|
LogBatch: string;
|
|
15593
16184
|
LogInputs: string;
|
|
16185
|
+
LogLoggedModelParams: string;
|
|
15594
16186
|
LogMetric: string;
|
|
15595
16187
|
LogModel: string;
|
|
16188
|
+
LogOutputs: string;
|
|
15596
16189
|
LogParam: string;
|
|
15597
16190
|
RenameRegisteredModel: string;
|
|
15598
16191
|
RestoreExperiment: string;
|
|
15599
16192
|
RestoreRun: string;
|
|
15600
16193
|
SearchExperiments: string;
|
|
16194
|
+
SearchLoggedModels: string;
|
|
15601
16195
|
SearchModelVersions: string;
|
|
15602
16196
|
SearchRegisteredModels: string;
|
|
15603
16197
|
SearchRuns: string;
|
|
15604
16198
|
SearchTraces: string;
|
|
15605
16199
|
SetExperimentTag: string;
|
|
16200
|
+
SetLoggedModelTags: string;
|
|
15606
16201
|
SetModelVersionTag: string;
|
|
15607
16202
|
SetRegisteredModelAlias: string;
|
|
15608
16203
|
SetRegisteredModelTag: string;
|
|
@@ -15619,6 +16214,8 @@ export declare const Actions: {
|
|
|
15619
16214
|
AddAssociation: string;
|
|
15620
16215
|
AddTags: string;
|
|
15621
16216
|
AssociateTrialComponent: string;
|
|
16217
|
+
AttachClusterNodeVolume: string;
|
|
16218
|
+
BatchAddClusterNodes: string;
|
|
15622
16219
|
BatchDeleteClusterNodes: string;
|
|
15623
16220
|
BatchDescribeModelPackage: string;
|
|
15624
16221
|
BatchGetMetrics: string;
|
|
@@ -15650,6 +16247,7 @@ export declare const Actions: {
|
|
|
15650
16247
|
CreateFeatureGroup: string;
|
|
15651
16248
|
CreateFlowDefinition: string;
|
|
15652
16249
|
CreateHub: string;
|
|
16250
|
+
CreateHubContentPresignedUrls: string;
|
|
15653
16251
|
CreateHubContentReference: string;
|
|
15654
16252
|
CreateHumanTaskUi: string;
|
|
15655
16253
|
CreateHyperParameterTuningJob: string;
|
|
@@ -15762,6 +16360,8 @@ export declare const Actions: {
|
|
|
15762
16360
|
DescribeAutoMLJob: string;
|
|
15763
16361
|
DescribeAutoMLJobV2: string;
|
|
15764
16362
|
DescribeCluster: string;
|
|
16363
|
+
DescribeClusterEvent: string;
|
|
16364
|
+
DescribeClusterInference: string;
|
|
15765
16365
|
DescribeClusterNode: string;
|
|
15766
16366
|
DescribeClusterSchedulerConfig: string;
|
|
15767
16367
|
DescribeCodeRepository: string;
|
|
@@ -15811,6 +16411,7 @@ export declare const Actions: {
|
|
|
15811
16411
|
DescribePipelineExecution: string;
|
|
15812
16412
|
DescribeProcessingJob: string;
|
|
15813
16413
|
DescribeProject: string;
|
|
16414
|
+
DescribeReservedCapacity: string;
|
|
15814
16415
|
DescribeSharedModel: string;
|
|
15815
16416
|
DescribeSpace: string;
|
|
15816
16417
|
DescribeStudioLifecycleConfig: string;
|
|
@@ -15823,6 +16424,7 @@ export declare const Actions: {
|
|
|
15823
16424
|
DescribeUserProfile: string;
|
|
15824
16425
|
DescribeWorkforce: string;
|
|
15825
16426
|
DescribeWorkteam: string;
|
|
16427
|
+
DetachClusterNodeVolume: string;
|
|
15826
16428
|
DisableSagemakerServicecatalogPortfolio: string;
|
|
15827
16429
|
DisassociateTrialComponent: string;
|
|
15828
16430
|
EnableSagemakerServicecatalogPortfolio: string;
|
|
@@ -15849,6 +16451,7 @@ export declare const Actions: {
|
|
|
15849
16451
|
ListAssociations: string;
|
|
15850
16452
|
ListAutoMLJobs: string;
|
|
15851
16453
|
ListCandidatesForAutoMLJob: string;
|
|
16454
|
+
ListClusterEvents: string;
|
|
15852
16455
|
ListClusterNodes: string;
|
|
15853
16456
|
ListClusters: string;
|
|
15854
16457
|
ListClusterSchedulerConfigs: string;
|
|
@@ -15905,6 +16508,7 @@ export declare const Actions: {
|
|
|
15905
16508
|
ListPipelineExecutionSteps: string;
|
|
15906
16509
|
ListPipelineParametersForExecution: string;
|
|
15907
16510
|
ListPipelines: string;
|
|
16511
|
+
ListPipelineVersions: string;
|
|
15908
16512
|
ListProcessingJobs: string;
|
|
15909
16513
|
ListProjects: string;
|
|
15910
16514
|
ListResourceCatalogs: string;
|
|
@@ -15922,6 +16526,7 @@ export declare const Actions: {
|
|
|
15922
16526
|
ListTransformJobs: string;
|
|
15923
16527
|
ListTrialComponents: string;
|
|
15924
16528
|
ListTrials: string;
|
|
16529
|
+
ListUltraServersByReservedCapacity: string;
|
|
15925
16530
|
ListUserProfiles: string;
|
|
15926
16531
|
ListWorkforces: string;
|
|
15927
16532
|
ListWorkteams: string;
|
|
@@ -15946,6 +16551,7 @@ export declare const Actions: {
|
|
|
15946
16551
|
StartMonitoringSchedule: string;
|
|
15947
16552
|
StartNotebookInstance: string;
|
|
15948
16553
|
StartPipelineExecution: string;
|
|
16554
|
+
StartSession: string;
|
|
15949
16555
|
StopAutoMLJob: string;
|
|
15950
16556
|
StopCompilationJob: string;
|
|
15951
16557
|
StopEdgeDeploymentStage: string;
|
|
@@ -15968,6 +16574,7 @@ export declare const Actions: {
|
|
|
15968
16574
|
UpdateAppImageConfig: string;
|
|
15969
16575
|
UpdateArtifact: string;
|
|
15970
16576
|
UpdateCluster: string;
|
|
16577
|
+
UpdateClusterInference: string;
|
|
15971
16578
|
UpdateClusterSchedulerConfig: string;
|
|
15972
16579
|
UpdateClusterSoftware: string;
|
|
15973
16580
|
UpdateCodeRepository: string;
|
|
@@ -15999,6 +16606,7 @@ export declare const Actions: {
|
|
|
15999
16606
|
UpdatePartnerApp: string;
|
|
16000
16607
|
UpdatePipeline: string;
|
|
16001
16608
|
UpdatePipelineExecution: string;
|
|
16609
|
+
UpdatePipelineVersion: string;
|
|
16002
16610
|
UpdateProject: string;
|
|
16003
16611
|
UpdateSharedModel: string;
|
|
16004
16612
|
UpdateSpace: string;
|
|
@@ -16073,20 +16681,28 @@ export declare const Actions: {
|
|
|
16073
16681
|
CreateBillOfMaterialsImportJob: string;
|
|
16074
16682
|
CreateDataIntegrationFlow: string;
|
|
16075
16683
|
CreateDataLakeDataset: string;
|
|
16684
|
+
CreateDataLakeNamespace: string;
|
|
16076
16685
|
CreateInstance: string;
|
|
16077
16686
|
CreateSSOApplication: string;
|
|
16078
16687
|
DeleteDataIntegrationFlow: string;
|
|
16079
16688
|
DeleteDataLakeDataset: string;
|
|
16689
|
+
DeleteDataLakeNamespace: string;
|
|
16080
16690
|
DeleteInstance: string;
|
|
16081
16691
|
DeleteSSOApplication: string;
|
|
16082
16692
|
DescribeInstance: string;
|
|
16083
16693
|
GetBillOfMaterialsImportJob: string;
|
|
16694
|
+
GetDataIntegrationEvent: string;
|
|
16084
16695
|
GetDataIntegrationFlow: string;
|
|
16696
|
+
GetDataIntegrationFlowExecution: string;
|
|
16085
16697
|
GetDataLakeDataset: string;
|
|
16698
|
+
GetDataLakeNamespace: string;
|
|
16086
16699
|
GetInstance: string;
|
|
16087
16700
|
ListAdminUsers: string;
|
|
16701
|
+
ListDataIntegrationEvents: string;
|
|
16702
|
+
ListDataIntegrationFlowExecutions: string;
|
|
16088
16703
|
ListDataIntegrationFlows: string;
|
|
16089
16704
|
ListDataLakeDatasets: string;
|
|
16705
|
+
ListDataLakeNamespaces: string;
|
|
16090
16706
|
ListInstances: string;
|
|
16091
16707
|
ListTagsForResource: string;
|
|
16092
16708
|
RemoveAdminPermissionsForUser: string;
|
|
@@ -16095,6 +16711,7 @@ export declare const Actions: {
|
|
|
16095
16711
|
UntagResource: string;
|
|
16096
16712
|
UpdateDataIntegrationFlow: string;
|
|
16097
16713
|
UpdateDataLakeDataset: string;
|
|
16714
|
+
UpdateDataLakeNamespace: string;
|
|
16098
16715
|
UpdateInstance: string;
|
|
16099
16716
|
};
|
|
16100
16717
|
sdb: {
|
|
@@ -16173,15 +16790,23 @@ export declare const Actions: {
|
|
|
16173
16790
|
BatchUpdateAutomationRules: string;
|
|
16174
16791
|
BatchUpdateFindings: string;
|
|
16175
16792
|
BatchUpdateStandardsControlAssociations: string;
|
|
16793
|
+
ConnectorRegistrationsV2: string;
|
|
16176
16794
|
CreateActionTarget: string;
|
|
16795
|
+
CreateAggregatorV2: string;
|
|
16177
16796
|
CreateAutomationRule: string;
|
|
16797
|
+
CreateAutomationRuleV2: string;
|
|
16178
16798
|
CreateConfigurationPolicy: string;
|
|
16799
|
+
CreateConnectorV2: string;
|
|
16179
16800
|
CreateFindingAggregator: string;
|
|
16180
16801
|
CreateInsight: string;
|
|
16181
16802
|
CreateMembers: string;
|
|
16803
|
+
CreateTicketV2: string;
|
|
16182
16804
|
DeclineInvitations: string;
|
|
16183
16805
|
DeleteActionTarget: string;
|
|
16806
|
+
DeleteAggregatorV2: string;
|
|
16807
|
+
DeleteAutomationRuleV2: string;
|
|
16184
16808
|
DeleteConfigurationPolicy: string;
|
|
16809
|
+
DeleteConnectorV2: string;
|
|
16185
16810
|
DeleteFindingAggregator: string;
|
|
16186
16811
|
DeleteInsight: string;
|
|
16187
16812
|
DeleteInvitations: string;
|
|
@@ -16190,21 +16815,28 @@ export declare const Actions: {
|
|
|
16190
16815
|
DescribeHub: string;
|
|
16191
16816
|
DescribeOrganizationConfiguration: string;
|
|
16192
16817
|
DescribeProducts: string;
|
|
16818
|
+
DescribeProductsV2: string;
|
|
16819
|
+
DescribeSecurityHubV2: string;
|
|
16193
16820
|
DescribeStandards: string;
|
|
16194
16821
|
DescribeStandardsControls: string;
|
|
16195
16822
|
DisableImportFindingsForProduct: string;
|
|
16196
16823
|
DisableOrganizationAdminAccount: string;
|
|
16197
16824
|
DisableSecurityHub: string;
|
|
16825
|
+
DisableSecurityHubV2: string;
|
|
16198
16826
|
DisassociateFromAdministratorAccount: string;
|
|
16199
16827
|
DisassociateFromMasterAccount: string;
|
|
16200
16828
|
DisassociateMembers: string;
|
|
16201
16829
|
EnableImportFindingsForProduct: string;
|
|
16202
16830
|
EnableOrganizationAdminAccount: string;
|
|
16203
16831
|
EnableSecurityHub: string;
|
|
16832
|
+
EnableSecurityHubV2: string;
|
|
16204
16833
|
GetAdhocInsightResults: string;
|
|
16205
16834
|
GetAdministratorAccount: string;
|
|
16835
|
+
GetAggregatorV2: string;
|
|
16836
|
+
GetAutomationRuleV2: string;
|
|
16206
16837
|
GetConfigurationPolicy: string;
|
|
16207
16838
|
GetConfigurationPolicyAssociation: string;
|
|
16839
|
+
GetConnectorV2: string;
|
|
16208
16840
|
GetControlFindingSummary: string;
|
|
16209
16841
|
GetEnabledStandards: string;
|
|
16210
16842
|
GetFindingAggregator: string;
|
|
@@ -16218,12 +16850,17 @@ export declare const Actions: {
|
|
|
16218
16850
|
GetInvitationsCount: string;
|
|
16219
16851
|
GetMasterAccount: string;
|
|
16220
16852
|
GetMembers: string;
|
|
16853
|
+
GetResourcesStatisticsV2: string;
|
|
16854
|
+
GetResourcesV2: string;
|
|
16221
16855
|
GetSecurityControlDefinition: string;
|
|
16222
16856
|
GetUsage: string;
|
|
16223
16857
|
InviteMembers: string;
|
|
16858
|
+
ListAggregatorsV2: string;
|
|
16224
16859
|
ListAutomationRules: string;
|
|
16860
|
+
ListAutomationRulesV2: string;
|
|
16225
16861
|
ListConfigurationPolicies: string;
|
|
16226
16862
|
ListConfigurationPolicyAssociations: string;
|
|
16863
|
+
ListConnectorsV2: string;
|
|
16227
16864
|
ListControlEvaluationSummaries: string;
|
|
16228
16865
|
ListEnabledProductsForImport: string;
|
|
16229
16866
|
ListFindingAggregators: string;
|
|
@@ -16240,7 +16877,10 @@ export declare const Actions: {
|
|
|
16240
16877
|
TagResource: string;
|
|
16241
16878
|
UntagResource: string;
|
|
16242
16879
|
UpdateActionTarget: string;
|
|
16880
|
+
UpdateAggregatorV2: string;
|
|
16881
|
+
UpdateAutomationRuleV2: string;
|
|
16243
16882
|
UpdateConfigurationPolicy: string;
|
|
16883
|
+
UpdateConnectorV2: string;
|
|
16244
16884
|
UpdateFindingAggregator: string;
|
|
16245
16885
|
UpdateFindings: string;
|
|
16246
16886
|
UpdateInsight: string;
|
|
@@ -16424,6 +17064,7 @@ export declare const Actions: {
|
|
|
16424
17064
|
CreatePublicDnsNamespace: string;
|
|
16425
17065
|
CreateService: string;
|
|
16426
17066
|
DeleteNamespace: string;
|
|
17067
|
+
DeleteResourcePolicy: string;
|
|
16427
17068
|
DeleteService: string;
|
|
16428
17069
|
DeleteServiceAttributes: string;
|
|
16429
17070
|
DeregisterInstance: string;
|
|
@@ -16433,6 +17074,7 @@ export declare const Actions: {
|
|
|
16433
17074
|
GetInstancesHealthStatus: string;
|
|
16434
17075
|
GetNamespace: string;
|
|
16435
17076
|
GetOperation: string;
|
|
17077
|
+
GetResourcePolicy: string;
|
|
16436
17078
|
GetService: string;
|
|
16437
17079
|
GetServiceAttributes: string;
|
|
16438
17080
|
ListInstances: string;
|
|
@@ -16440,6 +17082,7 @@ export declare const Actions: {
|
|
|
16440
17082
|
ListOperations: string;
|
|
16441
17083
|
ListServices: string;
|
|
16442
17084
|
ListTagsForResource: string;
|
|
17085
|
+
PutResourcePolicy: string;
|
|
16443
17086
|
RegisterInstance: string;
|
|
16444
17087
|
TagResource: string;
|
|
16445
17088
|
UntagResource: string;
|
|
@@ -16455,6 +17098,7 @@ export declare const Actions: {
|
|
|
16455
17098
|
};
|
|
16456
17099
|
servicequotas: {
|
|
16457
17100
|
AssociateServiceQuotaTemplate: string;
|
|
17101
|
+
CreateSupportCase: string;
|
|
16458
17102
|
DeleteServiceQuotaIncreaseRequestFromTemplate: string;
|
|
16459
17103
|
DisassociateServiceQuotaTemplate: string;
|
|
16460
17104
|
GetAssociationForServiceQuotaTemplate: string;
|
|
@@ -16505,6 +17149,8 @@ export declare const Actions: {
|
|
|
16505
17149
|
CreateRelay: string;
|
|
16506
17150
|
CreateRuleSet: string;
|
|
16507
17151
|
CreateTemplate: string;
|
|
17152
|
+
CreateTenant: string;
|
|
17153
|
+
CreateTenantResourceAssociation: string;
|
|
16508
17154
|
CreateTrafficPolicy: string;
|
|
16509
17155
|
DeleteAddonInstance: string;
|
|
16510
17156
|
DeleteAddonSubscription: string;
|
|
@@ -16531,6 +17177,8 @@ export declare const Actions: {
|
|
|
16531
17177
|
DeleteRuleSet: string;
|
|
16532
17178
|
DeleteSuppressedDestination: string;
|
|
16533
17179
|
DeleteTemplate: string;
|
|
17180
|
+
DeleteTenant: string;
|
|
17181
|
+
DeleteTenantResourceAssociation: string;
|
|
16534
17182
|
DeleteTrafficPolicy: string;
|
|
16535
17183
|
DeleteVerifiedEmailAddress: string;
|
|
16536
17184
|
DeregisterMemberFromAddressList: string;
|
|
@@ -16578,11 +17226,13 @@ export declare const Actions: {
|
|
|
16578
17226
|
GetMessageInsights: string;
|
|
16579
17227
|
GetMultiRegionEndpoint: string;
|
|
16580
17228
|
GetRelay: string;
|
|
17229
|
+
GetReputationEntity: string;
|
|
16581
17230
|
GetRuleSet: string;
|
|
16582
17231
|
GetSendQuota: string;
|
|
16583
17232
|
GetSendStatistics: string;
|
|
16584
17233
|
GetSuppressedDestination: string;
|
|
16585
17234
|
GetTemplate: string;
|
|
17235
|
+
GetTenant: string;
|
|
16586
17236
|
GetTrafficPolicy: string;
|
|
16587
17237
|
ListAddonInstances: string;
|
|
16588
17238
|
ListAddonSubscriptions: string;
|
|
@@ -16611,10 +17261,14 @@ export declare const Actions: {
|
|
|
16611
17261
|
ListReceiptRuleSets: string;
|
|
16612
17262
|
ListRecommendations: string;
|
|
16613
17263
|
ListRelays: string;
|
|
17264
|
+
ListReputationEntities: string;
|
|
17265
|
+
ListResourceTenants: string;
|
|
16614
17266
|
ListRuleSets: string;
|
|
16615
17267
|
ListSuppressedDestinations: string;
|
|
16616
17268
|
ListTagsForResource: string;
|
|
16617
17269
|
ListTemplates: string;
|
|
17270
|
+
ListTenantResources: string;
|
|
17271
|
+
ListTenants: string;
|
|
16618
17272
|
ListTrafficPolicies: string;
|
|
16619
17273
|
ListVerifiedEmailAddresses: string;
|
|
16620
17274
|
PutAccountDedicatedIpWarmupAttributes: string;
|
|
@@ -16681,6 +17335,8 @@ export declare const Actions: {
|
|
|
16681
17335
|
UpdateIngressPoint: string;
|
|
16682
17336
|
UpdateReceiptRule: string;
|
|
16683
17337
|
UpdateRelay: string;
|
|
17338
|
+
UpdateReputationEntityCustomerManagedStatus: string;
|
|
17339
|
+
UpdateReputationEntityPolicy: string;
|
|
16684
17340
|
UpdateRuleSet: string;
|
|
16685
17341
|
UpdateTemplate: string;
|
|
16686
17342
|
UpdateTrafficPolicy: string;
|
|
@@ -16701,6 +17357,7 @@ export declare const Actions: {
|
|
|
16701
17357
|
DeleteProtectionGroup: string;
|
|
16702
17358
|
DeleteSubscription: string;
|
|
16703
17359
|
DescribeAttack: string;
|
|
17360
|
+
DescribeAttackContributors: string;
|
|
16704
17361
|
DescribeAttackStatistics: string;
|
|
16705
17362
|
DescribeDRTAccess: string;
|
|
16706
17363
|
DescribeEmergencyContactSettings: string;
|
|
@@ -16714,8 +17371,10 @@ export declare const Actions: {
|
|
|
16714
17371
|
DisassociateHealthCheck: string;
|
|
16715
17372
|
EnableApplicationLayerAutomaticResponse: string;
|
|
16716
17373
|
EnableProactiveEngagement: string;
|
|
17374
|
+
GetGlobalThreatData: string;
|
|
16717
17375
|
GetSubscriptionState: string;
|
|
16718
17376
|
ListAttacks: string;
|
|
17377
|
+
ListMitigations: string;
|
|
16719
17378
|
ListProtectionGroups: string;
|
|
16720
17379
|
ListProtections: string;
|
|
16721
17380
|
ListResourcesInProtectionGroup: string;
|
|
@@ -16995,18 +17654,26 @@ export declare const Actions: {
|
|
|
16995
17654
|
};
|
|
16996
17655
|
'social-messaging': {
|
|
16997
17656
|
AssociateWhatsAppBusinessAccount: string;
|
|
17657
|
+
CreateWhatsAppMessageTemplate: string;
|
|
17658
|
+
CreateWhatsAppMessageTemplateFromLibrary: string;
|
|
17659
|
+
CreateWhatsAppMessageTemplateMedia: string;
|
|
16998
17660
|
DeleteWhatsAppMessageMedia: string;
|
|
17661
|
+
DeleteWhatsAppMessageTemplate: string;
|
|
16999
17662
|
DisassociateWhatsAppBusinessAccount: string;
|
|
17000
17663
|
GetLinkedWhatsAppBusinessAccount: string;
|
|
17001
17664
|
GetLinkedWhatsAppBusinessAccountPhoneNumber: string;
|
|
17002
17665
|
GetWhatsAppMessageMedia: string;
|
|
17666
|
+
GetWhatsAppMessageTemplate: string;
|
|
17003
17667
|
ListLinkedWhatsAppBusinessAccounts: string;
|
|
17004
17668
|
ListTagsForResource: string;
|
|
17669
|
+
ListWhatsAppMessageTemplates: string;
|
|
17670
|
+
ListWhatsAppTemplateLibrary: string;
|
|
17005
17671
|
PostWhatsAppMessageMedia: string;
|
|
17006
17672
|
PutWhatsAppBusinessAccountEventDestinations: string;
|
|
17007
17673
|
SendWhatsAppMessage: string;
|
|
17008
17674
|
TagResource: string;
|
|
17009
17675
|
UntagResource: string;
|
|
17676
|
+
UpdateWhatsAppMessageTemplate: string;
|
|
17010
17677
|
};
|
|
17011
17678
|
sqlworkbench: {
|
|
17012
17679
|
AssociateConnectionWithChart: string;
|
|
@@ -17155,9 +17822,12 @@ export declare const Actions: {
|
|
|
17155
17822
|
};
|
|
17156
17823
|
'ssm-guiconnect': {
|
|
17157
17824
|
CancelConnection: string;
|
|
17825
|
+
DeleteConnectionRecordingPreferences: string;
|
|
17158
17826
|
GetConnection: string;
|
|
17827
|
+
GetConnectionRecordingPreferences: string;
|
|
17159
17828
|
ListConnections: string;
|
|
17160
17829
|
StartConnection: string;
|
|
17830
|
+
UpdateConnectionRecordingPreferences: string;
|
|
17161
17831
|
};
|
|
17162
17832
|
'ssm-incidents': {
|
|
17163
17833
|
BatchGetIncidentFindings: string;
|
|
@@ -17214,20 +17884,26 @@ export declare const Actions: {
|
|
|
17214
17884
|
DeregisterApplication: string;
|
|
17215
17885
|
GetApplication: string;
|
|
17216
17886
|
GetComponent: string;
|
|
17887
|
+
GetConfigurationCheckOperation: string;
|
|
17217
17888
|
GetDatabase: string;
|
|
17218
17889
|
GetOperation: string;
|
|
17219
17890
|
GetResourcePermission: string;
|
|
17220
17891
|
ListApplications: string;
|
|
17221
17892
|
ListComponents: string;
|
|
17893
|
+
ListConfigurationCheckDefinitions: string;
|
|
17894
|
+
ListConfigurationCheckOperations: string;
|
|
17222
17895
|
ListDatabases: string;
|
|
17223
17896
|
ListOperationEvents: string;
|
|
17224
17897
|
ListOperations: string;
|
|
17898
|
+
ListSubCheckResults: string;
|
|
17899
|
+
ListSubCheckRuleResults: string;
|
|
17225
17900
|
ListTagsForResource: string;
|
|
17226
17901
|
PutResourcePermission: string;
|
|
17227
17902
|
RegisterApplication: string;
|
|
17228
17903
|
RestoreDatabase: string;
|
|
17229
17904
|
StartApplication: string;
|
|
17230
17905
|
StartApplicationRefresh: string;
|
|
17906
|
+
StartConfigurationChecks: string;
|
|
17231
17907
|
StopApplication: string;
|
|
17232
17908
|
TagResource: string;
|
|
17233
17909
|
UntagResource: string;
|
|
@@ -17300,6 +17976,7 @@ export declare const Actions: {
|
|
|
17300
17976
|
DescribeSessions: string;
|
|
17301
17977
|
DisassociateOpsItemRelatedItem: string;
|
|
17302
17978
|
ExecuteAPI: string;
|
|
17979
|
+
GetAccessToken: string;
|
|
17303
17980
|
GetAutomationExecution: string;
|
|
17304
17981
|
GetCalendar: string;
|
|
17305
17982
|
GetCalendarState: string;
|
|
@@ -17365,6 +18042,7 @@ export declare const Actions: {
|
|
|
17365
18042
|
ResumeSession: string;
|
|
17366
18043
|
SendAutomationSignal: string;
|
|
17367
18044
|
SendCommand: string;
|
|
18045
|
+
StartAccessRequest: string;
|
|
17368
18046
|
StartAssociationsOnce: string;
|
|
17369
18047
|
StartAutomationExecution: string;
|
|
17370
18048
|
StartChangeRequestExecution: string;
|
|
@@ -17489,7 +18167,6 @@ export declare const Actions: {
|
|
|
17489
18167
|
DeleteManagedApplicationInstance: string;
|
|
17490
18168
|
DeletePermissionsBoundaryFromPermissionSet: string;
|
|
17491
18169
|
DeletePermissionSet: string;
|
|
17492
|
-
DeletePermissionsPolicy: string;
|
|
17493
18170
|
DeleteProfile: string;
|
|
17494
18171
|
DeleteTrustedTokenIssuer: string;
|
|
17495
18172
|
DescribeAccountAssignmentCreationStatus: string;
|
|
@@ -17497,15 +18174,12 @@ export declare const Actions: {
|
|
|
17497
18174
|
DescribeApplication: string;
|
|
17498
18175
|
DescribeApplicationAssignment: string;
|
|
17499
18176
|
DescribeApplicationProvider: string;
|
|
17500
|
-
DescribeDirectories: string;
|
|
17501
18177
|
DescribeInstance: string;
|
|
17502
18178
|
DescribeInstanceAccessControlAttributeConfiguration: string;
|
|
17503
18179
|
DescribePermissionSet: string;
|
|
17504
18180
|
DescribePermissionSetProvisioningStatus: string;
|
|
17505
|
-
DescribePermissionsPolicies: string;
|
|
17506
18181
|
DescribeRegisteredRegions: string;
|
|
17507
18182
|
DescribeTrustedTokenIssuer: string;
|
|
17508
|
-
DescribeTrusts: string;
|
|
17509
18183
|
DetachCustomerManagedPolicyReferenceFromPermissionSet: string;
|
|
17510
18184
|
DetachManagedPolicyFromPermissionSet: string;
|
|
17511
18185
|
DisassociateDirectory: string;
|
|
@@ -17515,13 +18189,13 @@ export declare const Actions: {
|
|
|
17515
18189
|
GetApplicationAuthenticationMethod: string;
|
|
17516
18190
|
GetApplicationGrant: string;
|
|
17517
18191
|
GetApplicationInstance: string;
|
|
18192
|
+
GetApplicationSessionConfiguration: string;
|
|
17518
18193
|
GetApplicationTemplate: string;
|
|
17519
18194
|
GetInlinePolicyForPermissionSet: string;
|
|
17520
18195
|
GetManagedApplicationInstance: string;
|
|
17521
18196
|
GetMfaDeviceManagementForDirectory: string;
|
|
17522
18197
|
GetPermissionsBoundaryForPermissionSet: string;
|
|
17523
18198
|
GetPermissionSet: string;
|
|
17524
|
-
GetPermissionsPolicy: string;
|
|
17525
18199
|
GetProfile: string;
|
|
17526
18200
|
GetSharedSsoConfiguration: string;
|
|
17527
18201
|
GetSsoConfiguration: string;
|
|
@@ -17559,6 +18233,7 @@ export declare const Actions: {
|
|
|
17559
18233
|
PutApplicationAssignmentConfiguration: string;
|
|
17560
18234
|
PutApplicationAuthenticationMethod: string;
|
|
17561
18235
|
PutApplicationGrant: string;
|
|
18236
|
+
PutApplicationSessionConfiguration: string;
|
|
17562
18237
|
PutInlinePolicyToPermissionSet: string;
|
|
17563
18238
|
PutMfaDeviceManagementForDirectory: string;
|
|
17564
18239
|
PutPermissionsBoundaryToPermissionSet: string;
|
|
@@ -17576,7 +18251,6 @@ export declare const Actions: {
|
|
|
17576
18251
|
UpdateApplicationInstanceSecurityConfiguration: string;
|
|
17577
18252
|
UpdateApplicationInstanceServiceProviderConfiguration: string;
|
|
17578
18253
|
UpdateApplicationInstanceStatus: string;
|
|
17579
|
-
UpdateDirectoryAssociation: string;
|
|
17580
18254
|
UpdateInstance: string;
|
|
17581
18255
|
UpdateInstanceAccessControlAttributeConfiguration: string;
|
|
17582
18256
|
UpdateManagedApplicationInstanceStatus: string;
|
|
@@ -17741,12 +18415,26 @@ export declare const Actions: {
|
|
|
17741
18415
|
SetSourceIdentity: string;
|
|
17742
18416
|
TagSession: string;
|
|
17743
18417
|
};
|
|
18418
|
+
'support-console': {
|
|
18419
|
+
CheckSubscription: string;
|
|
18420
|
+
CreateCaseDraft: string;
|
|
18421
|
+
CreateContact: string;
|
|
18422
|
+
DeleteCaseDraft: string;
|
|
18423
|
+
DescribeDynamicHelp: string;
|
|
18424
|
+
GetAccountGovCloudEnabled: string;
|
|
18425
|
+
GetAccountState: string;
|
|
18426
|
+
GetBanner: string;
|
|
18427
|
+
GetCaseDraft: string;
|
|
18428
|
+
GetQuestionnaire: string;
|
|
18429
|
+
SaveFeedback: string;
|
|
18430
|
+
};
|
|
17744
18431
|
support: {
|
|
17745
18432
|
AddAttachmentsToSet: string;
|
|
17746
18433
|
AddCommunicationToCase: string;
|
|
17747
18434
|
CreateCase: string;
|
|
17748
18435
|
DescribeAttachment: string;
|
|
17749
18436
|
DescribeCaseAttributes: string;
|
|
18437
|
+
DescribeCaseOptions: string;
|
|
17750
18438
|
DescribeCases: string;
|
|
17751
18439
|
DescribeCommunication: string;
|
|
17752
18440
|
DescribeCommunications: string;
|
|
@@ -17769,6 +18457,8 @@ export declare const Actions: {
|
|
|
17769
18457
|
ResolveCase: string;
|
|
17770
18458
|
SearchForCases: string;
|
|
17771
18459
|
StartInteraction: string;
|
|
18460
|
+
UpdateCaseSeverity: string;
|
|
18461
|
+
UpdateInteraction: string;
|
|
17772
18462
|
};
|
|
17773
18463
|
supportapp: {
|
|
17774
18464
|
CreateSlackChannelConfiguration: string;
|
|
@@ -17792,10 +18482,6 @@ export declare const Actions: {
|
|
|
17792
18482
|
ListSupportPlanModifiers: string;
|
|
17793
18483
|
StartSupportPlanUpdate: string;
|
|
17794
18484
|
};
|
|
17795
|
-
supportrecommendations: {
|
|
17796
|
-
GetSupportTroubleshootingResponse: string;
|
|
17797
|
-
StartSupportTroubleshooting: string;
|
|
17798
|
-
};
|
|
17799
18485
|
sustainability: {
|
|
17800
18486
|
GetCarbonFootprintSummary: string;
|
|
17801
18487
|
};
|
|
@@ -17870,6 +18556,7 @@ export declare const Actions: {
|
|
|
17870
18556
|
ListGroups: string;
|
|
17871
18557
|
ListTagsForResource: string;
|
|
17872
18558
|
StartCanary: string;
|
|
18559
|
+
StartCanaryDryRun: string;
|
|
17873
18560
|
StopCanary: string;
|
|
17874
18561
|
TagResource: string;
|
|
17875
18562
|
UntagResource: string;
|
|
@@ -18158,6 +18845,8 @@ export declare const Actions: {
|
|
|
18158
18845
|
SendWorkflowStepState: string;
|
|
18159
18846
|
StartDirectoryListing: string;
|
|
18160
18847
|
StartFileTransfer: string;
|
|
18848
|
+
StartRemoteDelete: string;
|
|
18849
|
+
StartRemoteMove: string;
|
|
18161
18850
|
StartServer: string;
|
|
18162
18851
|
StopServer: string;
|
|
18163
18852
|
TagResource: string;
|
|
@@ -18175,6 +18864,15 @@ export declare const Actions: {
|
|
|
18175
18864
|
UpdateWebApp: string;
|
|
18176
18865
|
UpdateWebAppCustomization: string;
|
|
18177
18866
|
};
|
|
18867
|
+
transform: {
|
|
18868
|
+
AssociateConnectorResource: string;
|
|
18869
|
+
CreateProfile: string;
|
|
18870
|
+
DeleteProfile: string;
|
|
18871
|
+
GetConnector: string;
|
|
18872
|
+
ListProfiles: string;
|
|
18873
|
+
RejectConnector: string;
|
|
18874
|
+
UpdateProfile: string;
|
|
18875
|
+
};
|
|
18178
18876
|
translate: {
|
|
18179
18877
|
CreateParallelData: string;
|
|
18180
18878
|
DeleteParallelData: string;
|
|
@@ -18269,6 +18967,11 @@ export declare const Actions: {
|
|
|
18269
18967
|
ListUserSubscriptions: string;
|
|
18270
18968
|
UpdateClaim: string;
|
|
18271
18969
|
};
|
|
18970
|
+
uxc: {
|
|
18971
|
+
DeleteAccountColor: string;
|
|
18972
|
+
GetAccountColor: string;
|
|
18973
|
+
PutAccountColor: string;
|
|
18974
|
+
};
|
|
18272
18975
|
'vendor-insights': {
|
|
18273
18976
|
ActivateSecurityProfile: string;
|
|
18274
18977
|
AssociateDataSource: string;
|
|
@@ -18318,7 +19021,10 @@ export declare const Actions: {
|
|
|
18318
19021
|
ListPolicies: string;
|
|
18319
19022
|
ListPolicyStores: string;
|
|
18320
19023
|
ListPolicyTemplates: string;
|
|
19024
|
+
ListTagsForResource: string;
|
|
18321
19025
|
PutSchema: string;
|
|
19026
|
+
TagResource: string;
|
|
19027
|
+
UntagResource: string;
|
|
18322
19028
|
UpdateIdentitySource: string;
|
|
18323
19029
|
UpdatePolicy: string;
|
|
18324
19030
|
UpdatePolicyStore: string;
|
|
@@ -18362,6 +19068,7 @@ export declare const Actions: {
|
|
|
18362
19068
|
Invoke: string;
|
|
18363
19069
|
};
|
|
18364
19070
|
'vpc-lattice': {
|
|
19071
|
+
AssociateViaAWSService: string;
|
|
18365
19072
|
'AssociateViaAWSService-EventsAndStates': string;
|
|
18366
19073
|
CreateAccessLogSubscription: string;
|
|
18367
19074
|
CreateListener: string;
|
|
@@ -19069,11 +19776,27 @@ export declare const Actions: {
|
|
|
19069
19776
|
GetRawMessageContent: string;
|
|
19070
19777
|
PutRawMessageContent: string;
|
|
19071
19778
|
};
|
|
19779
|
+
'workspaces-instances': {
|
|
19780
|
+
AssociateVolume: string;
|
|
19781
|
+
CreateVolume: string;
|
|
19782
|
+
CreateWorkspaceInstance: string;
|
|
19783
|
+
DeleteVolume: string;
|
|
19784
|
+
DeleteWorkspaceInstance: string;
|
|
19785
|
+
DisassociateVolume: string;
|
|
19786
|
+
GetWorkspaceInstance: string;
|
|
19787
|
+
ListInstanceTypes: string;
|
|
19788
|
+
ListRegions: string;
|
|
19789
|
+
ListTagsForResource: string;
|
|
19790
|
+
ListWorkspaceInstances: string;
|
|
19791
|
+
TagResource: string;
|
|
19792
|
+
UntagResource: string;
|
|
19793
|
+
};
|
|
19072
19794
|
'workspaces-web': {
|
|
19073
19795
|
AssociateBrowserSettings: string;
|
|
19074
19796
|
AssociateDataProtectionSettings: string;
|
|
19075
19797
|
AssociateIpAccessSettings: string;
|
|
19076
19798
|
AssociateNetworkSettings: string;
|
|
19799
|
+
AssociateSessionLogger: string;
|
|
19077
19800
|
AssociateTrustStore: string;
|
|
19078
19801
|
AssociateUserAccessLoggingSettings: string;
|
|
19079
19802
|
AssociateUserSettings: string;
|
|
@@ -19083,6 +19806,7 @@ export declare const Actions: {
|
|
|
19083
19806
|
CreateIpAccessSettings: string;
|
|
19084
19807
|
CreateNetworkSettings: string;
|
|
19085
19808
|
CreatePortal: string;
|
|
19809
|
+
CreateSessionLogger: string;
|
|
19086
19810
|
CreateTrustStore: string;
|
|
19087
19811
|
CreateUserAccessLoggingSettings: string;
|
|
19088
19812
|
CreateUserSettings: string;
|
|
@@ -19092,6 +19816,7 @@ export declare const Actions: {
|
|
|
19092
19816
|
DeleteIpAccessSettings: string;
|
|
19093
19817
|
DeleteNetworkSettings: string;
|
|
19094
19818
|
DeletePortal: string;
|
|
19819
|
+
DeleteSessionLogger: string;
|
|
19095
19820
|
DeleteTrustStore: string;
|
|
19096
19821
|
DeleteUserAccessLoggingSettings: string;
|
|
19097
19822
|
DeleteUserSettings: string;
|
|
@@ -19099,6 +19824,7 @@ export declare const Actions: {
|
|
|
19099
19824
|
DisassociateDataProtectionSettings: string;
|
|
19100
19825
|
DisassociateIpAccessSettings: string;
|
|
19101
19826
|
DisassociateNetworkSettings: string;
|
|
19827
|
+
DisassociateSessionLogger: string;
|
|
19102
19828
|
DisassociateTrustStore: string;
|
|
19103
19829
|
DisassociateUserAccessLoggingSettings: string;
|
|
19104
19830
|
DisassociateUserSettings: string;
|
|
@@ -19111,6 +19837,7 @@ export declare const Actions: {
|
|
|
19111
19837
|
GetPortal: string;
|
|
19112
19838
|
GetPortalServiceProviderMetadata: string;
|
|
19113
19839
|
GetSession: string;
|
|
19840
|
+
GetSessionLogger: string;
|
|
19114
19841
|
GetTrustStore: string;
|
|
19115
19842
|
GetTrustStoreCertificate: string;
|
|
19116
19843
|
GetUserAccessLoggingSettings: string;
|
|
@@ -19121,6 +19848,7 @@ export declare const Actions: {
|
|
|
19121
19848
|
ListIpAccessSettings: string;
|
|
19122
19849
|
ListNetworkSettings: string;
|
|
19123
19850
|
ListPortals: string;
|
|
19851
|
+
ListSessionLoggers: string;
|
|
19124
19852
|
ListSessions: string;
|
|
19125
19853
|
ListTagsForResource: string;
|
|
19126
19854
|
ListTrustStoreCertificates: string;
|
|
@@ -19135,6 +19863,7 @@ export declare const Actions: {
|
|
|
19135
19863
|
UpdateIpAccessSettings: string;
|
|
19136
19864
|
UpdateNetworkSettings: string;
|
|
19137
19865
|
UpdatePortal: string;
|
|
19866
|
+
UpdateSessionLogger: string;
|
|
19138
19867
|
UpdateTrustStore: string;
|
|
19139
19868
|
UpdateUserAccessLoggingSettings: string;
|
|
19140
19869
|
UpdateUserSettings: string;
|
|
@@ -19150,6 +19879,7 @@ export declare const Actions: {
|
|
|
19150
19879
|
CreateConnectClientAddIn: string;
|
|
19151
19880
|
CreateConnectionAlias: string;
|
|
19152
19881
|
CreateIpGroup: string;
|
|
19882
|
+
CreateRootClientCertificate: string;
|
|
19153
19883
|
CreateStandbyWorkspaces: string;
|
|
19154
19884
|
CreateTags: string;
|
|
19155
19885
|
CreateUpdatedWorkspaceImage: string;
|
|
@@ -19162,6 +19892,7 @@ export declare const Actions: {
|
|
|
19162
19892
|
DeleteConnectClientAddIn: string;
|
|
19163
19893
|
DeleteConnectionAlias: string;
|
|
19164
19894
|
DeleteIpGroup: string;
|
|
19895
|
+
DeleteRootClientCertificate: string;
|
|
19165
19896
|
DeleteTags: string;
|
|
19166
19897
|
DeleteWorkspaceBundle: string;
|
|
19167
19898
|
DeleteWorkspaceImage: string;
|
|
@@ -19177,8 +19908,11 @@ export declare const Actions: {
|
|
|
19177
19908
|
DescribeConnectClientAddIns: string;
|
|
19178
19909
|
DescribeConnectionAliases: string;
|
|
19179
19910
|
DescribeConnectionAliasPermissions: string;
|
|
19911
|
+
DescribeConsent: string;
|
|
19912
|
+
DescribeCustomWorkspaceImageImport: string;
|
|
19180
19913
|
DescribeImageAssociations: string;
|
|
19181
19914
|
DescribeIpGroups: string;
|
|
19915
|
+
DescribeRootClientCertificates: string;
|
|
19182
19916
|
DescribeTags: string;
|
|
19183
19917
|
DescribeWorkspaceAssociations: string;
|
|
19184
19918
|
DescribeWorkspaceBundles: string;
|
|
@@ -19190,11 +19924,13 @@ export declare const Actions: {
|
|
|
19190
19924
|
DescribeWorkspaceSnapshots: string;
|
|
19191
19925
|
DescribeWorkspacesPools: string;
|
|
19192
19926
|
DescribeWorkspacesPoolSessions: string;
|
|
19927
|
+
DirectoryAccessManagement: string;
|
|
19193
19928
|
DisassociateConnectionAlias: string;
|
|
19194
19929
|
DisassociateIpGroups: string;
|
|
19195
19930
|
DisassociateWorkspaceApplication: string;
|
|
19196
19931
|
GetAccountLink: string;
|
|
19197
19932
|
ImportClientBranding: string;
|
|
19933
|
+
ImportCustomWorkspaceImage: string;
|
|
19198
19934
|
ImportWorkspaceImage: string;
|
|
19199
19935
|
ListAccountLinks: string;
|
|
19200
19936
|
ListAvailableManagementCidrRanges: string;
|
|
@@ -19226,6 +19962,8 @@ export declare const Actions: {
|
|
|
19226
19962
|
TerminateWorkspacesPoolSession: string;
|
|
19227
19963
|
UpdateConnectClientAddIn: string;
|
|
19228
19964
|
UpdateConnectionAliasPermission: string;
|
|
19965
|
+
UpdateConsent: string;
|
|
19966
|
+
UpdateRootClientCertificate: string;
|
|
19229
19967
|
UpdateRulesOfIpGroup: string;
|
|
19230
19968
|
UpdateWorkspaceBundle: string;
|
|
19231
19969
|
UpdateWorkspaceImagePermission: string;
|