effortless-aws 0.8.1 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +1294 -1058
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/cli/index.js
CHANGED
|
@@ -69199,6 +69199,7 @@ import * as crypto from "crypto";
|
|
|
69199
69199
|
var clients_exports = {};
|
|
69200
69200
|
__export(clients_exports, {
|
|
69201
69201
|
AllClientsDefault: () => AllClientsDefault,
|
|
69202
|
+
acm: () => acm_exports,
|
|
69202
69203
|
apigatewayv2: () => apigatewayv2_exports,
|
|
69203
69204
|
cloudfront: () => cloudfront_exports,
|
|
69204
69205
|
cloudwatch_logs: () => cloudwatch_logs_exports,
|
|
@@ -69212,30 +69213,94 @@ __export(clients_exports, {
|
|
|
69212
69213
|
ssm: () => ssm_exports
|
|
69213
69214
|
});
|
|
69214
69215
|
|
|
69216
|
+
// src/aws/clients/acm.ts
|
|
69217
|
+
var acm_exports = {};
|
|
69218
|
+
__export(acm_exports, {
|
|
69219
|
+
ACMClient: () => ACMClient2,
|
|
69220
|
+
ACMError: () => ACMError,
|
|
69221
|
+
make: () => make68
|
|
69222
|
+
});
|
|
69223
|
+
import * as Sdk from "@aws-sdk/client-acm";
|
|
69224
|
+
var ACMClient2 = class _ACMClient extends Tag2("ACMClient")() {
|
|
69225
|
+
static Default = (config2) => effect(
|
|
69226
|
+
_ACMClient,
|
|
69227
|
+
gen3(function* () {
|
|
69228
|
+
return new Sdk.ACMClient(config2 ?? {});
|
|
69229
|
+
})
|
|
69230
|
+
);
|
|
69231
|
+
};
|
|
69232
|
+
var make68 = fn("aws_ACM")(function* (actionName, actionInput) {
|
|
69233
|
+
yield* logDebug2(`aws_ACM.${actionName}`, { input: actionInput });
|
|
69234
|
+
const client = yield* ACMClient2;
|
|
69235
|
+
const command = new ACMCommandFactory[actionName](actionInput);
|
|
69236
|
+
const result = yield* tryPromise2({
|
|
69237
|
+
try: () => client.send(command),
|
|
69238
|
+
catch: (error4) => {
|
|
69239
|
+
if (error4 instanceof Sdk.ACMServiceException) {
|
|
69240
|
+
return new ACMError(error4, actionName);
|
|
69241
|
+
}
|
|
69242
|
+
throw error4;
|
|
69243
|
+
}
|
|
69244
|
+
});
|
|
69245
|
+
yield* logDebug2(`aws_ACM.${actionName} completed`);
|
|
69246
|
+
return result;
|
|
69247
|
+
});
|
|
69248
|
+
var ACMError = class {
|
|
69249
|
+
constructor(cause3, command) {
|
|
69250
|
+
this.cause = cause3;
|
|
69251
|
+
this.command = command;
|
|
69252
|
+
}
|
|
69253
|
+
_tag = "ACMError";
|
|
69254
|
+
$is(name) {
|
|
69255
|
+
return this.cause.name == name;
|
|
69256
|
+
}
|
|
69257
|
+
is(name) {
|
|
69258
|
+
return this.cause.name == name;
|
|
69259
|
+
}
|
|
69260
|
+
};
|
|
69261
|
+
var ACMCommandFactory = {
|
|
69262
|
+
add_tags_to_certificate: Sdk.AddTagsToCertificateCommand,
|
|
69263
|
+
delete_certificate: Sdk.DeleteCertificateCommand,
|
|
69264
|
+
describe_certificate: Sdk.DescribeCertificateCommand,
|
|
69265
|
+
export_certificate: Sdk.ExportCertificateCommand,
|
|
69266
|
+
get_account_configuration: Sdk.GetAccountConfigurationCommand,
|
|
69267
|
+
get_certificate: Sdk.GetCertificateCommand,
|
|
69268
|
+
import_certificate: Sdk.ImportCertificateCommand,
|
|
69269
|
+
list_certificates: Sdk.ListCertificatesCommand,
|
|
69270
|
+
list_tags_for_certificate: Sdk.ListTagsForCertificateCommand,
|
|
69271
|
+
put_account_configuration: Sdk.PutAccountConfigurationCommand,
|
|
69272
|
+
remove_tags_from_certificate: Sdk.RemoveTagsFromCertificateCommand,
|
|
69273
|
+
renew_certificate: Sdk.RenewCertificateCommand,
|
|
69274
|
+
request_certificate: Sdk.RequestCertificateCommand,
|
|
69275
|
+
resend_validation_email: Sdk.ResendValidationEmailCommand,
|
|
69276
|
+
revoke_certificate: Sdk.RevokeCertificateCommand,
|
|
69277
|
+
update_certificate_options: Sdk.UpdateCertificateOptionsCommand
|
|
69278
|
+
};
|
|
69279
|
+
|
|
69215
69280
|
// src/aws/clients/apigatewayv2.ts
|
|
69216
69281
|
var apigatewayv2_exports = {};
|
|
69217
69282
|
__export(apigatewayv2_exports, {
|
|
69218
69283
|
ApiGatewayV2Client: () => ApiGatewayV2Client2,
|
|
69219
69284
|
ApiGatewayV2Error: () => ApiGatewayV2Error,
|
|
69220
|
-
make: () =>
|
|
69285
|
+
make: () => make69
|
|
69221
69286
|
});
|
|
69222
|
-
import * as
|
|
69287
|
+
import * as Sdk2 from "@aws-sdk/client-apigatewayv2";
|
|
69223
69288
|
var ApiGatewayV2Client2 = class _ApiGatewayV2Client extends Tag2("ApiGatewayV2Client")() {
|
|
69224
69289
|
static Default = (config2) => effect(
|
|
69225
69290
|
_ApiGatewayV2Client,
|
|
69226
69291
|
gen3(function* () {
|
|
69227
|
-
return new
|
|
69292
|
+
return new Sdk2.ApiGatewayV2Client(config2 ?? {});
|
|
69228
69293
|
})
|
|
69229
69294
|
);
|
|
69230
69295
|
};
|
|
69231
|
-
var
|
|
69296
|
+
var make69 = fn("aws_ApiGatewayV2")(function* (actionName, actionInput) {
|
|
69232
69297
|
yield* logDebug2(`aws_ApiGatewayV2.${actionName}`, { input: actionInput });
|
|
69233
69298
|
const client = yield* ApiGatewayV2Client2;
|
|
69234
69299
|
const command = new ApiGatewayV2CommandFactory[actionName](actionInput);
|
|
69235
69300
|
const result = yield* tryPromise2({
|
|
69236
69301
|
try: () => client.send(command),
|
|
69237
69302
|
catch: (error4) => {
|
|
69238
|
-
if (error4 instanceof
|
|
69303
|
+
if (error4 instanceof Sdk2.ApiGatewayV2ServiceException) {
|
|
69239
69304
|
return new ApiGatewayV2Error(error4, actionName);
|
|
69240
69305
|
}
|
|
69241
69306
|
throw error4;
|
|
@@ -69258,109 +69323,109 @@ var ApiGatewayV2Error = class {
|
|
|
69258
69323
|
}
|
|
69259
69324
|
};
|
|
69260
69325
|
var ApiGatewayV2CommandFactory = {
|
|
69261
|
-
create_api:
|
|
69262
|
-
create_api_mapping:
|
|
69263
|
-
create_authorizer:
|
|
69264
|
-
create_deployment:
|
|
69265
|
-
create_domain_name:
|
|
69266
|
-
create_integration:
|
|
69267
|
-
create_integration_response:
|
|
69268
|
-
create_model:
|
|
69269
|
-
create_portal:
|
|
69270
|
-
create_portal_product:
|
|
69271
|
-
create_product_page:
|
|
69272
|
-
create_product_rest_endpoint_page:
|
|
69273
|
-
create_route:
|
|
69274
|
-
create_route_response:
|
|
69275
|
-
create_routing_rule:
|
|
69276
|
-
create_stage:
|
|
69277
|
-
create_vpc_link:
|
|
69278
|
-
delete_access_log_settings:
|
|
69279
|
-
delete_api:
|
|
69280
|
-
delete_api_mapping:
|
|
69281
|
-
delete_authorizer:
|
|
69282
|
-
delete_cors_configuration:
|
|
69283
|
-
delete_deployment:
|
|
69284
|
-
delete_domain_name:
|
|
69285
|
-
delete_integration:
|
|
69286
|
-
delete_integration_response:
|
|
69287
|
-
delete_model:
|
|
69288
|
-
delete_portal:
|
|
69289
|
-
delete_portal_product:
|
|
69290
|
-
delete_portal_product_sharing_policy:
|
|
69291
|
-
delete_product_page:
|
|
69292
|
-
delete_product_rest_endpoint_page:
|
|
69293
|
-
delete_route:
|
|
69294
|
-
delete_route_request_parameter:
|
|
69295
|
-
delete_route_response:
|
|
69296
|
-
delete_route_settings:
|
|
69297
|
-
delete_routing_rule:
|
|
69298
|
-
delete_stage:
|
|
69299
|
-
delete_vpc_link:
|
|
69300
|
-
disable_portal:
|
|
69301
|
-
export_api:
|
|
69302
|
-
get_api:
|
|
69303
|
-
get_api_mapping:
|
|
69304
|
-
get_api_mappings:
|
|
69305
|
-
get_apis:
|
|
69306
|
-
get_authorizer:
|
|
69307
|
-
get_authorizers:
|
|
69308
|
-
get_deployment:
|
|
69309
|
-
get_deployments:
|
|
69310
|
-
get_domain_name:
|
|
69311
|
-
get_domain_names:
|
|
69312
|
-
get_integration:
|
|
69313
|
-
get_integration_response:
|
|
69314
|
-
get_integration_responses:
|
|
69315
|
-
get_integrations:
|
|
69316
|
-
get_model:
|
|
69317
|
-
get_model_template:
|
|
69318
|
-
get_models:
|
|
69319
|
-
get_portal:
|
|
69320
|
-
get_portal_product:
|
|
69321
|
-
get_portal_product_sharing_policy:
|
|
69322
|
-
get_product_page:
|
|
69323
|
-
get_product_rest_endpoint_page:
|
|
69324
|
-
get_route:
|
|
69325
|
-
get_route_response:
|
|
69326
|
-
get_route_responses:
|
|
69327
|
-
get_routes:
|
|
69328
|
-
get_routing_rule:
|
|
69329
|
-
get_stage:
|
|
69330
|
-
get_stages:
|
|
69331
|
-
get_tags:
|
|
69332
|
-
get_vpc_link:
|
|
69333
|
-
get_vpc_links:
|
|
69334
|
-
import_api:
|
|
69335
|
-
list_portal_products:
|
|
69336
|
-
list_portals:
|
|
69337
|
-
list_product_pages:
|
|
69338
|
-
list_product_rest_endpoint_pages:
|
|
69339
|
-
list_routing_rules:
|
|
69340
|
-
preview_portal:
|
|
69341
|
-
publish_portal:
|
|
69342
|
-
put_portal_product_sharing_policy:
|
|
69343
|
-
put_routing_rule:
|
|
69344
|
-
reimport_api:
|
|
69345
|
-
reset_authorizers_cache:
|
|
69346
|
-
tag_resource:
|
|
69347
|
-
untag_resource:
|
|
69348
|
-
update_api:
|
|
69349
|
-
update_api_mapping:
|
|
69350
|
-
update_authorizer:
|
|
69351
|
-
update_deployment:
|
|
69352
|
-
update_domain_name:
|
|
69353
|
-
update_integration:
|
|
69354
|
-
update_integration_response:
|
|
69355
|
-
update_model:
|
|
69356
|
-
update_portal:
|
|
69357
|
-
update_portal_product:
|
|
69358
|
-
update_product_page:
|
|
69359
|
-
update_product_rest_endpoint_page:
|
|
69360
|
-
update_route:
|
|
69361
|
-
update_route_response:
|
|
69362
|
-
update_stage:
|
|
69363
|
-
update_vpc_link:
|
|
69326
|
+
create_api: Sdk2.CreateApiCommand,
|
|
69327
|
+
create_api_mapping: Sdk2.CreateApiMappingCommand,
|
|
69328
|
+
create_authorizer: Sdk2.CreateAuthorizerCommand,
|
|
69329
|
+
create_deployment: Sdk2.CreateDeploymentCommand,
|
|
69330
|
+
create_domain_name: Sdk2.CreateDomainNameCommand,
|
|
69331
|
+
create_integration: Sdk2.CreateIntegrationCommand,
|
|
69332
|
+
create_integration_response: Sdk2.CreateIntegrationResponseCommand,
|
|
69333
|
+
create_model: Sdk2.CreateModelCommand,
|
|
69334
|
+
create_portal: Sdk2.CreatePortalCommand,
|
|
69335
|
+
create_portal_product: Sdk2.CreatePortalProductCommand,
|
|
69336
|
+
create_product_page: Sdk2.CreateProductPageCommand,
|
|
69337
|
+
create_product_rest_endpoint_page: Sdk2.CreateProductRestEndpointPageCommand,
|
|
69338
|
+
create_route: Sdk2.CreateRouteCommand,
|
|
69339
|
+
create_route_response: Sdk2.CreateRouteResponseCommand,
|
|
69340
|
+
create_routing_rule: Sdk2.CreateRoutingRuleCommand,
|
|
69341
|
+
create_stage: Sdk2.CreateStageCommand,
|
|
69342
|
+
create_vpc_link: Sdk2.CreateVpcLinkCommand,
|
|
69343
|
+
delete_access_log_settings: Sdk2.DeleteAccessLogSettingsCommand,
|
|
69344
|
+
delete_api: Sdk2.DeleteApiCommand,
|
|
69345
|
+
delete_api_mapping: Sdk2.DeleteApiMappingCommand,
|
|
69346
|
+
delete_authorizer: Sdk2.DeleteAuthorizerCommand,
|
|
69347
|
+
delete_cors_configuration: Sdk2.DeleteCorsConfigurationCommand,
|
|
69348
|
+
delete_deployment: Sdk2.DeleteDeploymentCommand,
|
|
69349
|
+
delete_domain_name: Sdk2.DeleteDomainNameCommand,
|
|
69350
|
+
delete_integration: Sdk2.DeleteIntegrationCommand,
|
|
69351
|
+
delete_integration_response: Sdk2.DeleteIntegrationResponseCommand,
|
|
69352
|
+
delete_model: Sdk2.DeleteModelCommand,
|
|
69353
|
+
delete_portal: Sdk2.DeletePortalCommand,
|
|
69354
|
+
delete_portal_product: Sdk2.DeletePortalProductCommand,
|
|
69355
|
+
delete_portal_product_sharing_policy: Sdk2.DeletePortalProductSharingPolicyCommand,
|
|
69356
|
+
delete_product_page: Sdk2.DeleteProductPageCommand,
|
|
69357
|
+
delete_product_rest_endpoint_page: Sdk2.DeleteProductRestEndpointPageCommand,
|
|
69358
|
+
delete_route: Sdk2.DeleteRouteCommand,
|
|
69359
|
+
delete_route_request_parameter: Sdk2.DeleteRouteRequestParameterCommand,
|
|
69360
|
+
delete_route_response: Sdk2.DeleteRouteResponseCommand,
|
|
69361
|
+
delete_route_settings: Sdk2.DeleteRouteSettingsCommand,
|
|
69362
|
+
delete_routing_rule: Sdk2.DeleteRoutingRuleCommand,
|
|
69363
|
+
delete_stage: Sdk2.DeleteStageCommand,
|
|
69364
|
+
delete_vpc_link: Sdk2.DeleteVpcLinkCommand,
|
|
69365
|
+
disable_portal: Sdk2.DisablePortalCommand,
|
|
69366
|
+
export_api: Sdk2.ExportApiCommand,
|
|
69367
|
+
get_api: Sdk2.GetApiCommand,
|
|
69368
|
+
get_api_mapping: Sdk2.GetApiMappingCommand,
|
|
69369
|
+
get_api_mappings: Sdk2.GetApiMappingsCommand,
|
|
69370
|
+
get_apis: Sdk2.GetApisCommand,
|
|
69371
|
+
get_authorizer: Sdk2.GetAuthorizerCommand,
|
|
69372
|
+
get_authorizers: Sdk2.GetAuthorizersCommand,
|
|
69373
|
+
get_deployment: Sdk2.GetDeploymentCommand,
|
|
69374
|
+
get_deployments: Sdk2.GetDeploymentsCommand,
|
|
69375
|
+
get_domain_name: Sdk2.GetDomainNameCommand,
|
|
69376
|
+
get_domain_names: Sdk2.GetDomainNamesCommand,
|
|
69377
|
+
get_integration: Sdk2.GetIntegrationCommand,
|
|
69378
|
+
get_integration_response: Sdk2.GetIntegrationResponseCommand,
|
|
69379
|
+
get_integration_responses: Sdk2.GetIntegrationResponsesCommand,
|
|
69380
|
+
get_integrations: Sdk2.GetIntegrationsCommand,
|
|
69381
|
+
get_model: Sdk2.GetModelCommand,
|
|
69382
|
+
get_model_template: Sdk2.GetModelTemplateCommand,
|
|
69383
|
+
get_models: Sdk2.GetModelsCommand,
|
|
69384
|
+
get_portal: Sdk2.GetPortalCommand,
|
|
69385
|
+
get_portal_product: Sdk2.GetPortalProductCommand,
|
|
69386
|
+
get_portal_product_sharing_policy: Sdk2.GetPortalProductSharingPolicyCommand,
|
|
69387
|
+
get_product_page: Sdk2.GetProductPageCommand,
|
|
69388
|
+
get_product_rest_endpoint_page: Sdk2.GetProductRestEndpointPageCommand,
|
|
69389
|
+
get_route: Sdk2.GetRouteCommand,
|
|
69390
|
+
get_route_response: Sdk2.GetRouteResponseCommand,
|
|
69391
|
+
get_route_responses: Sdk2.GetRouteResponsesCommand,
|
|
69392
|
+
get_routes: Sdk2.GetRoutesCommand,
|
|
69393
|
+
get_routing_rule: Sdk2.GetRoutingRuleCommand,
|
|
69394
|
+
get_stage: Sdk2.GetStageCommand,
|
|
69395
|
+
get_stages: Sdk2.GetStagesCommand,
|
|
69396
|
+
get_tags: Sdk2.GetTagsCommand,
|
|
69397
|
+
get_vpc_link: Sdk2.GetVpcLinkCommand,
|
|
69398
|
+
get_vpc_links: Sdk2.GetVpcLinksCommand,
|
|
69399
|
+
import_api: Sdk2.ImportApiCommand,
|
|
69400
|
+
list_portal_products: Sdk2.ListPortalProductsCommand,
|
|
69401
|
+
list_portals: Sdk2.ListPortalsCommand,
|
|
69402
|
+
list_product_pages: Sdk2.ListProductPagesCommand,
|
|
69403
|
+
list_product_rest_endpoint_pages: Sdk2.ListProductRestEndpointPagesCommand,
|
|
69404
|
+
list_routing_rules: Sdk2.ListRoutingRulesCommand,
|
|
69405
|
+
preview_portal: Sdk2.PreviewPortalCommand,
|
|
69406
|
+
publish_portal: Sdk2.PublishPortalCommand,
|
|
69407
|
+
put_portal_product_sharing_policy: Sdk2.PutPortalProductSharingPolicyCommand,
|
|
69408
|
+
put_routing_rule: Sdk2.PutRoutingRuleCommand,
|
|
69409
|
+
reimport_api: Sdk2.ReimportApiCommand,
|
|
69410
|
+
reset_authorizers_cache: Sdk2.ResetAuthorizersCacheCommand,
|
|
69411
|
+
tag_resource: Sdk2.TagResourceCommand,
|
|
69412
|
+
untag_resource: Sdk2.UntagResourceCommand,
|
|
69413
|
+
update_api: Sdk2.UpdateApiCommand,
|
|
69414
|
+
update_api_mapping: Sdk2.UpdateApiMappingCommand,
|
|
69415
|
+
update_authorizer: Sdk2.UpdateAuthorizerCommand,
|
|
69416
|
+
update_deployment: Sdk2.UpdateDeploymentCommand,
|
|
69417
|
+
update_domain_name: Sdk2.UpdateDomainNameCommand,
|
|
69418
|
+
update_integration: Sdk2.UpdateIntegrationCommand,
|
|
69419
|
+
update_integration_response: Sdk2.UpdateIntegrationResponseCommand,
|
|
69420
|
+
update_model: Sdk2.UpdateModelCommand,
|
|
69421
|
+
update_portal: Sdk2.UpdatePortalCommand,
|
|
69422
|
+
update_portal_product: Sdk2.UpdatePortalProductCommand,
|
|
69423
|
+
update_product_page: Sdk2.UpdateProductPageCommand,
|
|
69424
|
+
update_product_rest_endpoint_page: Sdk2.UpdateProductRestEndpointPageCommand,
|
|
69425
|
+
update_route: Sdk2.UpdateRouteCommand,
|
|
69426
|
+
update_route_response: Sdk2.UpdateRouteResponseCommand,
|
|
69427
|
+
update_stage: Sdk2.UpdateStageCommand,
|
|
69428
|
+
update_vpc_link: Sdk2.UpdateVpcLinkCommand
|
|
69364
69429
|
};
|
|
69365
69430
|
|
|
69366
69431
|
// src/aws/clients/cloudfront.ts
|
|
@@ -69368,25 +69433,25 @@ var cloudfront_exports = {};
|
|
|
69368
69433
|
__export(cloudfront_exports, {
|
|
69369
69434
|
CloudFrontClient: () => CloudFrontClient2,
|
|
69370
69435
|
CloudFrontError: () => CloudFrontError,
|
|
69371
|
-
make: () =>
|
|
69436
|
+
make: () => make70
|
|
69372
69437
|
});
|
|
69373
|
-
import * as
|
|
69438
|
+
import * as Sdk3 from "@aws-sdk/client-cloudfront";
|
|
69374
69439
|
var CloudFrontClient2 = class _CloudFrontClient extends Tag2("CloudFrontClient")() {
|
|
69375
69440
|
static Default = (config2) => effect(
|
|
69376
69441
|
_CloudFrontClient,
|
|
69377
69442
|
gen3(function* () {
|
|
69378
|
-
return new
|
|
69443
|
+
return new Sdk3.CloudFrontClient(config2 ?? {});
|
|
69379
69444
|
})
|
|
69380
69445
|
);
|
|
69381
69446
|
};
|
|
69382
|
-
var
|
|
69447
|
+
var make70 = fn("aws_CloudFront")(function* (actionName, actionInput) {
|
|
69383
69448
|
yield* logDebug2(`aws_CloudFront.${actionName}`, { input: actionInput });
|
|
69384
69449
|
const client = yield* CloudFrontClient2;
|
|
69385
69450
|
const command = new CloudFrontCommandFactory[actionName](actionInput);
|
|
69386
69451
|
const result = yield* tryPromise2({
|
|
69387
69452
|
try: () => client.send(command),
|
|
69388
69453
|
catch: (error4) => {
|
|
69389
|
-
if (error4 instanceof
|
|
69454
|
+
if (error4 instanceof Sdk3.CloudFrontServiceException) {
|
|
69390
69455
|
return new CloudFrontError(error4, actionName);
|
|
69391
69456
|
}
|
|
69392
69457
|
throw error4;
|
|
@@ -69409,173 +69474,173 @@ var CloudFrontError = class {
|
|
|
69409
69474
|
}
|
|
69410
69475
|
};
|
|
69411
69476
|
var CloudFrontCommandFactory = {
|
|
69412
|
-
associate_alias:
|
|
69413
|
-
associate_distribution_tenant_web_acl:
|
|
69414
|
-
associate_distribution_web_acl:
|
|
69415
|
-
copy_distribution:
|
|
69416
|
-
create_anycast_ip_list:
|
|
69417
|
-
create_cache_policy:
|
|
69418
|
-
create_cloud_front_origin_access_identity:
|
|
69419
|
-
create_connection_function:
|
|
69420
|
-
create_connection_group:
|
|
69421
|
-
create_continuous_deployment_policy:
|
|
69422
|
-
create_distribution:
|
|
69423
|
-
create_distribution_tenant:
|
|
69424
|
-
create_distribution_with_tags:
|
|
69425
|
-
create_field_level_encryption_config:
|
|
69426
|
-
create_field_level_encryption_profile:
|
|
69427
|
-
create_function:
|
|
69428
|
-
create_invalidation:
|
|
69429
|
-
create_invalidation_for_distribution_tenant:
|
|
69430
|
-
create_key_group:
|
|
69431
|
-
create_key_value_store:
|
|
69432
|
-
create_monitoring_subscription:
|
|
69433
|
-
create_origin_access_control:
|
|
69434
|
-
create_origin_request_policy:
|
|
69435
|
-
create_public_key:
|
|
69436
|
-
create_realtime_log_config:
|
|
69437
|
-
create_response_headers_policy:
|
|
69438
|
-
create_streaming_distribution:
|
|
69439
|
-
create_streaming_distribution_with_tags:
|
|
69440
|
-
create_trust_store:
|
|
69441
|
-
create_vpc_origin:
|
|
69442
|
-
delete_anycast_ip_list:
|
|
69443
|
-
delete_cache_policy:
|
|
69444
|
-
delete_cloud_front_origin_access_identity:
|
|
69445
|
-
delete_connection_function:
|
|
69446
|
-
delete_connection_group:
|
|
69447
|
-
delete_continuous_deployment_policy:
|
|
69448
|
-
delete_distribution:
|
|
69449
|
-
delete_distribution_tenant:
|
|
69450
|
-
delete_field_level_encryption_config:
|
|
69451
|
-
delete_field_level_encryption_profile:
|
|
69452
|
-
delete_function:
|
|
69453
|
-
delete_key_group:
|
|
69454
|
-
delete_key_value_store:
|
|
69455
|
-
delete_monitoring_subscription:
|
|
69456
|
-
delete_origin_access_control:
|
|
69457
|
-
delete_origin_request_policy:
|
|
69458
|
-
delete_public_key:
|
|
69459
|
-
delete_realtime_log_config:
|
|
69460
|
-
delete_resource_policy:
|
|
69461
|
-
delete_response_headers_policy:
|
|
69462
|
-
delete_streaming_distribution:
|
|
69463
|
-
delete_trust_store:
|
|
69464
|
-
delete_vpc_origin:
|
|
69465
|
-
describe_connection_function:
|
|
69466
|
-
describe_function:
|
|
69467
|
-
describe_key_value_store:
|
|
69468
|
-
disassociate_distribution_tenant_web_acl:
|
|
69469
|
-
disassociate_distribution_web_acl:
|
|
69470
|
-
get_anycast_ip_list:
|
|
69471
|
-
get_cache_policy:
|
|
69472
|
-
get_cache_policy_config:
|
|
69473
|
-
get_cloud_front_origin_access_identity:
|
|
69474
|
-
get_cloud_front_origin_access_identity_config:
|
|
69475
|
-
get_connection_function:
|
|
69476
|
-
get_connection_group:
|
|
69477
|
-
get_connection_group_by_routing_endpoint:
|
|
69478
|
-
get_continuous_deployment_policy:
|
|
69479
|
-
get_continuous_deployment_policy_config:
|
|
69480
|
-
get_distribution:
|
|
69481
|
-
get_distribution_config:
|
|
69482
|
-
get_distribution_tenant:
|
|
69483
|
-
get_distribution_tenant_by_domain:
|
|
69484
|
-
get_field_level_encryption:
|
|
69485
|
-
get_field_level_encryption_config:
|
|
69486
|
-
get_field_level_encryption_profile:
|
|
69487
|
-
get_field_level_encryption_profile_config:
|
|
69488
|
-
get_function:
|
|
69489
|
-
get_invalidation:
|
|
69490
|
-
get_invalidation_for_distribution_tenant:
|
|
69491
|
-
get_key_group:
|
|
69492
|
-
get_key_group_config:
|
|
69493
|
-
get_managed_certificate_details:
|
|
69494
|
-
get_monitoring_subscription:
|
|
69495
|
-
get_origin_access_control:
|
|
69496
|
-
get_origin_access_control_config:
|
|
69497
|
-
get_origin_request_policy:
|
|
69498
|
-
get_origin_request_policy_config:
|
|
69499
|
-
get_public_key:
|
|
69500
|
-
get_public_key_config:
|
|
69501
|
-
get_realtime_log_config:
|
|
69502
|
-
get_resource_policy:
|
|
69503
|
-
get_response_headers_policy:
|
|
69504
|
-
get_response_headers_policy_config:
|
|
69505
|
-
get_streaming_distribution:
|
|
69506
|
-
get_streaming_distribution_config:
|
|
69507
|
-
get_trust_store:
|
|
69508
|
-
get_vpc_origin:
|
|
69509
|
-
list_anycast_ip_lists:
|
|
69510
|
-
list_cache_policies:
|
|
69511
|
-
list_cloud_front_origin_access_identities:
|
|
69512
|
-
list_conflicting_aliases:
|
|
69513
|
-
list_connection_functions:
|
|
69514
|
-
list_connection_groups:
|
|
69515
|
-
list_continuous_deployment_policies:
|
|
69516
|
-
list_distribution_tenants:
|
|
69517
|
-
list_distribution_tenants_by_customization:
|
|
69518
|
-
list_distributions:
|
|
69519
|
-
list_distributions_by_anycast_ip_list_id:
|
|
69520
|
-
list_distributions_by_cache_policy_id:
|
|
69521
|
-
list_distributions_by_connection_function:
|
|
69522
|
-
list_distributions_by_connection_mode:
|
|
69523
|
-
list_distributions_by_key_group:
|
|
69524
|
-
list_distributions_by_origin_request_policy_id:
|
|
69525
|
-
list_distributions_by_owned_resource:
|
|
69526
|
-
list_distributions_by_realtime_log_config:
|
|
69527
|
-
list_distributions_by_response_headers_policy_id:
|
|
69528
|
-
list_distributions_by_trust_store:
|
|
69529
|
-
list_distributions_by_vpc_origin_id:
|
|
69530
|
-
list_distributions_by_web_acl_id:
|
|
69531
|
-
list_domain_conflicts:
|
|
69532
|
-
list_field_level_encryption_configs:
|
|
69533
|
-
list_field_level_encryption_profiles:
|
|
69534
|
-
list_functions:
|
|
69535
|
-
list_invalidations:
|
|
69536
|
-
list_invalidations_for_distribution_tenant:
|
|
69537
|
-
list_key_groups:
|
|
69538
|
-
list_key_value_stores:
|
|
69539
|
-
list_origin_access_controls:
|
|
69540
|
-
list_origin_request_policies:
|
|
69541
|
-
list_public_keys:
|
|
69542
|
-
list_realtime_log_configs:
|
|
69543
|
-
list_response_headers_policies:
|
|
69544
|
-
list_streaming_distributions:
|
|
69545
|
-
list_tags_for_resource:
|
|
69546
|
-
list_trust_stores:
|
|
69547
|
-
list_vpc_origins:
|
|
69548
|
-
publish_connection_function:
|
|
69549
|
-
publish_function:
|
|
69550
|
-
put_resource_policy:
|
|
69551
|
-
tag_resource:
|
|
69552
|
-
test_connection_function:
|
|
69553
|
-
test_function:
|
|
69554
|
-
untag_resource:
|
|
69555
|
-
update_anycast_ip_list:
|
|
69556
|
-
update_cache_policy:
|
|
69557
|
-
update_cloud_front_origin_access_identity:
|
|
69558
|
-
update_connection_function:
|
|
69559
|
-
update_connection_group:
|
|
69560
|
-
update_continuous_deployment_policy:
|
|
69561
|
-
update_distribution:
|
|
69562
|
-
update_distribution_tenant:
|
|
69563
|
-
update_distribution_with_staging_config:
|
|
69564
|
-
update_domain_association:
|
|
69565
|
-
update_field_level_encryption_config:
|
|
69566
|
-
update_field_level_encryption_profile:
|
|
69567
|
-
update_function:
|
|
69568
|
-
update_key_group:
|
|
69569
|
-
update_key_value_store:
|
|
69570
|
-
update_origin_access_control:
|
|
69571
|
-
update_origin_request_policy:
|
|
69572
|
-
update_public_key:
|
|
69573
|
-
update_realtime_log_config:
|
|
69574
|
-
update_response_headers_policy:
|
|
69575
|
-
update_streaming_distribution:
|
|
69576
|
-
update_trust_store:
|
|
69577
|
-
update_vpc_origin:
|
|
69578
|
-
verify_dns_configuration:
|
|
69477
|
+
associate_alias: Sdk3.AssociateAliasCommand,
|
|
69478
|
+
associate_distribution_tenant_web_acl: Sdk3.AssociateDistributionTenantWebACLCommand,
|
|
69479
|
+
associate_distribution_web_acl: Sdk3.AssociateDistributionWebACLCommand,
|
|
69480
|
+
copy_distribution: Sdk3.CopyDistributionCommand,
|
|
69481
|
+
create_anycast_ip_list: Sdk3.CreateAnycastIpListCommand,
|
|
69482
|
+
create_cache_policy: Sdk3.CreateCachePolicyCommand,
|
|
69483
|
+
create_cloud_front_origin_access_identity: Sdk3.CreateCloudFrontOriginAccessIdentityCommand,
|
|
69484
|
+
create_connection_function: Sdk3.CreateConnectionFunctionCommand,
|
|
69485
|
+
create_connection_group: Sdk3.CreateConnectionGroupCommand,
|
|
69486
|
+
create_continuous_deployment_policy: Sdk3.CreateContinuousDeploymentPolicyCommand,
|
|
69487
|
+
create_distribution: Sdk3.CreateDistributionCommand,
|
|
69488
|
+
create_distribution_tenant: Sdk3.CreateDistributionTenantCommand,
|
|
69489
|
+
create_distribution_with_tags: Sdk3.CreateDistributionWithTagsCommand,
|
|
69490
|
+
create_field_level_encryption_config: Sdk3.CreateFieldLevelEncryptionConfigCommand,
|
|
69491
|
+
create_field_level_encryption_profile: Sdk3.CreateFieldLevelEncryptionProfileCommand,
|
|
69492
|
+
create_function: Sdk3.CreateFunctionCommand,
|
|
69493
|
+
create_invalidation: Sdk3.CreateInvalidationCommand,
|
|
69494
|
+
create_invalidation_for_distribution_tenant: Sdk3.CreateInvalidationForDistributionTenantCommand,
|
|
69495
|
+
create_key_group: Sdk3.CreateKeyGroupCommand,
|
|
69496
|
+
create_key_value_store: Sdk3.CreateKeyValueStoreCommand,
|
|
69497
|
+
create_monitoring_subscription: Sdk3.CreateMonitoringSubscriptionCommand,
|
|
69498
|
+
create_origin_access_control: Sdk3.CreateOriginAccessControlCommand,
|
|
69499
|
+
create_origin_request_policy: Sdk3.CreateOriginRequestPolicyCommand,
|
|
69500
|
+
create_public_key: Sdk3.CreatePublicKeyCommand,
|
|
69501
|
+
create_realtime_log_config: Sdk3.CreateRealtimeLogConfigCommand,
|
|
69502
|
+
create_response_headers_policy: Sdk3.CreateResponseHeadersPolicyCommand,
|
|
69503
|
+
create_streaming_distribution: Sdk3.CreateStreamingDistributionCommand,
|
|
69504
|
+
create_streaming_distribution_with_tags: Sdk3.CreateStreamingDistributionWithTagsCommand,
|
|
69505
|
+
create_trust_store: Sdk3.CreateTrustStoreCommand,
|
|
69506
|
+
create_vpc_origin: Sdk3.CreateVpcOriginCommand,
|
|
69507
|
+
delete_anycast_ip_list: Sdk3.DeleteAnycastIpListCommand,
|
|
69508
|
+
delete_cache_policy: Sdk3.DeleteCachePolicyCommand,
|
|
69509
|
+
delete_cloud_front_origin_access_identity: Sdk3.DeleteCloudFrontOriginAccessIdentityCommand,
|
|
69510
|
+
delete_connection_function: Sdk3.DeleteConnectionFunctionCommand,
|
|
69511
|
+
delete_connection_group: Sdk3.DeleteConnectionGroupCommand,
|
|
69512
|
+
delete_continuous_deployment_policy: Sdk3.DeleteContinuousDeploymentPolicyCommand,
|
|
69513
|
+
delete_distribution: Sdk3.DeleteDistributionCommand,
|
|
69514
|
+
delete_distribution_tenant: Sdk3.DeleteDistributionTenantCommand,
|
|
69515
|
+
delete_field_level_encryption_config: Sdk3.DeleteFieldLevelEncryptionConfigCommand,
|
|
69516
|
+
delete_field_level_encryption_profile: Sdk3.DeleteFieldLevelEncryptionProfileCommand,
|
|
69517
|
+
delete_function: Sdk3.DeleteFunctionCommand,
|
|
69518
|
+
delete_key_group: Sdk3.DeleteKeyGroupCommand,
|
|
69519
|
+
delete_key_value_store: Sdk3.DeleteKeyValueStoreCommand,
|
|
69520
|
+
delete_monitoring_subscription: Sdk3.DeleteMonitoringSubscriptionCommand,
|
|
69521
|
+
delete_origin_access_control: Sdk3.DeleteOriginAccessControlCommand,
|
|
69522
|
+
delete_origin_request_policy: Sdk3.DeleteOriginRequestPolicyCommand,
|
|
69523
|
+
delete_public_key: Sdk3.DeletePublicKeyCommand,
|
|
69524
|
+
delete_realtime_log_config: Sdk3.DeleteRealtimeLogConfigCommand,
|
|
69525
|
+
delete_resource_policy: Sdk3.DeleteResourcePolicyCommand,
|
|
69526
|
+
delete_response_headers_policy: Sdk3.DeleteResponseHeadersPolicyCommand,
|
|
69527
|
+
delete_streaming_distribution: Sdk3.DeleteStreamingDistributionCommand,
|
|
69528
|
+
delete_trust_store: Sdk3.DeleteTrustStoreCommand,
|
|
69529
|
+
delete_vpc_origin: Sdk3.DeleteVpcOriginCommand,
|
|
69530
|
+
describe_connection_function: Sdk3.DescribeConnectionFunctionCommand,
|
|
69531
|
+
describe_function: Sdk3.DescribeFunctionCommand,
|
|
69532
|
+
describe_key_value_store: Sdk3.DescribeKeyValueStoreCommand,
|
|
69533
|
+
disassociate_distribution_tenant_web_acl: Sdk3.DisassociateDistributionTenantWebACLCommand,
|
|
69534
|
+
disassociate_distribution_web_acl: Sdk3.DisassociateDistributionWebACLCommand,
|
|
69535
|
+
get_anycast_ip_list: Sdk3.GetAnycastIpListCommand,
|
|
69536
|
+
get_cache_policy: Sdk3.GetCachePolicyCommand,
|
|
69537
|
+
get_cache_policy_config: Sdk3.GetCachePolicyConfigCommand,
|
|
69538
|
+
get_cloud_front_origin_access_identity: Sdk3.GetCloudFrontOriginAccessIdentityCommand,
|
|
69539
|
+
get_cloud_front_origin_access_identity_config: Sdk3.GetCloudFrontOriginAccessIdentityConfigCommand,
|
|
69540
|
+
get_connection_function: Sdk3.GetConnectionFunctionCommand,
|
|
69541
|
+
get_connection_group: Sdk3.GetConnectionGroupCommand,
|
|
69542
|
+
get_connection_group_by_routing_endpoint: Sdk3.GetConnectionGroupByRoutingEndpointCommand,
|
|
69543
|
+
get_continuous_deployment_policy: Sdk3.GetContinuousDeploymentPolicyCommand,
|
|
69544
|
+
get_continuous_deployment_policy_config: Sdk3.GetContinuousDeploymentPolicyConfigCommand,
|
|
69545
|
+
get_distribution: Sdk3.GetDistributionCommand,
|
|
69546
|
+
get_distribution_config: Sdk3.GetDistributionConfigCommand,
|
|
69547
|
+
get_distribution_tenant: Sdk3.GetDistributionTenantCommand,
|
|
69548
|
+
get_distribution_tenant_by_domain: Sdk3.GetDistributionTenantByDomainCommand,
|
|
69549
|
+
get_field_level_encryption: Sdk3.GetFieldLevelEncryptionCommand,
|
|
69550
|
+
get_field_level_encryption_config: Sdk3.GetFieldLevelEncryptionConfigCommand,
|
|
69551
|
+
get_field_level_encryption_profile: Sdk3.GetFieldLevelEncryptionProfileCommand,
|
|
69552
|
+
get_field_level_encryption_profile_config: Sdk3.GetFieldLevelEncryptionProfileConfigCommand,
|
|
69553
|
+
get_function: Sdk3.GetFunctionCommand,
|
|
69554
|
+
get_invalidation: Sdk3.GetInvalidationCommand,
|
|
69555
|
+
get_invalidation_for_distribution_tenant: Sdk3.GetInvalidationForDistributionTenantCommand,
|
|
69556
|
+
get_key_group: Sdk3.GetKeyGroupCommand,
|
|
69557
|
+
get_key_group_config: Sdk3.GetKeyGroupConfigCommand,
|
|
69558
|
+
get_managed_certificate_details: Sdk3.GetManagedCertificateDetailsCommand,
|
|
69559
|
+
get_monitoring_subscription: Sdk3.GetMonitoringSubscriptionCommand,
|
|
69560
|
+
get_origin_access_control: Sdk3.GetOriginAccessControlCommand,
|
|
69561
|
+
get_origin_access_control_config: Sdk3.GetOriginAccessControlConfigCommand,
|
|
69562
|
+
get_origin_request_policy: Sdk3.GetOriginRequestPolicyCommand,
|
|
69563
|
+
get_origin_request_policy_config: Sdk3.GetOriginRequestPolicyConfigCommand,
|
|
69564
|
+
get_public_key: Sdk3.GetPublicKeyCommand,
|
|
69565
|
+
get_public_key_config: Sdk3.GetPublicKeyConfigCommand,
|
|
69566
|
+
get_realtime_log_config: Sdk3.GetRealtimeLogConfigCommand,
|
|
69567
|
+
get_resource_policy: Sdk3.GetResourcePolicyCommand,
|
|
69568
|
+
get_response_headers_policy: Sdk3.GetResponseHeadersPolicyCommand,
|
|
69569
|
+
get_response_headers_policy_config: Sdk3.GetResponseHeadersPolicyConfigCommand,
|
|
69570
|
+
get_streaming_distribution: Sdk3.GetStreamingDistributionCommand,
|
|
69571
|
+
get_streaming_distribution_config: Sdk3.GetStreamingDistributionConfigCommand,
|
|
69572
|
+
get_trust_store: Sdk3.GetTrustStoreCommand,
|
|
69573
|
+
get_vpc_origin: Sdk3.GetVpcOriginCommand,
|
|
69574
|
+
list_anycast_ip_lists: Sdk3.ListAnycastIpListsCommand,
|
|
69575
|
+
list_cache_policies: Sdk3.ListCachePoliciesCommand,
|
|
69576
|
+
list_cloud_front_origin_access_identities: Sdk3.ListCloudFrontOriginAccessIdentitiesCommand,
|
|
69577
|
+
list_conflicting_aliases: Sdk3.ListConflictingAliasesCommand,
|
|
69578
|
+
list_connection_functions: Sdk3.ListConnectionFunctionsCommand,
|
|
69579
|
+
list_connection_groups: Sdk3.ListConnectionGroupsCommand,
|
|
69580
|
+
list_continuous_deployment_policies: Sdk3.ListContinuousDeploymentPoliciesCommand,
|
|
69581
|
+
list_distribution_tenants: Sdk3.ListDistributionTenantsCommand,
|
|
69582
|
+
list_distribution_tenants_by_customization: Sdk3.ListDistributionTenantsByCustomizationCommand,
|
|
69583
|
+
list_distributions: Sdk3.ListDistributionsCommand,
|
|
69584
|
+
list_distributions_by_anycast_ip_list_id: Sdk3.ListDistributionsByAnycastIpListIdCommand,
|
|
69585
|
+
list_distributions_by_cache_policy_id: Sdk3.ListDistributionsByCachePolicyIdCommand,
|
|
69586
|
+
list_distributions_by_connection_function: Sdk3.ListDistributionsByConnectionFunctionCommand,
|
|
69587
|
+
list_distributions_by_connection_mode: Sdk3.ListDistributionsByConnectionModeCommand,
|
|
69588
|
+
list_distributions_by_key_group: Sdk3.ListDistributionsByKeyGroupCommand,
|
|
69589
|
+
list_distributions_by_origin_request_policy_id: Sdk3.ListDistributionsByOriginRequestPolicyIdCommand,
|
|
69590
|
+
list_distributions_by_owned_resource: Sdk3.ListDistributionsByOwnedResourceCommand,
|
|
69591
|
+
list_distributions_by_realtime_log_config: Sdk3.ListDistributionsByRealtimeLogConfigCommand,
|
|
69592
|
+
list_distributions_by_response_headers_policy_id: Sdk3.ListDistributionsByResponseHeadersPolicyIdCommand,
|
|
69593
|
+
list_distributions_by_trust_store: Sdk3.ListDistributionsByTrustStoreCommand,
|
|
69594
|
+
list_distributions_by_vpc_origin_id: Sdk3.ListDistributionsByVpcOriginIdCommand,
|
|
69595
|
+
list_distributions_by_web_acl_id: Sdk3.ListDistributionsByWebACLIdCommand,
|
|
69596
|
+
list_domain_conflicts: Sdk3.ListDomainConflictsCommand,
|
|
69597
|
+
list_field_level_encryption_configs: Sdk3.ListFieldLevelEncryptionConfigsCommand,
|
|
69598
|
+
list_field_level_encryption_profiles: Sdk3.ListFieldLevelEncryptionProfilesCommand,
|
|
69599
|
+
list_functions: Sdk3.ListFunctionsCommand,
|
|
69600
|
+
list_invalidations: Sdk3.ListInvalidationsCommand,
|
|
69601
|
+
list_invalidations_for_distribution_tenant: Sdk3.ListInvalidationsForDistributionTenantCommand,
|
|
69602
|
+
list_key_groups: Sdk3.ListKeyGroupsCommand,
|
|
69603
|
+
list_key_value_stores: Sdk3.ListKeyValueStoresCommand,
|
|
69604
|
+
list_origin_access_controls: Sdk3.ListOriginAccessControlsCommand,
|
|
69605
|
+
list_origin_request_policies: Sdk3.ListOriginRequestPoliciesCommand,
|
|
69606
|
+
list_public_keys: Sdk3.ListPublicKeysCommand,
|
|
69607
|
+
list_realtime_log_configs: Sdk3.ListRealtimeLogConfigsCommand,
|
|
69608
|
+
list_response_headers_policies: Sdk3.ListResponseHeadersPoliciesCommand,
|
|
69609
|
+
list_streaming_distributions: Sdk3.ListStreamingDistributionsCommand,
|
|
69610
|
+
list_tags_for_resource: Sdk3.ListTagsForResourceCommand,
|
|
69611
|
+
list_trust_stores: Sdk3.ListTrustStoresCommand,
|
|
69612
|
+
list_vpc_origins: Sdk3.ListVpcOriginsCommand,
|
|
69613
|
+
publish_connection_function: Sdk3.PublishConnectionFunctionCommand,
|
|
69614
|
+
publish_function: Sdk3.PublishFunctionCommand,
|
|
69615
|
+
put_resource_policy: Sdk3.PutResourcePolicyCommand,
|
|
69616
|
+
tag_resource: Sdk3.TagResourceCommand,
|
|
69617
|
+
test_connection_function: Sdk3.TestConnectionFunctionCommand,
|
|
69618
|
+
test_function: Sdk3.TestFunctionCommand,
|
|
69619
|
+
untag_resource: Sdk3.UntagResourceCommand,
|
|
69620
|
+
update_anycast_ip_list: Sdk3.UpdateAnycastIpListCommand,
|
|
69621
|
+
update_cache_policy: Sdk3.UpdateCachePolicyCommand,
|
|
69622
|
+
update_cloud_front_origin_access_identity: Sdk3.UpdateCloudFrontOriginAccessIdentityCommand,
|
|
69623
|
+
update_connection_function: Sdk3.UpdateConnectionFunctionCommand,
|
|
69624
|
+
update_connection_group: Sdk3.UpdateConnectionGroupCommand,
|
|
69625
|
+
update_continuous_deployment_policy: Sdk3.UpdateContinuousDeploymentPolicyCommand,
|
|
69626
|
+
update_distribution: Sdk3.UpdateDistributionCommand,
|
|
69627
|
+
update_distribution_tenant: Sdk3.UpdateDistributionTenantCommand,
|
|
69628
|
+
update_distribution_with_staging_config: Sdk3.UpdateDistributionWithStagingConfigCommand,
|
|
69629
|
+
update_domain_association: Sdk3.UpdateDomainAssociationCommand,
|
|
69630
|
+
update_field_level_encryption_config: Sdk3.UpdateFieldLevelEncryptionConfigCommand,
|
|
69631
|
+
update_field_level_encryption_profile: Sdk3.UpdateFieldLevelEncryptionProfileCommand,
|
|
69632
|
+
update_function: Sdk3.UpdateFunctionCommand,
|
|
69633
|
+
update_key_group: Sdk3.UpdateKeyGroupCommand,
|
|
69634
|
+
update_key_value_store: Sdk3.UpdateKeyValueStoreCommand,
|
|
69635
|
+
update_origin_access_control: Sdk3.UpdateOriginAccessControlCommand,
|
|
69636
|
+
update_origin_request_policy: Sdk3.UpdateOriginRequestPolicyCommand,
|
|
69637
|
+
update_public_key: Sdk3.UpdatePublicKeyCommand,
|
|
69638
|
+
update_realtime_log_config: Sdk3.UpdateRealtimeLogConfigCommand,
|
|
69639
|
+
update_response_headers_policy: Sdk3.UpdateResponseHeadersPolicyCommand,
|
|
69640
|
+
update_streaming_distribution: Sdk3.UpdateStreamingDistributionCommand,
|
|
69641
|
+
update_trust_store: Sdk3.UpdateTrustStoreCommand,
|
|
69642
|
+
update_vpc_origin: Sdk3.UpdateVpcOriginCommand,
|
|
69643
|
+
verify_dns_configuration: Sdk3.VerifyDnsConfigurationCommand
|
|
69579
69644
|
};
|
|
69580
69645
|
|
|
69581
69646
|
// src/aws/clients/cloudwatch-logs.ts
|
|
@@ -69583,25 +69648,25 @@ var cloudwatch_logs_exports = {};
|
|
|
69583
69648
|
__export(cloudwatch_logs_exports, {
|
|
69584
69649
|
CloudWatchLogsClient: () => CloudWatchLogsClient2,
|
|
69585
69650
|
CloudWatchLogsError: () => CloudWatchLogsError,
|
|
69586
|
-
make: () =>
|
|
69651
|
+
make: () => make71
|
|
69587
69652
|
});
|
|
69588
|
-
import * as
|
|
69653
|
+
import * as Sdk4 from "@aws-sdk/client-cloudwatch-logs";
|
|
69589
69654
|
var CloudWatchLogsClient2 = class _CloudWatchLogsClient extends Tag2("CloudWatchLogsClient")() {
|
|
69590
69655
|
static Default = (config2) => effect(
|
|
69591
69656
|
_CloudWatchLogsClient,
|
|
69592
69657
|
gen3(function* () {
|
|
69593
|
-
return new
|
|
69658
|
+
return new Sdk4.CloudWatchLogsClient(config2 ?? {});
|
|
69594
69659
|
})
|
|
69595
69660
|
);
|
|
69596
69661
|
};
|
|
69597
|
-
var
|
|
69662
|
+
var make71 = fn("aws_CloudWatchLogs")(function* (actionName, actionInput) {
|
|
69598
69663
|
yield* logDebug2(`aws_CloudWatchLogs.${actionName}`, { input: actionInput });
|
|
69599
69664
|
const client = yield* CloudWatchLogsClient2;
|
|
69600
69665
|
const command = new CloudWatchLogsCommandFactory[actionName](actionInput);
|
|
69601
69666
|
const result = yield* tryPromise2({
|
|
69602
69667
|
try: () => client.send(command),
|
|
69603
69668
|
catch: (error4) => {
|
|
69604
|
-
if (error4 instanceof
|
|
69669
|
+
if (error4 instanceof Sdk4.CloudWatchLogsServiceException) {
|
|
69605
69670
|
return new CloudWatchLogsError(error4, actionName);
|
|
69606
69671
|
}
|
|
69607
69672
|
throw error4;
|
|
@@ -69624,113 +69689,113 @@ var CloudWatchLogsError = class {
|
|
|
69624
69689
|
}
|
|
69625
69690
|
};
|
|
69626
69691
|
var CloudWatchLogsCommandFactory = {
|
|
69627
|
-
associate_kms_key:
|
|
69628
|
-
associate_source_to_s3_table_integration:
|
|
69629
|
-
cancel_export_task:
|
|
69630
|
-
cancel_import_task:
|
|
69631
|
-
create_delivery:
|
|
69632
|
-
create_export_task:
|
|
69633
|
-
create_import_task:
|
|
69634
|
-
create_log_anomaly_detector:
|
|
69635
|
-
create_log_group:
|
|
69636
|
-
create_log_stream:
|
|
69637
|
-
create_scheduled_query:
|
|
69638
|
-
delete_account_policy:
|
|
69639
|
-
delete_data_protection_policy:
|
|
69640
|
-
delete_delivery:
|
|
69641
|
-
delete_delivery_destination:
|
|
69642
|
-
delete_delivery_destination_policy:
|
|
69643
|
-
delete_delivery_source:
|
|
69644
|
-
delete_destination:
|
|
69645
|
-
delete_index_policy:
|
|
69646
|
-
delete_integration:
|
|
69647
|
-
delete_log_anomaly_detector:
|
|
69648
|
-
delete_log_group:
|
|
69649
|
-
delete_log_stream:
|
|
69650
|
-
delete_metric_filter:
|
|
69651
|
-
delete_query_definition:
|
|
69652
|
-
delete_resource_policy:
|
|
69653
|
-
delete_retention_policy:
|
|
69654
|
-
delete_scheduled_query:
|
|
69655
|
-
delete_subscription_filter:
|
|
69656
|
-
delete_transformer:
|
|
69657
|
-
describe_account_policies:
|
|
69658
|
-
describe_configuration_templates:
|
|
69659
|
-
describe_deliveries:
|
|
69660
|
-
describe_delivery_destinations:
|
|
69661
|
-
describe_delivery_sources:
|
|
69662
|
-
describe_destinations:
|
|
69663
|
-
describe_export_tasks:
|
|
69664
|
-
describe_field_indexes:
|
|
69665
|
-
describe_import_task_batches:
|
|
69666
|
-
describe_import_tasks:
|
|
69667
|
-
describe_index_policies:
|
|
69668
|
-
describe_log_groups:
|
|
69669
|
-
describe_log_streams:
|
|
69670
|
-
describe_metric_filters:
|
|
69671
|
-
describe_queries:
|
|
69672
|
-
describe_query_definitions:
|
|
69673
|
-
describe_resource_policies:
|
|
69674
|
-
describe_subscription_filters:
|
|
69675
|
-
disassociate_kms_key:
|
|
69676
|
-
disassociate_source_from_s3_table_integration:
|
|
69677
|
-
filter_log_events:
|
|
69678
|
-
get_data_protection_policy:
|
|
69679
|
-
get_delivery:
|
|
69680
|
-
get_delivery_destination:
|
|
69681
|
-
get_delivery_destination_policy:
|
|
69682
|
-
get_delivery_source:
|
|
69683
|
-
get_integration:
|
|
69684
|
-
get_log_anomaly_detector:
|
|
69685
|
-
get_log_events:
|
|
69686
|
-
get_log_fields:
|
|
69687
|
-
get_log_group_fields:
|
|
69688
|
-
get_log_object:
|
|
69689
|
-
get_log_record:
|
|
69690
|
-
get_query_results:
|
|
69691
|
-
get_scheduled_query:
|
|
69692
|
-
get_scheduled_query_history:
|
|
69693
|
-
get_transformer:
|
|
69694
|
-
list_aggregate_log_group_summaries:
|
|
69695
|
-
list_anomalies:
|
|
69696
|
-
list_integrations:
|
|
69697
|
-
list_log_anomaly_detectors:
|
|
69698
|
-
list_log_groups:
|
|
69699
|
-
list_log_groups_for_query:
|
|
69700
|
-
list_scheduled_queries:
|
|
69701
|
-
list_sources_for_s3_table_integration:
|
|
69702
|
-
list_tags_for_resource:
|
|
69703
|
-
list_tags_log_group:
|
|
69704
|
-
put_account_policy:
|
|
69705
|
-
put_data_protection_policy:
|
|
69706
|
-
put_delivery_destination:
|
|
69707
|
-
put_delivery_destination_policy:
|
|
69708
|
-
put_delivery_source:
|
|
69709
|
-
put_destination:
|
|
69710
|
-
put_destination_policy:
|
|
69711
|
-
put_index_policy:
|
|
69712
|
-
put_integration:
|
|
69713
|
-
put_log_events:
|
|
69714
|
-
put_log_group_deletion_protection:
|
|
69715
|
-
put_metric_filter:
|
|
69716
|
-
put_query_definition:
|
|
69717
|
-
put_resource_policy:
|
|
69718
|
-
put_retention_policy:
|
|
69719
|
-
put_subscription_filter:
|
|
69720
|
-
put_transformer:
|
|
69721
|
-
start_live_tail:
|
|
69722
|
-
start_query:
|
|
69723
|
-
stop_query:
|
|
69724
|
-
tag_log_group:
|
|
69725
|
-
tag_resource:
|
|
69726
|
-
test_metric_filter:
|
|
69727
|
-
test_transformer:
|
|
69728
|
-
untag_log_group:
|
|
69729
|
-
untag_resource:
|
|
69730
|
-
update_anomaly:
|
|
69731
|
-
update_delivery_configuration:
|
|
69732
|
-
update_log_anomaly_detector:
|
|
69733
|
-
update_scheduled_query:
|
|
69692
|
+
associate_kms_key: Sdk4.AssociateKmsKeyCommand,
|
|
69693
|
+
associate_source_to_s3_table_integration: Sdk4.AssociateSourceToS3TableIntegrationCommand,
|
|
69694
|
+
cancel_export_task: Sdk4.CancelExportTaskCommand,
|
|
69695
|
+
cancel_import_task: Sdk4.CancelImportTaskCommand,
|
|
69696
|
+
create_delivery: Sdk4.CreateDeliveryCommand,
|
|
69697
|
+
create_export_task: Sdk4.CreateExportTaskCommand,
|
|
69698
|
+
create_import_task: Sdk4.CreateImportTaskCommand,
|
|
69699
|
+
create_log_anomaly_detector: Sdk4.CreateLogAnomalyDetectorCommand,
|
|
69700
|
+
create_log_group: Sdk4.CreateLogGroupCommand,
|
|
69701
|
+
create_log_stream: Sdk4.CreateLogStreamCommand,
|
|
69702
|
+
create_scheduled_query: Sdk4.CreateScheduledQueryCommand,
|
|
69703
|
+
delete_account_policy: Sdk4.DeleteAccountPolicyCommand,
|
|
69704
|
+
delete_data_protection_policy: Sdk4.DeleteDataProtectionPolicyCommand,
|
|
69705
|
+
delete_delivery: Sdk4.DeleteDeliveryCommand,
|
|
69706
|
+
delete_delivery_destination: Sdk4.DeleteDeliveryDestinationCommand,
|
|
69707
|
+
delete_delivery_destination_policy: Sdk4.DeleteDeliveryDestinationPolicyCommand,
|
|
69708
|
+
delete_delivery_source: Sdk4.DeleteDeliverySourceCommand,
|
|
69709
|
+
delete_destination: Sdk4.DeleteDestinationCommand,
|
|
69710
|
+
delete_index_policy: Sdk4.DeleteIndexPolicyCommand,
|
|
69711
|
+
delete_integration: Sdk4.DeleteIntegrationCommand,
|
|
69712
|
+
delete_log_anomaly_detector: Sdk4.DeleteLogAnomalyDetectorCommand,
|
|
69713
|
+
delete_log_group: Sdk4.DeleteLogGroupCommand,
|
|
69714
|
+
delete_log_stream: Sdk4.DeleteLogStreamCommand,
|
|
69715
|
+
delete_metric_filter: Sdk4.DeleteMetricFilterCommand,
|
|
69716
|
+
delete_query_definition: Sdk4.DeleteQueryDefinitionCommand,
|
|
69717
|
+
delete_resource_policy: Sdk4.DeleteResourcePolicyCommand,
|
|
69718
|
+
delete_retention_policy: Sdk4.DeleteRetentionPolicyCommand,
|
|
69719
|
+
delete_scheduled_query: Sdk4.DeleteScheduledQueryCommand,
|
|
69720
|
+
delete_subscription_filter: Sdk4.DeleteSubscriptionFilterCommand,
|
|
69721
|
+
delete_transformer: Sdk4.DeleteTransformerCommand,
|
|
69722
|
+
describe_account_policies: Sdk4.DescribeAccountPoliciesCommand,
|
|
69723
|
+
describe_configuration_templates: Sdk4.DescribeConfigurationTemplatesCommand,
|
|
69724
|
+
describe_deliveries: Sdk4.DescribeDeliveriesCommand,
|
|
69725
|
+
describe_delivery_destinations: Sdk4.DescribeDeliveryDestinationsCommand,
|
|
69726
|
+
describe_delivery_sources: Sdk4.DescribeDeliverySourcesCommand,
|
|
69727
|
+
describe_destinations: Sdk4.DescribeDestinationsCommand,
|
|
69728
|
+
describe_export_tasks: Sdk4.DescribeExportTasksCommand,
|
|
69729
|
+
describe_field_indexes: Sdk4.DescribeFieldIndexesCommand,
|
|
69730
|
+
describe_import_task_batches: Sdk4.DescribeImportTaskBatchesCommand,
|
|
69731
|
+
describe_import_tasks: Sdk4.DescribeImportTasksCommand,
|
|
69732
|
+
describe_index_policies: Sdk4.DescribeIndexPoliciesCommand,
|
|
69733
|
+
describe_log_groups: Sdk4.DescribeLogGroupsCommand,
|
|
69734
|
+
describe_log_streams: Sdk4.DescribeLogStreamsCommand,
|
|
69735
|
+
describe_metric_filters: Sdk4.DescribeMetricFiltersCommand,
|
|
69736
|
+
describe_queries: Sdk4.DescribeQueriesCommand,
|
|
69737
|
+
describe_query_definitions: Sdk4.DescribeQueryDefinitionsCommand,
|
|
69738
|
+
describe_resource_policies: Sdk4.DescribeResourcePoliciesCommand,
|
|
69739
|
+
describe_subscription_filters: Sdk4.DescribeSubscriptionFiltersCommand,
|
|
69740
|
+
disassociate_kms_key: Sdk4.DisassociateKmsKeyCommand,
|
|
69741
|
+
disassociate_source_from_s3_table_integration: Sdk4.DisassociateSourceFromS3TableIntegrationCommand,
|
|
69742
|
+
filter_log_events: Sdk4.FilterLogEventsCommand,
|
|
69743
|
+
get_data_protection_policy: Sdk4.GetDataProtectionPolicyCommand,
|
|
69744
|
+
get_delivery: Sdk4.GetDeliveryCommand,
|
|
69745
|
+
get_delivery_destination: Sdk4.GetDeliveryDestinationCommand,
|
|
69746
|
+
get_delivery_destination_policy: Sdk4.GetDeliveryDestinationPolicyCommand,
|
|
69747
|
+
get_delivery_source: Sdk4.GetDeliverySourceCommand,
|
|
69748
|
+
get_integration: Sdk4.GetIntegrationCommand,
|
|
69749
|
+
get_log_anomaly_detector: Sdk4.GetLogAnomalyDetectorCommand,
|
|
69750
|
+
get_log_events: Sdk4.GetLogEventsCommand,
|
|
69751
|
+
get_log_fields: Sdk4.GetLogFieldsCommand,
|
|
69752
|
+
get_log_group_fields: Sdk4.GetLogGroupFieldsCommand,
|
|
69753
|
+
get_log_object: Sdk4.GetLogObjectCommand,
|
|
69754
|
+
get_log_record: Sdk4.GetLogRecordCommand,
|
|
69755
|
+
get_query_results: Sdk4.GetQueryResultsCommand,
|
|
69756
|
+
get_scheduled_query: Sdk4.GetScheduledQueryCommand,
|
|
69757
|
+
get_scheduled_query_history: Sdk4.GetScheduledQueryHistoryCommand,
|
|
69758
|
+
get_transformer: Sdk4.GetTransformerCommand,
|
|
69759
|
+
list_aggregate_log_group_summaries: Sdk4.ListAggregateLogGroupSummariesCommand,
|
|
69760
|
+
list_anomalies: Sdk4.ListAnomaliesCommand,
|
|
69761
|
+
list_integrations: Sdk4.ListIntegrationsCommand,
|
|
69762
|
+
list_log_anomaly_detectors: Sdk4.ListLogAnomalyDetectorsCommand,
|
|
69763
|
+
list_log_groups: Sdk4.ListLogGroupsCommand,
|
|
69764
|
+
list_log_groups_for_query: Sdk4.ListLogGroupsForQueryCommand,
|
|
69765
|
+
list_scheduled_queries: Sdk4.ListScheduledQueriesCommand,
|
|
69766
|
+
list_sources_for_s3_table_integration: Sdk4.ListSourcesForS3TableIntegrationCommand,
|
|
69767
|
+
list_tags_for_resource: Sdk4.ListTagsForResourceCommand,
|
|
69768
|
+
list_tags_log_group: Sdk4.ListTagsLogGroupCommand,
|
|
69769
|
+
put_account_policy: Sdk4.PutAccountPolicyCommand,
|
|
69770
|
+
put_data_protection_policy: Sdk4.PutDataProtectionPolicyCommand,
|
|
69771
|
+
put_delivery_destination: Sdk4.PutDeliveryDestinationCommand,
|
|
69772
|
+
put_delivery_destination_policy: Sdk4.PutDeliveryDestinationPolicyCommand,
|
|
69773
|
+
put_delivery_source: Sdk4.PutDeliverySourceCommand,
|
|
69774
|
+
put_destination: Sdk4.PutDestinationCommand,
|
|
69775
|
+
put_destination_policy: Sdk4.PutDestinationPolicyCommand,
|
|
69776
|
+
put_index_policy: Sdk4.PutIndexPolicyCommand,
|
|
69777
|
+
put_integration: Sdk4.PutIntegrationCommand,
|
|
69778
|
+
put_log_events: Sdk4.PutLogEventsCommand,
|
|
69779
|
+
put_log_group_deletion_protection: Sdk4.PutLogGroupDeletionProtectionCommand,
|
|
69780
|
+
put_metric_filter: Sdk4.PutMetricFilterCommand,
|
|
69781
|
+
put_query_definition: Sdk4.PutQueryDefinitionCommand,
|
|
69782
|
+
put_resource_policy: Sdk4.PutResourcePolicyCommand,
|
|
69783
|
+
put_retention_policy: Sdk4.PutRetentionPolicyCommand,
|
|
69784
|
+
put_subscription_filter: Sdk4.PutSubscriptionFilterCommand,
|
|
69785
|
+
put_transformer: Sdk4.PutTransformerCommand,
|
|
69786
|
+
start_live_tail: Sdk4.StartLiveTailCommand,
|
|
69787
|
+
start_query: Sdk4.StartQueryCommand,
|
|
69788
|
+
stop_query: Sdk4.StopQueryCommand,
|
|
69789
|
+
tag_log_group: Sdk4.TagLogGroupCommand,
|
|
69790
|
+
tag_resource: Sdk4.TagResourceCommand,
|
|
69791
|
+
test_metric_filter: Sdk4.TestMetricFilterCommand,
|
|
69792
|
+
test_transformer: Sdk4.TestTransformerCommand,
|
|
69793
|
+
untag_log_group: Sdk4.UntagLogGroupCommand,
|
|
69794
|
+
untag_resource: Sdk4.UntagResourceCommand,
|
|
69795
|
+
update_anomaly: Sdk4.UpdateAnomalyCommand,
|
|
69796
|
+
update_delivery_configuration: Sdk4.UpdateDeliveryConfigurationCommand,
|
|
69797
|
+
update_log_anomaly_detector: Sdk4.UpdateLogAnomalyDetectorCommand,
|
|
69798
|
+
update_scheduled_query: Sdk4.UpdateScheduledQueryCommand
|
|
69734
69799
|
};
|
|
69735
69800
|
|
|
69736
69801
|
// src/aws/clients/dynamodb.ts
|
|
@@ -69738,25 +69803,25 @@ var dynamodb_exports = {};
|
|
|
69738
69803
|
__export(dynamodb_exports, {
|
|
69739
69804
|
DynamoDBClient: () => DynamoDBClient2,
|
|
69740
69805
|
DynamoDBError: () => DynamoDBError,
|
|
69741
|
-
make: () =>
|
|
69806
|
+
make: () => make72
|
|
69742
69807
|
});
|
|
69743
|
-
import * as
|
|
69808
|
+
import * as Sdk5 from "@aws-sdk/client-dynamodb";
|
|
69744
69809
|
var DynamoDBClient2 = class _DynamoDBClient extends Tag2("DynamoDBClient")() {
|
|
69745
69810
|
static Default = (config2) => effect(
|
|
69746
69811
|
_DynamoDBClient,
|
|
69747
69812
|
gen3(function* () {
|
|
69748
|
-
return new
|
|
69813
|
+
return new Sdk5.DynamoDBClient(config2 ?? {});
|
|
69749
69814
|
})
|
|
69750
69815
|
);
|
|
69751
69816
|
};
|
|
69752
|
-
var
|
|
69817
|
+
var make72 = fn("aws_DynamoDB")(function* (actionName, actionInput) {
|
|
69753
69818
|
yield* logDebug2(`aws_DynamoDB.${actionName}`, { input: actionInput });
|
|
69754
69819
|
const client = yield* DynamoDBClient2;
|
|
69755
69820
|
const command = new DynamoDBCommandFactory[actionName](actionInput);
|
|
69756
69821
|
const result = yield* tryPromise2({
|
|
69757
69822
|
try: () => client.send(command),
|
|
69758
69823
|
catch: (error4) => {
|
|
69759
|
-
if (error4 instanceof
|
|
69824
|
+
if (error4 instanceof Sdk5.DynamoDBServiceException) {
|
|
69760
69825
|
return new DynamoDBError(error4, actionName);
|
|
69761
69826
|
}
|
|
69762
69827
|
throw error4;
|
|
@@ -69779,63 +69844,63 @@ var DynamoDBError = class {
|
|
|
69779
69844
|
}
|
|
69780
69845
|
};
|
|
69781
69846
|
var DynamoDBCommandFactory = {
|
|
69782
|
-
batch_execute_statement:
|
|
69783
|
-
batch_get_item:
|
|
69784
|
-
batch_write_item:
|
|
69785
|
-
create_backup:
|
|
69786
|
-
create_global_table:
|
|
69787
|
-
create_table:
|
|
69788
|
-
delete_backup:
|
|
69789
|
-
delete_item:
|
|
69790
|
-
delete_resource_policy:
|
|
69791
|
-
delete_table:
|
|
69792
|
-
describe_backup:
|
|
69793
|
-
describe_continuous_backups:
|
|
69794
|
-
describe_contributor_insights:
|
|
69795
|
-
describe_endpoints:
|
|
69796
|
-
describe_export:
|
|
69797
|
-
describe_global_table:
|
|
69798
|
-
describe_global_table_settings:
|
|
69799
|
-
describe_import:
|
|
69800
|
-
describe_kinesis_streaming_destination:
|
|
69801
|
-
describe_limits:
|
|
69802
|
-
describe_table:
|
|
69803
|
-
describe_table_replica_auto_scaling:
|
|
69804
|
-
describe_time_to_live:
|
|
69805
|
-
disable_kinesis_streaming_destination:
|
|
69806
|
-
enable_kinesis_streaming_destination:
|
|
69807
|
-
execute_statement:
|
|
69808
|
-
execute_transaction:
|
|
69809
|
-
export_table_to_point_in_time:
|
|
69810
|
-
get_item:
|
|
69811
|
-
get_resource_policy:
|
|
69812
|
-
import_table:
|
|
69813
|
-
list_backups:
|
|
69814
|
-
list_contributor_insights:
|
|
69815
|
-
list_exports:
|
|
69816
|
-
list_global_tables:
|
|
69817
|
-
list_imports:
|
|
69818
|
-
list_tables:
|
|
69819
|
-
list_tags_of_resource:
|
|
69820
|
-
put_item:
|
|
69821
|
-
put_resource_policy:
|
|
69822
|
-
query:
|
|
69823
|
-
restore_table_from_backup:
|
|
69824
|
-
restore_table_to_point_in_time:
|
|
69825
|
-
scan:
|
|
69826
|
-
tag_resource:
|
|
69827
|
-
transact_get_items:
|
|
69828
|
-
transact_write_items:
|
|
69829
|
-
untag_resource:
|
|
69830
|
-
update_continuous_backups:
|
|
69831
|
-
update_contributor_insights:
|
|
69832
|
-
update_global_table:
|
|
69833
|
-
update_global_table_settings:
|
|
69834
|
-
update_item:
|
|
69835
|
-
update_kinesis_streaming_destination:
|
|
69836
|
-
update_table:
|
|
69837
|
-
update_table_replica_auto_scaling:
|
|
69838
|
-
update_time_to_live:
|
|
69847
|
+
batch_execute_statement: Sdk5.BatchExecuteStatementCommand,
|
|
69848
|
+
batch_get_item: Sdk5.BatchGetItemCommand,
|
|
69849
|
+
batch_write_item: Sdk5.BatchWriteItemCommand,
|
|
69850
|
+
create_backup: Sdk5.CreateBackupCommand,
|
|
69851
|
+
create_global_table: Sdk5.CreateGlobalTableCommand,
|
|
69852
|
+
create_table: Sdk5.CreateTableCommand,
|
|
69853
|
+
delete_backup: Sdk5.DeleteBackupCommand,
|
|
69854
|
+
delete_item: Sdk5.DeleteItemCommand,
|
|
69855
|
+
delete_resource_policy: Sdk5.DeleteResourcePolicyCommand,
|
|
69856
|
+
delete_table: Sdk5.DeleteTableCommand,
|
|
69857
|
+
describe_backup: Sdk5.DescribeBackupCommand,
|
|
69858
|
+
describe_continuous_backups: Sdk5.DescribeContinuousBackupsCommand,
|
|
69859
|
+
describe_contributor_insights: Sdk5.DescribeContributorInsightsCommand,
|
|
69860
|
+
describe_endpoints: Sdk5.DescribeEndpointsCommand,
|
|
69861
|
+
describe_export: Sdk5.DescribeExportCommand,
|
|
69862
|
+
describe_global_table: Sdk5.DescribeGlobalTableCommand,
|
|
69863
|
+
describe_global_table_settings: Sdk5.DescribeGlobalTableSettingsCommand,
|
|
69864
|
+
describe_import: Sdk5.DescribeImportCommand,
|
|
69865
|
+
describe_kinesis_streaming_destination: Sdk5.DescribeKinesisStreamingDestinationCommand,
|
|
69866
|
+
describe_limits: Sdk5.DescribeLimitsCommand,
|
|
69867
|
+
describe_table: Sdk5.DescribeTableCommand,
|
|
69868
|
+
describe_table_replica_auto_scaling: Sdk5.DescribeTableReplicaAutoScalingCommand,
|
|
69869
|
+
describe_time_to_live: Sdk5.DescribeTimeToLiveCommand,
|
|
69870
|
+
disable_kinesis_streaming_destination: Sdk5.DisableKinesisStreamingDestinationCommand,
|
|
69871
|
+
enable_kinesis_streaming_destination: Sdk5.EnableKinesisStreamingDestinationCommand,
|
|
69872
|
+
execute_statement: Sdk5.ExecuteStatementCommand,
|
|
69873
|
+
execute_transaction: Sdk5.ExecuteTransactionCommand,
|
|
69874
|
+
export_table_to_point_in_time: Sdk5.ExportTableToPointInTimeCommand,
|
|
69875
|
+
get_item: Sdk5.GetItemCommand,
|
|
69876
|
+
get_resource_policy: Sdk5.GetResourcePolicyCommand,
|
|
69877
|
+
import_table: Sdk5.ImportTableCommand,
|
|
69878
|
+
list_backups: Sdk5.ListBackupsCommand,
|
|
69879
|
+
list_contributor_insights: Sdk5.ListContributorInsightsCommand,
|
|
69880
|
+
list_exports: Sdk5.ListExportsCommand,
|
|
69881
|
+
list_global_tables: Sdk5.ListGlobalTablesCommand,
|
|
69882
|
+
list_imports: Sdk5.ListImportsCommand,
|
|
69883
|
+
list_tables: Sdk5.ListTablesCommand,
|
|
69884
|
+
list_tags_of_resource: Sdk5.ListTagsOfResourceCommand,
|
|
69885
|
+
put_item: Sdk5.PutItemCommand,
|
|
69886
|
+
put_resource_policy: Sdk5.PutResourcePolicyCommand,
|
|
69887
|
+
query: Sdk5.QueryCommand,
|
|
69888
|
+
restore_table_from_backup: Sdk5.RestoreTableFromBackupCommand,
|
|
69889
|
+
restore_table_to_point_in_time: Sdk5.RestoreTableToPointInTimeCommand,
|
|
69890
|
+
scan: Sdk5.ScanCommand,
|
|
69891
|
+
tag_resource: Sdk5.TagResourceCommand,
|
|
69892
|
+
transact_get_items: Sdk5.TransactGetItemsCommand,
|
|
69893
|
+
transact_write_items: Sdk5.TransactWriteItemsCommand,
|
|
69894
|
+
untag_resource: Sdk5.UntagResourceCommand,
|
|
69895
|
+
update_continuous_backups: Sdk5.UpdateContinuousBackupsCommand,
|
|
69896
|
+
update_contributor_insights: Sdk5.UpdateContributorInsightsCommand,
|
|
69897
|
+
update_global_table: Sdk5.UpdateGlobalTableCommand,
|
|
69898
|
+
update_global_table_settings: Sdk5.UpdateGlobalTableSettingsCommand,
|
|
69899
|
+
update_item: Sdk5.UpdateItemCommand,
|
|
69900
|
+
update_kinesis_streaming_destination: Sdk5.UpdateKinesisStreamingDestinationCommand,
|
|
69901
|
+
update_table: Sdk5.UpdateTableCommand,
|
|
69902
|
+
update_table_replica_auto_scaling: Sdk5.UpdateTableReplicaAutoScalingCommand,
|
|
69903
|
+
update_time_to_live: Sdk5.UpdateTimeToLiveCommand
|
|
69839
69904
|
};
|
|
69840
69905
|
|
|
69841
69906
|
// src/aws/clients/iam.ts
|
|
@@ -69843,25 +69908,25 @@ var iam_exports = {};
|
|
|
69843
69908
|
__export(iam_exports, {
|
|
69844
69909
|
IAMClient: () => IAMClient2,
|
|
69845
69910
|
IAMError: () => IAMError,
|
|
69846
|
-
make: () =>
|
|
69911
|
+
make: () => make73
|
|
69847
69912
|
});
|
|
69848
|
-
import * as
|
|
69913
|
+
import * as Sdk6 from "@aws-sdk/client-iam";
|
|
69849
69914
|
var IAMClient2 = class _IAMClient extends Tag2("IAMClient")() {
|
|
69850
69915
|
static Default = (config2) => effect(
|
|
69851
69916
|
_IAMClient,
|
|
69852
69917
|
gen3(function* () {
|
|
69853
|
-
return new
|
|
69918
|
+
return new Sdk6.IAMClient(config2 ?? {});
|
|
69854
69919
|
})
|
|
69855
69920
|
);
|
|
69856
69921
|
};
|
|
69857
|
-
var
|
|
69922
|
+
var make73 = fn("aws_IAM")(function* (actionName, actionInput) {
|
|
69858
69923
|
yield* logDebug2(`aws_IAM.${actionName}`, { input: actionInput });
|
|
69859
69924
|
const client = yield* IAMClient2;
|
|
69860
69925
|
const command = new IAMCommandFactory[actionName](actionInput);
|
|
69861
69926
|
const result = yield* tryPromise2({
|
|
69862
69927
|
try: () => client.send(command),
|
|
69863
69928
|
catch: (error4) => {
|
|
69864
|
-
if (error4 instanceof
|
|
69929
|
+
if (error4 instanceof Sdk6.IAMServiceException) {
|
|
69865
69930
|
return new IAMError(error4, actionName);
|
|
69866
69931
|
}
|
|
69867
69932
|
throw error4;
|
|
@@ -69884,182 +69949,182 @@ var IAMError = class {
|
|
|
69884
69949
|
}
|
|
69885
69950
|
};
|
|
69886
69951
|
var IAMCommandFactory = {
|
|
69887
|
-
accept_delegation_request:
|
|
69888
|
-
add_client_id_to_open_id_connect_provider:
|
|
69889
|
-
add_role_to_instance_profile:
|
|
69890
|
-
add_user_to_group:
|
|
69891
|
-
associate_delegation_request:
|
|
69892
|
-
attach_group_policy:
|
|
69893
|
-
attach_role_policy:
|
|
69894
|
-
attach_user_policy:
|
|
69895
|
-
change_password:
|
|
69896
|
-
create_access_key:
|
|
69897
|
-
create_account_alias:
|
|
69898
|
-
create_delegation_request:
|
|
69899
|
-
create_group:
|
|
69900
|
-
create_instance_profile:
|
|
69901
|
-
create_login_profile:
|
|
69902
|
-
create_open_id_connect_provider:
|
|
69903
|
-
create_policy:
|
|
69904
|
-
create_policy_version:
|
|
69905
|
-
create_role:
|
|
69906
|
-
create_saml_provider:
|
|
69907
|
-
create_service_linked_role:
|
|
69908
|
-
create_service_specific_credential:
|
|
69909
|
-
create_user:
|
|
69910
|
-
create_virtual_mfa_device:
|
|
69911
|
-
deactivate_mfa_device:
|
|
69912
|
-
delete_access_key:
|
|
69913
|
-
delete_account_alias:
|
|
69914
|
-
delete_account_password_policy:
|
|
69915
|
-
delete_group:
|
|
69916
|
-
delete_group_policy:
|
|
69917
|
-
delete_instance_profile:
|
|
69918
|
-
delete_login_profile:
|
|
69919
|
-
delete_open_id_connect_provider:
|
|
69920
|
-
delete_policy:
|
|
69921
|
-
delete_policy_version:
|
|
69922
|
-
delete_role:
|
|
69923
|
-
delete_role_permissions_boundary:
|
|
69924
|
-
delete_role_policy:
|
|
69925
|
-
delete_saml_provider:
|
|
69926
|
-
delete_server_certificate:
|
|
69927
|
-
delete_service_linked_role:
|
|
69928
|
-
delete_service_specific_credential:
|
|
69929
|
-
delete_signing_certificate:
|
|
69930
|
-
delete_ssh_public_key:
|
|
69931
|
-
delete_user:
|
|
69932
|
-
delete_user_permissions_boundary:
|
|
69933
|
-
delete_user_policy:
|
|
69934
|
-
delete_virtual_mfa_device:
|
|
69935
|
-
detach_group_policy:
|
|
69936
|
-
detach_role_policy:
|
|
69937
|
-
detach_user_policy:
|
|
69938
|
-
disable_organizations_root_credentials_management:
|
|
69939
|
-
disable_organizations_root_sessions:
|
|
69940
|
-
disable_outbound_web_identity_federation:
|
|
69941
|
-
enable_mfa_device:
|
|
69942
|
-
enable_organizations_root_credentials_management:
|
|
69943
|
-
enable_organizations_root_sessions:
|
|
69944
|
-
enable_outbound_web_identity_federation:
|
|
69945
|
-
generate_credential_report:
|
|
69946
|
-
generate_organizations_access_report:
|
|
69947
|
-
generate_service_last_accessed_details:
|
|
69948
|
-
get_access_key_last_used:
|
|
69949
|
-
get_account_authorization_details:
|
|
69950
|
-
get_account_password_policy:
|
|
69951
|
-
get_account_summary:
|
|
69952
|
-
get_context_keys_for_custom_policy:
|
|
69953
|
-
get_context_keys_for_principal_policy:
|
|
69954
|
-
get_credential_report:
|
|
69955
|
-
get_delegation_request:
|
|
69956
|
-
get_group:
|
|
69957
|
-
get_group_policy:
|
|
69958
|
-
get_human_readable_summary:
|
|
69959
|
-
get_instance_profile:
|
|
69960
|
-
get_login_profile:
|
|
69961
|
-
get_mfa_device:
|
|
69962
|
-
get_open_id_connect_provider:
|
|
69963
|
-
get_organizations_access_report:
|
|
69964
|
-
get_outbound_web_identity_federation_info:
|
|
69965
|
-
get_policy:
|
|
69966
|
-
get_policy_version:
|
|
69967
|
-
get_role:
|
|
69968
|
-
get_role_policy:
|
|
69969
|
-
get_saml_provider:
|
|
69970
|
-
get_server_certificate:
|
|
69971
|
-
get_service_last_accessed_details:
|
|
69972
|
-
get_service_last_accessed_details_with_entities:
|
|
69973
|
-
get_service_linked_role_deletion_status:
|
|
69974
|
-
get_ssh_public_key:
|
|
69975
|
-
get_user:
|
|
69976
|
-
get_user_policy:
|
|
69977
|
-
list_access_keys:
|
|
69978
|
-
list_account_aliases:
|
|
69979
|
-
list_attached_group_policies:
|
|
69980
|
-
list_attached_role_policies:
|
|
69981
|
-
list_attached_user_policies:
|
|
69982
|
-
list_delegation_requests:
|
|
69983
|
-
list_entities_for_policy:
|
|
69984
|
-
list_group_policies:
|
|
69985
|
-
list_groups:
|
|
69986
|
-
list_groups_for_user:
|
|
69987
|
-
list_instance_profile_tags:
|
|
69988
|
-
list_instance_profiles:
|
|
69989
|
-
list_instance_profiles_for_role:
|
|
69990
|
-
list_mfa_device_tags:
|
|
69991
|
-
list_mfa_devices:
|
|
69992
|
-
list_open_id_connect_provider_tags:
|
|
69993
|
-
list_open_id_connect_providers:
|
|
69994
|
-
list_organizations_features:
|
|
69995
|
-
list_policies:
|
|
69996
|
-
list_policies_granting_service_access:
|
|
69997
|
-
list_policy_tags:
|
|
69998
|
-
list_policy_versions:
|
|
69999
|
-
list_role_policies:
|
|
70000
|
-
list_role_tags:
|
|
70001
|
-
list_roles:
|
|
70002
|
-
list_saml_provider_tags:
|
|
70003
|
-
list_saml_providers:
|
|
70004
|
-
list_server_certificate_tags:
|
|
70005
|
-
list_server_certificates:
|
|
70006
|
-
list_service_specific_credentials:
|
|
70007
|
-
list_signing_certificates:
|
|
70008
|
-
list_ssh_public_keys:
|
|
70009
|
-
list_user_policies:
|
|
70010
|
-
list_user_tags:
|
|
70011
|
-
list_users:
|
|
70012
|
-
list_virtual_mfa_devices:
|
|
70013
|
-
put_group_policy:
|
|
70014
|
-
put_role_permissions_boundary:
|
|
70015
|
-
put_role_policy:
|
|
70016
|
-
put_user_permissions_boundary:
|
|
70017
|
-
put_user_policy:
|
|
70018
|
-
reject_delegation_request:
|
|
70019
|
-
remove_client_id_from_open_id_connect_provider:
|
|
70020
|
-
remove_role_from_instance_profile:
|
|
70021
|
-
remove_user_from_group:
|
|
70022
|
-
reset_service_specific_credential:
|
|
70023
|
-
resync_mfa_device:
|
|
70024
|
-
send_delegation_token:
|
|
70025
|
-
set_default_policy_version:
|
|
70026
|
-
set_security_token_service_preferences:
|
|
70027
|
-
simulate_custom_policy:
|
|
70028
|
-
simulate_principal_policy:
|
|
70029
|
-
tag_instance_profile:
|
|
70030
|
-
tag_mfa_device:
|
|
70031
|
-
tag_open_id_connect_provider:
|
|
70032
|
-
tag_policy:
|
|
70033
|
-
tag_role:
|
|
70034
|
-
tag_saml_provider:
|
|
70035
|
-
tag_server_certificate:
|
|
70036
|
-
tag_user:
|
|
70037
|
-
untag_instance_profile:
|
|
70038
|
-
untag_mfa_device:
|
|
70039
|
-
untag_open_id_connect_provider:
|
|
70040
|
-
untag_policy:
|
|
70041
|
-
untag_role:
|
|
70042
|
-
untag_saml_provider:
|
|
70043
|
-
untag_server_certificate:
|
|
70044
|
-
untag_user:
|
|
70045
|
-
update_access_key:
|
|
70046
|
-
update_account_password_policy:
|
|
70047
|
-
update_assume_role_policy:
|
|
70048
|
-
update_delegation_request:
|
|
70049
|
-
update_group:
|
|
70050
|
-
update_login_profile:
|
|
70051
|
-
update_open_id_connect_provider_thumbprint:
|
|
70052
|
-
update_role:
|
|
70053
|
-
update_role_description:
|
|
70054
|
-
update_saml_provider:
|
|
70055
|
-
update_server_certificate:
|
|
70056
|
-
update_service_specific_credential:
|
|
70057
|
-
update_signing_certificate:
|
|
70058
|
-
update_ssh_public_key:
|
|
70059
|
-
update_user:
|
|
70060
|
-
upload_server_certificate:
|
|
70061
|
-
upload_signing_certificate:
|
|
70062
|
-
upload_ssh_public_key:
|
|
69952
|
+
accept_delegation_request: Sdk6.AcceptDelegationRequestCommand,
|
|
69953
|
+
add_client_id_to_open_id_connect_provider: Sdk6.AddClientIDToOpenIDConnectProviderCommand,
|
|
69954
|
+
add_role_to_instance_profile: Sdk6.AddRoleToInstanceProfileCommand,
|
|
69955
|
+
add_user_to_group: Sdk6.AddUserToGroupCommand,
|
|
69956
|
+
associate_delegation_request: Sdk6.AssociateDelegationRequestCommand,
|
|
69957
|
+
attach_group_policy: Sdk6.AttachGroupPolicyCommand,
|
|
69958
|
+
attach_role_policy: Sdk6.AttachRolePolicyCommand,
|
|
69959
|
+
attach_user_policy: Sdk6.AttachUserPolicyCommand,
|
|
69960
|
+
change_password: Sdk6.ChangePasswordCommand,
|
|
69961
|
+
create_access_key: Sdk6.CreateAccessKeyCommand,
|
|
69962
|
+
create_account_alias: Sdk6.CreateAccountAliasCommand,
|
|
69963
|
+
create_delegation_request: Sdk6.CreateDelegationRequestCommand,
|
|
69964
|
+
create_group: Sdk6.CreateGroupCommand,
|
|
69965
|
+
create_instance_profile: Sdk6.CreateInstanceProfileCommand,
|
|
69966
|
+
create_login_profile: Sdk6.CreateLoginProfileCommand,
|
|
69967
|
+
create_open_id_connect_provider: Sdk6.CreateOpenIDConnectProviderCommand,
|
|
69968
|
+
create_policy: Sdk6.CreatePolicyCommand,
|
|
69969
|
+
create_policy_version: Sdk6.CreatePolicyVersionCommand,
|
|
69970
|
+
create_role: Sdk6.CreateRoleCommand,
|
|
69971
|
+
create_saml_provider: Sdk6.CreateSAMLProviderCommand,
|
|
69972
|
+
create_service_linked_role: Sdk6.CreateServiceLinkedRoleCommand,
|
|
69973
|
+
create_service_specific_credential: Sdk6.CreateServiceSpecificCredentialCommand,
|
|
69974
|
+
create_user: Sdk6.CreateUserCommand,
|
|
69975
|
+
create_virtual_mfa_device: Sdk6.CreateVirtualMFADeviceCommand,
|
|
69976
|
+
deactivate_mfa_device: Sdk6.DeactivateMFADeviceCommand,
|
|
69977
|
+
delete_access_key: Sdk6.DeleteAccessKeyCommand,
|
|
69978
|
+
delete_account_alias: Sdk6.DeleteAccountAliasCommand,
|
|
69979
|
+
delete_account_password_policy: Sdk6.DeleteAccountPasswordPolicyCommand,
|
|
69980
|
+
delete_group: Sdk6.DeleteGroupCommand,
|
|
69981
|
+
delete_group_policy: Sdk6.DeleteGroupPolicyCommand,
|
|
69982
|
+
delete_instance_profile: Sdk6.DeleteInstanceProfileCommand,
|
|
69983
|
+
delete_login_profile: Sdk6.DeleteLoginProfileCommand,
|
|
69984
|
+
delete_open_id_connect_provider: Sdk6.DeleteOpenIDConnectProviderCommand,
|
|
69985
|
+
delete_policy: Sdk6.DeletePolicyCommand,
|
|
69986
|
+
delete_policy_version: Sdk6.DeletePolicyVersionCommand,
|
|
69987
|
+
delete_role: Sdk6.DeleteRoleCommand,
|
|
69988
|
+
delete_role_permissions_boundary: Sdk6.DeleteRolePermissionsBoundaryCommand,
|
|
69989
|
+
delete_role_policy: Sdk6.DeleteRolePolicyCommand,
|
|
69990
|
+
delete_saml_provider: Sdk6.DeleteSAMLProviderCommand,
|
|
69991
|
+
delete_server_certificate: Sdk6.DeleteServerCertificateCommand,
|
|
69992
|
+
delete_service_linked_role: Sdk6.DeleteServiceLinkedRoleCommand,
|
|
69993
|
+
delete_service_specific_credential: Sdk6.DeleteServiceSpecificCredentialCommand,
|
|
69994
|
+
delete_signing_certificate: Sdk6.DeleteSigningCertificateCommand,
|
|
69995
|
+
delete_ssh_public_key: Sdk6.DeleteSSHPublicKeyCommand,
|
|
69996
|
+
delete_user: Sdk6.DeleteUserCommand,
|
|
69997
|
+
delete_user_permissions_boundary: Sdk6.DeleteUserPermissionsBoundaryCommand,
|
|
69998
|
+
delete_user_policy: Sdk6.DeleteUserPolicyCommand,
|
|
69999
|
+
delete_virtual_mfa_device: Sdk6.DeleteVirtualMFADeviceCommand,
|
|
70000
|
+
detach_group_policy: Sdk6.DetachGroupPolicyCommand,
|
|
70001
|
+
detach_role_policy: Sdk6.DetachRolePolicyCommand,
|
|
70002
|
+
detach_user_policy: Sdk6.DetachUserPolicyCommand,
|
|
70003
|
+
disable_organizations_root_credentials_management: Sdk6.DisableOrganizationsRootCredentialsManagementCommand,
|
|
70004
|
+
disable_organizations_root_sessions: Sdk6.DisableOrganizationsRootSessionsCommand,
|
|
70005
|
+
disable_outbound_web_identity_federation: Sdk6.DisableOutboundWebIdentityFederationCommand,
|
|
70006
|
+
enable_mfa_device: Sdk6.EnableMFADeviceCommand,
|
|
70007
|
+
enable_organizations_root_credentials_management: Sdk6.EnableOrganizationsRootCredentialsManagementCommand,
|
|
70008
|
+
enable_organizations_root_sessions: Sdk6.EnableOrganizationsRootSessionsCommand,
|
|
70009
|
+
enable_outbound_web_identity_federation: Sdk6.EnableOutboundWebIdentityFederationCommand,
|
|
70010
|
+
generate_credential_report: Sdk6.GenerateCredentialReportCommand,
|
|
70011
|
+
generate_organizations_access_report: Sdk6.GenerateOrganizationsAccessReportCommand,
|
|
70012
|
+
generate_service_last_accessed_details: Sdk6.GenerateServiceLastAccessedDetailsCommand,
|
|
70013
|
+
get_access_key_last_used: Sdk6.GetAccessKeyLastUsedCommand,
|
|
70014
|
+
get_account_authorization_details: Sdk6.GetAccountAuthorizationDetailsCommand,
|
|
70015
|
+
get_account_password_policy: Sdk6.GetAccountPasswordPolicyCommand,
|
|
70016
|
+
get_account_summary: Sdk6.GetAccountSummaryCommand,
|
|
70017
|
+
get_context_keys_for_custom_policy: Sdk6.GetContextKeysForCustomPolicyCommand,
|
|
70018
|
+
get_context_keys_for_principal_policy: Sdk6.GetContextKeysForPrincipalPolicyCommand,
|
|
70019
|
+
get_credential_report: Sdk6.GetCredentialReportCommand,
|
|
70020
|
+
get_delegation_request: Sdk6.GetDelegationRequestCommand,
|
|
70021
|
+
get_group: Sdk6.GetGroupCommand,
|
|
70022
|
+
get_group_policy: Sdk6.GetGroupPolicyCommand,
|
|
70023
|
+
get_human_readable_summary: Sdk6.GetHumanReadableSummaryCommand,
|
|
70024
|
+
get_instance_profile: Sdk6.GetInstanceProfileCommand,
|
|
70025
|
+
get_login_profile: Sdk6.GetLoginProfileCommand,
|
|
70026
|
+
get_mfa_device: Sdk6.GetMFADeviceCommand,
|
|
70027
|
+
get_open_id_connect_provider: Sdk6.GetOpenIDConnectProviderCommand,
|
|
70028
|
+
get_organizations_access_report: Sdk6.GetOrganizationsAccessReportCommand,
|
|
70029
|
+
get_outbound_web_identity_federation_info: Sdk6.GetOutboundWebIdentityFederationInfoCommand,
|
|
70030
|
+
get_policy: Sdk6.GetPolicyCommand,
|
|
70031
|
+
get_policy_version: Sdk6.GetPolicyVersionCommand,
|
|
70032
|
+
get_role: Sdk6.GetRoleCommand,
|
|
70033
|
+
get_role_policy: Sdk6.GetRolePolicyCommand,
|
|
70034
|
+
get_saml_provider: Sdk6.GetSAMLProviderCommand,
|
|
70035
|
+
get_server_certificate: Sdk6.GetServerCertificateCommand,
|
|
70036
|
+
get_service_last_accessed_details: Sdk6.GetServiceLastAccessedDetailsCommand,
|
|
70037
|
+
get_service_last_accessed_details_with_entities: Sdk6.GetServiceLastAccessedDetailsWithEntitiesCommand,
|
|
70038
|
+
get_service_linked_role_deletion_status: Sdk6.GetServiceLinkedRoleDeletionStatusCommand,
|
|
70039
|
+
get_ssh_public_key: Sdk6.GetSSHPublicKeyCommand,
|
|
70040
|
+
get_user: Sdk6.GetUserCommand,
|
|
70041
|
+
get_user_policy: Sdk6.GetUserPolicyCommand,
|
|
70042
|
+
list_access_keys: Sdk6.ListAccessKeysCommand,
|
|
70043
|
+
list_account_aliases: Sdk6.ListAccountAliasesCommand,
|
|
70044
|
+
list_attached_group_policies: Sdk6.ListAttachedGroupPoliciesCommand,
|
|
70045
|
+
list_attached_role_policies: Sdk6.ListAttachedRolePoliciesCommand,
|
|
70046
|
+
list_attached_user_policies: Sdk6.ListAttachedUserPoliciesCommand,
|
|
70047
|
+
list_delegation_requests: Sdk6.ListDelegationRequestsCommand,
|
|
70048
|
+
list_entities_for_policy: Sdk6.ListEntitiesForPolicyCommand,
|
|
70049
|
+
list_group_policies: Sdk6.ListGroupPoliciesCommand,
|
|
70050
|
+
list_groups: Sdk6.ListGroupsCommand,
|
|
70051
|
+
list_groups_for_user: Sdk6.ListGroupsForUserCommand,
|
|
70052
|
+
list_instance_profile_tags: Sdk6.ListInstanceProfileTagsCommand,
|
|
70053
|
+
list_instance_profiles: Sdk6.ListInstanceProfilesCommand,
|
|
70054
|
+
list_instance_profiles_for_role: Sdk6.ListInstanceProfilesForRoleCommand,
|
|
70055
|
+
list_mfa_device_tags: Sdk6.ListMFADeviceTagsCommand,
|
|
70056
|
+
list_mfa_devices: Sdk6.ListMFADevicesCommand,
|
|
70057
|
+
list_open_id_connect_provider_tags: Sdk6.ListOpenIDConnectProviderTagsCommand,
|
|
70058
|
+
list_open_id_connect_providers: Sdk6.ListOpenIDConnectProvidersCommand,
|
|
70059
|
+
list_organizations_features: Sdk6.ListOrganizationsFeaturesCommand,
|
|
70060
|
+
list_policies: Sdk6.ListPoliciesCommand,
|
|
70061
|
+
list_policies_granting_service_access: Sdk6.ListPoliciesGrantingServiceAccessCommand,
|
|
70062
|
+
list_policy_tags: Sdk6.ListPolicyTagsCommand,
|
|
70063
|
+
list_policy_versions: Sdk6.ListPolicyVersionsCommand,
|
|
70064
|
+
list_role_policies: Sdk6.ListRolePoliciesCommand,
|
|
70065
|
+
list_role_tags: Sdk6.ListRoleTagsCommand,
|
|
70066
|
+
list_roles: Sdk6.ListRolesCommand,
|
|
70067
|
+
list_saml_provider_tags: Sdk6.ListSAMLProviderTagsCommand,
|
|
70068
|
+
list_saml_providers: Sdk6.ListSAMLProvidersCommand,
|
|
70069
|
+
list_server_certificate_tags: Sdk6.ListServerCertificateTagsCommand,
|
|
70070
|
+
list_server_certificates: Sdk6.ListServerCertificatesCommand,
|
|
70071
|
+
list_service_specific_credentials: Sdk6.ListServiceSpecificCredentialsCommand,
|
|
70072
|
+
list_signing_certificates: Sdk6.ListSigningCertificatesCommand,
|
|
70073
|
+
list_ssh_public_keys: Sdk6.ListSSHPublicKeysCommand,
|
|
70074
|
+
list_user_policies: Sdk6.ListUserPoliciesCommand,
|
|
70075
|
+
list_user_tags: Sdk6.ListUserTagsCommand,
|
|
70076
|
+
list_users: Sdk6.ListUsersCommand,
|
|
70077
|
+
list_virtual_mfa_devices: Sdk6.ListVirtualMFADevicesCommand,
|
|
70078
|
+
put_group_policy: Sdk6.PutGroupPolicyCommand,
|
|
70079
|
+
put_role_permissions_boundary: Sdk6.PutRolePermissionsBoundaryCommand,
|
|
70080
|
+
put_role_policy: Sdk6.PutRolePolicyCommand,
|
|
70081
|
+
put_user_permissions_boundary: Sdk6.PutUserPermissionsBoundaryCommand,
|
|
70082
|
+
put_user_policy: Sdk6.PutUserPolicyCommand,
|
|
70083
|
+
reject_delegation_request: Sdk6.RejectDelegationRequestCommand,
|
|
70084
|
+
remove_client_id_from_open_id_connect_provider: Sdk6.RemoveClientIDFromOpenIDConnectProviderCommand,
|
|
70085
|
+
remove_role_from_instance_profile: Sdk6.RemoveRoleFromInstanceProfileCommand,
|
|
70086
|
+
remove_user_from_group: Sdk6.RemoveUserFromGroupCommand,
|
|
70087
|
+
reset_service_specific_credential: Sdk6.ResetServiceSpecificCredentialCommand,
|
|
70088
|
+
resync_mfa_device: Sdk6.ResyncMFADeviceCommand,
|
|
70089
|
+
send_delegation_token: Sdk6.SendDelegationTokenCommand,
|
|
70090
|
+
set_default_policy_version: Sdk6.SetDefaultPolicyVersionCommand,
|
|
70091
|
+
set_security_token_service_preferences: Sdk6.SetSecurityTokenServicePreferencesCommand,
|
|
70092
|
+
simulate_custom_policy: Sdk6.SimulateCustomPolicyCommand,
|
|
70093
|
+
simulate_principal_policy: Sdk6.SimulatePrincipalPolicyCommand,
|
|
70094
|
+
tag_instance_profile: Sdk6.TagInstanceProfileCommand,
|
|
70095
|
+
tag_mfa_device: Sdk6.TagMFADeviceCommand,
|
|
70096
|
+
tag_open_id_connect_provider: Sdk6.TagOpenIDConnectProviderCommand,
|
|
70097
|
+
tag_policy: Sdk6.TagPolicyCommand,
|
|
70098
|
+
tag_role: Sdk6.TagRoleCommand,
|
|
70099
|
+
tag_saml_provider: Sdk6.TagSAMLProviderCommand,
|
|
70100
|
+
tag_server_certificate: Sdk6.TagServerCertificateCommand,
|
|
70101
|
+
tag_user: Sdk6.TagUserCommand,
|
|
70102
|
+
untag_instance_profile: Sdk6.UntagInstanceProfileCommand,
|
|
70103
|
+
untag_mfa_device: Sdk6.UntagMFADeviceCommand,
|
|
70104
|
+
untag_open_id_connect_provider: Sdk6.UntagOpenIDConnectProviderCommand,
|
|
70105
|
+
untag_policy: Sdk6.UntagPolicyCommand,
|
|
70106
|
+
untag_role: Sdk6.UntagRoleCommand,
|
|
70107
|
+
untag_saml_provider: Sdk6.UntagSAMLProviderCommand,
|
|
70108
|
+
untag_server_certificate: Sdk6.UntagServerCertificateCommand,
|
|
70109
|
+
untag_user: Sdk6.UntagUserCommand,
|
|
70110
|
+
update_access_key: Sdk6.UpdateAccessKeyCommand,
|
|
70111
|
+
update_account_password_policy: Sdk6.UpdateAccountPasswordPolicyCommand,
|
|
70112
|
+
update_assume_role_policy: Sdk6.UpdateAssumeRolePolicyCommand,
|
|
70113
|
+
update_delegation_request: Sdk6.UpdateDelegationRequestCommand,
|
|
70114
|
+
update_group: Sdk6.UpdateGroupCommand,
|
|
70115
|
+
update_login_profile: Sdk6.UpdateLoginProfileCommand,
|
|
70116
|
+
update_open_id_connect_provider_thumbprint: Sdk6.UpdateOpenIDConnectProviderThumbprintCommand,
|
|
70117
|
+
update_role: Sdk6.UpdateRoleCommand,
|
|
70118
|
+
update_role_description: Sdk6.UpdateRoleDescriptionCommand,
|
|
70119
|
+
update_saml_provider: Sdk6.UpdateSAMLProviderCommand,
|
|
70120
|
+
update_server_certificate: Sdk6.UpdateServerCertificateCommand,
|
|
70121
|
+
update_service_specific_credential: Sdk6.UpdateServiceSpecificCredentialCommand,
|
|
70122
|
+
update_signing_certificate: Sdk6.UpdateSigningCertificateCommand,
|
|
70123
|
+
update_ssh_public_key: Sdk6.UpdateSSHPublicKeyCommand,
|
|
70124
|
+
update_user: Sdk6.UpdateUserCommand,
|
|
70125
|
+
upload_server_certificate: Sdk6.UploadServerCertificateCommand,
|
|
70126
|
+
upload_signing_certificate: Sdk6.UploadSigningCertificateCommand,
|
|
70127
|
+
upload_ssh_public_key: Sdk6.UploadSSHPublicKeyCommand
|
|
70063
70128
|
};
|
|
70064
70129
|
|
|
70065
70130
|
// src/aws/clients/lambda.ts
|
|
@@ -70067,25 +70132,25 @@ var lambda_exports = {};
|
|
|
70067
70132
|
__export(lambda_exports, {
|
|
70068
70133
|
LambdaClient: () => LambdaClient2,
|
|
70069
70134
|
LambdaError: () => LambdaError,
|
|
70070
|
-
make: () =>
|
|
70135
|
+
make: () => make74
|
|
70071
70136
|
});
|
|
70072
|
-
import * as
|
|
70137
|
+
import * as Sdk7 from "@aws-sdk/client-lambda";
|
|
70073
70138
|
var LambdaClient2 = class _LambdaClient extends Tag2("LambdaClient")() {
|
|
70074
70139
|
static Default = (config2) => effect(
|
|
70075
70140
|
_LambdaClient,
|
|
70076
70141
|
gen3(function* () {
|
|
70077
|
-
return new
|
|
70142
|
+
return new Sdk7.LambdaClient(config2 ?? {});
|
|
70078
70143
|
})
|
|
70079
70144
|
);
|
|
70080
70145
|
};
|
|
70081
|
-
var
|
|
70146
|
+
var make74 = fn("aws_Lambda")(function* (actionName, actionInput) {
|
|
70082
70147
|
yield* logDebug2(`aws_Lambda.${actionName}`, { input: actionInput });
|
|
70083
70148
|
const client = yield* LambdaClient2;
|
|
70084
70149
|
const command = new LambdaCommandFactory[actionName](actionInput);
|
|
70085
70150
|
const result = yield* tryPromise2({
|
|
70086
70151
|
try: () => client.send(command),
|
|
70087
70152
|
catch: (error4) => {
|
|
70088
|
-
if (error4 instanceof
|
|
70153
|
+
if (error4 instanceof Sdk7.LambdaServiceException) {
|
|
70089
70154
|
return new LambdaError(error4, actionName);
|
|
70090
70155
|
}
|
|
70091
70156
|
throw error4;
|
|
@@ -70108,91 +70173,91 @@ var LambdaError = class {
|
|
|
70108
70173
|
}
|
|
70109
70174
|
};
|
|
70110
70175
|
var LambdaCommandFactory = {
|
|
70111
|
-
add_layer_version_permission:
|
|
70112
|
-
add_permission:
|
|
70113
|
-
checkpoint_durable_execution:
|
|
70114
|
-
create_alias:
|
|
70115
|
-
create_capacity_provider:
|
|
70116
|
-
create_code_signing_config:
|
|
70117
|
-
create_event_source_mapping:
|
|
70118
|
-
create_function:
|
|
70119
|
-
create_function_url_config:
|
|
70120
|
-
delete_alias:
|
|
70121
|
-
delete_capacity_provider:
|
|
70122
|
-
delete_code_signing_config:
|
|
70123
|
-
delete_event_source_mapping:
|
|
70124
|
-
delete_function:
|
|
70125
|
-
delete_function_code_signing_config:
|
|
70126
|
-
delete_function_concurrency:
|
|
70127
|
-
delete_function_event_invoke_config:
|
|
70128
|
-
delete_function_url_config:
|
|
70129
|
-
delete_layer_version:
|
|
70130
|
-
delete_provisioned_concurrency_config:
|
|
70131
|
-
get_account_settings:
|
|
70132
|
-
get_alias:
|
|
70133
|
-
get_capacity_provider:
|
|
70134
|
-
get_code_signing_config:
|
|
70135
|
-
get_durable_execution:
|
|
70136
|
-
get_durable_execution_history:
|
|
70137
|
-
get_durable_execution_state:
|
|
70138
|
-
get_event_source_mapping:
|
|
70139
|
-
get_function:
|
|
70140
|
-
get_function_code_signing_config:
|
|
70141
|
-
get_function_concurrency:
|
|
70142
|
-
get_function_configuration:
|
|
70143
|
-
get_function_event_invoke_config:
|
|
70144
|
-
get_function_recursion_config:
|
|
70145
|
-
get_function_scaling_config:
|
|
70146
|
-
get_function_url_config:
|
|
70147
|
-
get_layer_version:
|
|
70148
|
-
get_layer_version_by_arn:
|
|
70149
|
-
get_layer_version_policy:
|
|
70150
|
-
get_policy:
|
|
70151
|
-
get_provisioned_concurrency_config:
|
|
70152
|
-
get_runtime_management_config:
|
|
70153
|
-
invoke:
|
|
70154
|
-
invoke_async:
|
|
70155
|
-
invoke_with_response_stream:
|
|
70156
|
-
list_aliases:
|
|
70157
|
-
list_capacity_providers:
|
|
70158
|
-
list_code_signing_configs:
|
|
70159
|
-
list_durable_executions_by_function:
|
|
70160
|
-
list_event_source_mappings:
|
|
70161
|
-
list_function_event_invoke_configs:
|
|
70162
|
-
list_function_url_configs:
|
|
70163
|
-
list_function_versions_by_capacity_provider:
|
|
70164
|
-
list_functions:
|
|
70165
|
-
list_functions_by_code_signing_config:
|
|
70166
|
-
list_layer_versions:
|
|
70167
|
-
list_layers:
|
|
70168
|
-
list_provisioned_concurrency_configs:
|
|
70169
|
-
list_tags:
|
|
70170
|
-
list_versions_by_function:
|
|
70171
|
-
publish_layer_version:
|
|
70172
|
-
publish_version:
|
|
70173
|
-
put_function_code_signing_config:
|
|
70174
|
-
put_function_concurrency:
|
|
70175
|
-
put_function_event_invoke_config:
|
|
70176
|
-
put_function_recursion_config:
|
|
70177
|
-
put_function_scaling_config:
|
|
70178
|
-
put_provisioned_concurrency_config:
|
|
70179
|
-
put_runtime_management_config:
|
|
70180
|
-
remove_layer_version_permission:
|
|
70181
|
-
remove_permission:
|
|
70182
|
-
send_durable_execution_callback_failure:
|
|
70183
|
-
send_durable_execution_callback_heartbeat:
|
|
70184
|
-
send_durable_execution_callback_success:
|
|
70185
|
-
stop_durable_execution:
|
|
70186
|
-
tag_resource:
|
|
70187
|
-
untag_resource:
|
|
70188
|
-
update_alias:
|
|
70189
|
-
update_capacity_provider:
|
|
70190
|
-
update_code_signing_config:
|
|
70191
|
-
update_event_source_mapping:
|
|
70192
|
-
update_function_code:
|
|
70193
|
-
update_function_configuration:
|
|
70194
|
-
update_function_event_invoke_config:
|
|
70195
|
-
update_function_url_config:
|
|
70176
|
+
add_layer_version_permission: Sdk7.AddLayerVersionPermissionCommand,
|
|
70177
|
+
add_permission: Sdk7.AddPermissionCommand,
|
|
70178
|
+
checkpoint_durable_execution: Sdk7.CheckpointDurableExecutionCommand,
|
|
70179
|
+
create_alias: Sdk7.CreateAliasCommand,
|
|
70180
|
+
create_capacity_provider: Sdk7.CreateCapacityProviderCommand,
|
|
70181
|
+
create_code_signing_config: Sdk7.CreateCodeSigningConfigCommand,
|
|
70182
|
+
create_event_source_mapping: Sdk7.CreateEventSourceMappingCommand,
|
|
70183
|
+
create_function: Sdk7.CreateFunctionCommand,
|
|
70184
|
+
create_function_url_config: Sdk7.CreateFunctionUrlConfigCommand,
|
|
70185
|
+
delete_alias: Sdk7.DeleteAliasCommand,
|
|
70186
|
+
delete_capacity_provider: Sdk7.DeleteCapacityProviderCommand,
|
|
70187
|
+
delete_code_signing_config: Sdk7.DeleteCodeSigningConfigCommand,
|
|
70188
|
+
delete_event_source_mapping: Sdk7.DeleteEventSourceMappingCommand,
|
|
70189
|
+
delete_function: Sdk7.DeleteFunctionCommand,
|
|
70190
|
+
delete_function_code_signing_config: Sdk7.DeleteFunctionCodeSigningConfigCommand,
|
|
70191
|
+
delete_function_concurrency: Sdk7.DeleteFunctionConcurrencyCommand,
|
|
70192
|
+
delete_function_event_invoke_config: Sdk7.DeleteFunctionEventInvokeConfigCommand,
|
|
70193
|
+
delete_function_url_config: Sdk7.DeleteFunctionUrlConfigCommand,
|
|
70194
|
+
delete_layer_version: Sdk7.DeleteLayerVersionCommand,
|
|
70195
|
+
delete_provisioned_concurrency_config: Sdk7.DeleteProvisionedConcurrencyConfigCommand,
|
|
70196
|
+
get_account_settings: Sdk7.GetAccountSettingsCommand,
|
|
70197
|
+
get_alias: Sdk7.GetAliasCommand,
|
|
70198
|
+
get_capacity_provider: Sdk7.GetCapacityProviderCommand,
|
|
70199
|
+
get_code_signing_config: Sdk7.GetCodeSigningConfigCommand,
|
|
70200
|
+
get_durable_execution: Sdk7.GetDurableExecutionCommand,
|
|
70201
|
+
get_durable_execution_history: Sdk7.GetDurableExecutionHistoryCommand,
|
|
70202
|
+
get_durable_execution_state: Sdk7.GetDurableExecutionStateCommand,
|
|
70203
|
+
get_event_source_mapping: Sdk7.GetEventSourceMappingCommand,
|
|
70204
|
+
get_function: Sdk7.GetFunctionCommand,
|
|
70205
|
+
get_function_code_signing_config: Sdk7.GetFunctionCodeSigningConfigCommand,
|
|
70206
|
+
get_function_concurrency: Sdk7.GetFunctionConcurrencyCommand,
|
|
70207
|
+
get_function_configuration: Sdk7.GetFunctionConfigurationCommand,
|
|
70208
|
+
get_function_event_invoke_config: Sdk7.GetFunctionEventInvokeConfigCommand,
|
|
70209
|
+
get_function_recursion_config: Sdk7.GetFunctionRecursionConfigCommand,
|
|
70210
|
+
get_function_scaling_config: Sdk7.GetFunctionScalingConfigCommand,
|
|
70211
|
+
get_function_url_config: Sdk7.GetFunctionUrlConfigCommand,
|
|
70212
|
+
get_layer_version: Sdk7.GetLayerVersionCommand,
|
|
70213
|
+
get_layer_version_by_arn: Sdk7.GetLayerVersionByArnCommand,
|
|
70214
|
+
get_layer_version_policy: Sdk7.GetLayerVersionPolicyCommand,
|
|
70215
|
+
get_policy: Sdk7.GetPolicyCommand,
|
|
70216
|
+
get_provisioned_concurrency_config: Sdk7.GetProvisionedConcurrencyConfigCommand,
|
|
70217
|
+
get_runtime_management_config: Sdk7.GetRuntimeManagementConfigCommand,
|
|
70218
|
+
invoke: Sdk7.InvokeCommand,
|
|
70219
|
+
invoke_async: Sdk7.InvokeAsyncCommand,
|
|
70220
|
+
invoke_with_response_stream: Sdk7.InvokeWithResponseStreamCommand,
|
|
70221
|
+
list_aliases: Sdk7.ListAliasesCommand,
|
|
70222
|
+
list_capacity_providers: Sdk7.ListCapacityProvidersCommand,
|
|
70223
|
+
list_code_signing_configs: Sdk7.ListCodeSigningConfigsCommand,
|
|
70224
|
+
list_durable_executions_by_function: Sdk7.ListDurableExecutionsByFunctionCommand,
|
|
70225
|
+
list_event_source_mappings: Sdk7.ListEventSourceMappingsCommand,
|
|
70226
|
+
list_function_event_invoke_configs: Sdk7.ListFunctionEventInvokeConfigsCommand,
|
|
70227
|
+
list_function_url_configs: Sdk7.ListFunctionUrlConfigsCommand,
|
|
70228
|
+
list_function_versions_by_capacity_provider: Sdk7.ListFunctionVersionsByCapacityProviderCommand,
|
|
70229
|
+
list_functions: Sdk7.ListFunctionsCommand,
|
|
70230
|
+
list_functions_by_code_signing_config: Sdk7.ListFunctionsByCodeSigningConfigCommand,
|
|
70231
|
+
list_layer_versions: Sdk7.ListLayerVersionsCommand,
|
|
70232
|
+
list_layers: Sdk7.ListLayersCommand,
|
|
70233
|
+
list_provisioned_concurrency_configs: Sdk7.ListProvisionedConcurrencyConfigsCommand,
|
|
70234
|
+
list_tags: Sdk7.ListTagsCommand,
|
|
70235
|
+
list_versions_by_function: Sdk7.ListVersionsByFunctionCommand,
|
|
70236
|
+
publish_layer_version: Sdk7.PublishLayerVersionCommand,
|
|
70237
|
+
publish_version: Sdk7.PublishVersionCommand,
|
|
70238
|
+
put_function_code_signing_config: Sdk7.PutFunctionCodeSigningConfigCommand,
|
|
70239
|
+
put_function_concurrency: Sdk7.PutFunctionConcurrencyCommand,
|
|
70240
|
+
put_function_event_invoke_config: Sdk7.PutFunctionEventInvokeConfigCommand,
|
|
70241
|
+
put_function_recursion_config: Sdk7.PutFunctionRecursionConfigCommand,
|
|
70242
|
+
put_function_scaling_config: Sdk7.PutFunctionScalingConfigCommand,
|
|
70243
|
+
put_provisioned_concurrency_config: Sdk7.PutProvisionedConcurrencyConfigCommand,
|
|
70244
|
+
put_runtime_management_config: Sdk7.PutRuntimeManagementConfigCommand,
|
|
70245
|
+
remove_layer_version_permission: Sdk7.RemoveLayerVersionPermissionCommand,
|
|
70246
|
+
remove_permission: Sdk7.RemovePermissionCommand,
|
|
70247
|
+
send_durable_execution_callback_failure: Sdk7.SendDurableExecutionCallbackFailureCommand,
|
|
70248
|
+
send_durable_execution_callback_heartbeat: Sdk7.SendDurableExecutionCallbackHeartbeatCommand,
|
|
70249
|
+
send_durable_execution_callback_success: Sdk7.SendDurableExecutionCallbackSuccessCommand,
|
|
70250
|
+
stop_durable_execution: Sdk7.StopDurableExecutionCommand,
|
|
70251
|
+
tag_resource: Sdk7.TagResourceCommand,
|
|
70252
|
+
untag_resource: Sdk7.UntagResourceCommand,
|
|
70253
|
+
update_alias: Sdk7.UpdateAliasCommand,
|
|
70254
|
+
update_capacity_provider: Sdk7.UpdateCapacityProviderCommand,
|
|
70255
|
+
update_code_signing_config: Sdk7.UpdateCodeSigningConfigCommand,
|
|
70256
|
+
update_event_source_mapping: Sdk7.UpdateEventSourceMappingCommand,
|
|
70257
|
+
update_function_code: Sdk7.UpdateFunctionCodeCommand,
|
|
70258
|
+
update_function_configuration: Sdk7.UpdateFunctionConfigurationCommand,
|
|
70259
|
+
update_function_event_invoke_config: Sdk7.UpdateFunctionEventInvokeConfigCommand,
|
|
70260
|
+
update_function_url_config: Sdk7.UpdateFunctionUrlConfigCommand
|
|
70196
70261
|
};
|
|
70197
70262
|
|
|
70198
70263
|
// src/aws/clients/resource-groups-tagging-api.ts
|
|
@@ -70200,25 +70265,25 @@ var resource_groups_tagging_api_exports = {};
|
|
|
70200
70265
|
__export(resource_groups_tagging_api_exports, {
|
|
70201
70266
|
ResourceGroupsTaggingAPIClient: () => ResourceGroupsTaggingAPIClient2,
|
|
70202
70267
|
ResourceGroupsTaggingAPIError: () => ResourceGroupsTaggingAPIError,
|
|
70203
|
-
make: () =>
|
|
70268
|
+
make: () => make75
|
|
70204
70269
|
});
|
|
70205
|
-
import * as
|
|
70270
|
+
import * as Sdk8 from "@aws-sdk/client-resource-groups-tagging-api";
|
|
70206
70271
|
var ResourceGroupsTaggingAPIClient2 = class _ResourceGroupsTaggingAPIClient extends Tag2("ResourceGroupsTaggingAPIClient")() {
|
|
70207
70272
|
static Default = (config2) => effect(
|
|
70208
70273
|
_ResourceGroupsTaggingAPIClient,
|
|
70209
70274
|
gen3(function* () {
|
|
70210
|
-
return new
|
|
70275
|
+
return new Sdk8.ResourceGroupsTaggingAPIClient(config2 ?? {});
|
|
70211
70276
|
})
|
|
70212
70277
|
);
|
|
70213
70278
|
};
|
|
70214
|
-
var
|
|
70279
|
+
var make75 = fn("aws_ResourceGroupsTaggingAPI")(function* (actionName, actionInput) {
|
|
70215
70280
|
yield* logDebug2(`aws_ResourceGroupsTaggingAPI.${actionName}`, { input: actionInput });
|
|
70216
70281
|
const client = yield* ResourceGroupsTaggingAPIClient2;
|
|
70217
70282
|
const command = new ResourceGroupsTaggingAPICommandFactory[actionName](actionInput);
|
|
70218
70283
|
const result = yield* tryPromise2({
|
|
70219
70284
|
try: () => client.send(command),
|
|
70220
70285
|
catch: (error4) => {
|
|
70221
|
-
if (error4 instanceof
|
|
70286
|
+
if (error4 instanceof Sdk8.ResourceGroupsTaggingAPIServiceException) {
|
|
70222
70287
|
return new ResourceGroupsTaggingAPIError(error4, actionName);
|
|
70223
70288
|
}
|
|
70224
70289
|
throw error4;
|
|
@@ -70241,15 +70306,15 @@ var ResourceGroupsTaggingAPIError = class {
|
|
|
70241
70306
|
}
|
|
70242
70307
|
};
|
|
70243
70308
|
var ResourceGroupsTaggingAPICommandFactory = {
|
|
70244
|
-
describe_report_creation:
|
|
70245
|
-
get_compliance_summary:
|
|
70246
|
-
get_resources:
|
|
70247
|
-
get_tag_keys:
|
|
70248
|
-
get_tag_values:
|
|
70249
|
-
list_required_tags:
|
|
70250
|
-
start_report_creation:
|
|
70251
|
-
tag_resources:
|
|
70252
|
-
untag_resources:
|
|
70309
|
+
describe_report_creation: Sdk8.DescribeReportCreationCommand,
|
|
70310
|
+
get_compliance_summary: Sdk8.GetComplianceSummaryCommand,
|
|
70311
|
+
get_resources: Sdk8.GetResourcesCommand,
|
|
70312
|
+
get_tag_keys: Sdk8.GetTagKeysCommand,
|
|
70313
|
+
get_tag_values: Sdk8.GetTagValuesCommand,
|
|
70314
|
+
list_required_tags: Sdk8.ListRequiredTagsCommand,
|
|
70315
|
+
start_report_creation: Sdk8.StartReportCreationCommand,
|
|
70316
|
+
tag_resources: Sdk8.TagResourcesCommand,
|
|
70317
|
+
untag_resources: Sdk8.UntagResourcesCommand
|
|
70253
70318
|
};
|
|
70254
70319
|
|
|
70255
70320
|
// src/aws/clients/s3.ts
|
|
@@ -70257,25 +70322,25 @@ var s3_exports = {};
|
|
|
70257
70322
|
__export(s3_exports, {
|
|
70258
70323
|
S3Client: () => S3Client2,
|
|
70259
70324
|
S3Error: () => S3Error,
|
|
70260
|
-
make: () =>
|
|
70325
|
+
make: () => make76
|
|
70261
70326
|
});
|
|
70262
|
-
import * as
|
|
70327
|
+
import * as Sdk9 from "@aws-sdk/client-s3";
|
|
70263
70328
|
var S3Client2 = class _S3Client extends Tag2("S3Client")() {
|
|
70264
70329
|
static Default = (config2) => effect(
|
|
70265
70330
|
_S3Client,
|
|
70266
70331
|
gen3(function* () {
|
|
70267
|
-
return new
|
|
70332
|
+
return new Sdk9.S3Client(config2 ?? {});
|
|
70268
70333
|
})
|
|
70269
70334
|
);
|
|
70270
70335
|
};
|
|
70271
|
-
var
|
|
70336
|
+
var make76 = fn("aws_S3")(function* (actionName, actionInput) {
|
|
70272
70337
|
yield* logDebug2(`aws_S3.${actionName}`, { input: actionInput });
|
|
70273
70338
|
const client = yield* S3Client2;
|
|
70274
70339
|
const command = new S3CommandFactory[actionName](actionInput);
|
|
70275
70340
|
const result = yield* tryPromise2({
|
|
70276
70341
|
try: () => client.send(command),
|
|
70277
70342
|
catch: (error4) => {
|
|
70278
|
-
if (error4 instanceof
|
|
70343
|
+
if (error4 instanceof Sdk9.S3ServiceException) {
|
|
70279
70344
|
return new S3Error(error4, actionName);
|
|
70280
70345
|
}
|
|
70281
70346
|
throw error4;
|
|
@@ -70298,113 +70363,113 @@ var S3Error = class {
|
|
|
70298
70363
|
}
|
|
70299
70364
|
};
|
|
70300
70365
|
var S3CommandFactory = {
|
|
70301
|
-
abort_multipart_upload:
|
|
70302
|
-
complete_multipart_upload:
|
|
70303
|
-
copy_object:
|
|
70304
|
-
create_bucket:
|
|
70305
|
-
create_bucket_metadata_configuration:
|
|
70306
|
-
create_bucket_metadata_table_configuration:
|
|
70307
|
-
create_multipart_upload:
|
|
70308
|
-
create_session:
|
|
70309
|
-
delete_bucket:
|
|
70310
|
-
delete_bucket_analytics_configuration:
|
|
70311
|
-
delete_bucket_cors:
|
|
70312
|
-
delete_bucket_encryption:
|
|
70313
|
-
delete_bucket_intelligent_tiering_configuration:
|
|
70314
|
-
delete_bucket_inventory_configuration:
|
|
70315
|
-
delete_bucket_lifecycle:
|
|
70316
|
-
delete_bucket_metadata_configuration:
|
|
70317
|
-
delete_bucket_metadata_table_configuration:
|
|
70318
|
-
delete_bucket_metrics_configuration:
|
|
70319
|
-
delete_bucket_ownership_controls:
|
|
70320
|
-
delete_bucket_policy:
|
|
70321
|
-
delete_bucket_replication:
|
|
70322
|
-
delete_bucket_tagging:
|
|
70323
|
-
delete_bucket_website:
|
|
70324
|
-
delete_object:
|
|
70325
|
-
delete_object_tagging:
|
|
70326
|
-
delete_objects:
|
|
70327
|
-
delete_public_access_block:
|
|
70328
|
-
get_bucket_abac:
|
|
70329
|
-
get_bucket_accelerate_configuration:
|
|
70330
|
-
get_bucket_acl:
|
|
70331
|
-
get_bucket_analytics_configuration:
|
|
70332
|
-
get_bucket_cors:
|
|
70333
|
-
get_bucket_encryption:
|
|
70334
|
-
get_bucket_intelligent_tiering_configuration:
|
|
70335
|
-
get_bucket_inventory_configuration:
|
|
70336
|
-
get_bucket_lifecycle_configuration:
|
|
70337
|
-
get_bucket_location:
|
|
70338
|
-
get_bucket_logging:
|
|
70339
|
-
get_bucket_metadata_configuration:
|
|
70340
|
-
get_bucket_metadata_table_configuration:
|
|
70341
|
-
get_bucket_metrics_configuration:
|
|
70342
|
-
get_bucket_notification_configuration:
|
|
70343
|
-
get_bucket_ownership_controls:
|
|
70344
|
-
get_bucket_policy:
|
|
70345
|
-
get_bucket_policy_status:
|
|
70346
|
-
get_bucket_replication:
|
|
70347
|
-
get_bucket_request_payment:
|
|
70348
|
-
get_bucket_tagging:
|
|
70349
|
-
get_bucket_versioning:
|
|
70350
|
-
get_bucket_website:
|
|
70351
|
-
get_object:
|
|
70352
|
-
get_object_acl:
|
|
70353
|
-
get_object_attributes:
|
|
70354
|
-
get_object_legal_hold:
|
|
70355
|
-
get_object_lock_configuration:
|
|
70356
|
-
get_object_retention:
|
|
70357
|
-
get_object_tagging:
|
|
70358
|
-
get_object_torrent:
|
|
70359
|
-
get_public_access_block:
|
|
70360
|
-
head_bucket:
|
|
70361
|
-
head_object:
|
|
70362
|
-
list_bucket_analytics_configurations:
|
|
70363
|
-
list_bucket_intelligent_tiering_configurations:
|
|
70364
|
-
list_bucket_inventory_configurations:
|
|
70365
|
-
list_bucket_metrics_configurations:
|
|
70366
|
-
list_buckets:
|
|
70367
|
-
list_directory_buckets:
|
|
70368
|
-
list_multipart_uploads:
|
|
70369
|
-
list_object_versions:
|
|
70370
|
-
list_objects:
|
|
70371
|
-
list_objects_v2:
|
|
70372
|
-
list_parts:
|
|
70373
|
-
put_bucket_abac:
|
|
70374
|
-
put_bucket_accelerate_configuration:
|
|
70375
|
-
put_bucket_acl:
|
|
70376
|
-
put_bucket_analytics_configuration:
|
|
70377
|
-
put_bucket_cors:
|
|
70378
|
-
put_bucket_encryption:
|
|
70379
|
-
put_bucket_intelligent_tiering_configuration:
|
|
70380
|
-
put_bucket_inventory_configuration:
|
|
70381
|
-
put_bucket_lifecycle_configuration:
|
|
70382
|
-
put_bucket_logging:
|
|
70383
|
-
put_bucket_metrics_configuration:
|
|
70384
|
-
put_bucket_notification_configuration:
|
|
70385
|
-
put_bucket_ownership_controls:
|
|
70386
|
-
put_bucket_policy:
|
|
70387
|
-
put_bucket_replication:
|
|
70388
|
-
put_bucket_request_payment:
|
|
70389
|
-
put_bucket_tagging:
|
|
70390
|
-
put_bucket_versioning:
|
|
70391
|
-
put_bucket_website:
|
|
70392
|
-
put_object:
|
|
70393
|
-
put_object_acl:
|
|
70394
|
-
put_object_legal_hold:
|
|
70395
|
-
put_object_lock_configuration:
|
|
70396
|
-
put_object_retention:
|
|
70397
|
-
put_object_tagging:
|
|
70398
|
-
put_public_access_block:
|
|
70399
|
-
rename_object:
|
|
70400
|
-
restore_object:
|
|
70401
|
-
select_object_content:
|
|
70402
|
-
update_bucket_metadata_inventory_table_configuration:
|
|
70403
|
-
update_bucket_metadata_journal_table_configuration:
|
|
70404
|
-
update_object_encryption:
|
|
70405
|
-
upload_part:
|
|
70406
|
-
upload_part_copy:
|
|
70407
|
-
write_get_object_response:
|
|
70366
|
+
abort_multipart_upload: Sdk9.AbortMultipartUploadCommand,
|
|
70367
|
+
complete_multipart_upload: Sdk9.CompleteMultipartUploadCommand,
|
|
70368
|
+
copy_object: Sdk9.CopyObjectCommand,
|
|
70369
|
+
create_bucket: Sdk9.CreateBucketCommand,
|
|
70370
|
+
create_bucket_metadata_configuration: Sdk9.CreateBucketMetadataConfigurationCommand,
|
|
70371
|
+
create_bucket_metadata_table_configuration: Sdk9.CreateBucketMetadataTableConfigurationCommand,
|
|
70372
|
+
create_multipart_upload: Sdk9.CreateMultipartUploadCommand,
|
|
70373
|
+
create_session: Sdk9.CreateSessionCommand,
|
|
70374
|
+
delete_bucket: Sdk9.DeleteBucketCommand,
|
|
70375
|
+
delete_bucket_analytics_configuration: Sdk9.DeleteBucketAnalyticsConfigurationCommand,
|
|
70376
|
+
delete_bucket_cors: Sdk9.DeleteBucketCorsCommand,
|
|
70377
|
+
delete_bucket_encryption: Sdk9.DeleteBucketEncryptionCommand,
|
|
70378
|
+
delete_bucket_intelligent_tiering_configuration: Sdk9.DeleteBucketIntelligentTieringConfigurationCommand,
|
|
70379
|
+
delete_bucket_inventory_configuration: Sdk9.DeleteBucketInventoryConfigurationCommand,
|
|
70380
|
+
delete_bucket_lifecycle: Sdk9.DeleteBucketLifecycleCommand,
|
|
70381
|
+
delete_bucket_metadata_configuration: Sdk9.DeleteBucketMetadataConfigurationCommand,
|
|
70382
|
+
delete_bucket_metadata_table_configuration: Sdk9.DeleteBucketMetadataTableConfigurationCommand,
|
|
70383
|
+
delete_bucket_metrics_configuration: Sdk9.DeleteBucketMetricsConfigurationCommand,
|
|
70384
|
+
delete_bucket_ownership_controls: Sdk9.DeleteBucketOwnershipControlsCommand,
|
|
70385
|
+
delete_bucket_policy: Sdk9.DeleteBucketPolicyCommand,
|
|
70386
|
+
delete_bucket_replication: Sdk9.DeleteBucketReplicationCommand,
|
|
70387
|
+
delete_bucket_tagging: Sdk9.DeleteBucketTaggingCommand,
|
|
70388
|
+
delete_bucket_website: Sdk9.DeleteBucketWebsiteCommand,
|
|
70389
|
+
delete_object: Sdk9.DeleteObjectCommand,
|
|
70390
|
+
delete_object_tagging: Sdk9.DeleteObjectTaggingCommand,
|
|
70391
|
+
delete_objects: Sdk9.DeleteObjectsCommand,
|
|
70392
|
+
delete_public_access_block: Sdk9.DeletePublicAccessBlockCommand,
|
|
70393
|
+
get_bucket_abac: Sdk9.GetBucketAbacCommand,
|
|
70394
|
+
get_bucket_accelerate_configuration: Sdk9.GetBucketAccelerateConfigurationCommand,
|
|
70395
|
+
get_bucket_acl: Sdk9.GetBucketAclCommand,
|
|
70396
|
+
get_bucket_analytics_configuration: Sdk9.GetBucketAnalyticsConfigurationCommand,
|
|
70397
|
+
get_bucket_cors: Sdk9.GetBucketCorsCommand,
|
|
70398
|
+
get_bucket_encryption: Sdk9.GetBucketEncryptionCommand,
|
|
70399
|
+
get_bucket_intelligent_tiering_configuration: Sdk9.GetBucketIntelligentTieringConfigurationCommand,
|
|
70400
|
+
get_bucket_inventory_configuration: Sdk9.GetBucketInventoryConfigurationCommand,
|
|
70401
|
+
get_bucket_lifecycle_configuration: Sdk9.GetBucketLifecycleConfigurationCommand,
|
|
70402
|
+
get_bucket_location: Sdk9.GetBucketLocationCommand,
|
|
70403
|
+
get_bucket_logging: Sdk9.GetBucketLoggingCommand,
|
|
70404
|
+
get_bucket_metadata_configuration: Sdk9.GetBucketMetadataConfigurationCommand,
|
|
70405
|
+
get_bucket_metadata_table_configuration: Sdk9.GetBucketMetadataTableConfigurationCommand,
|
|
70406
|
+
get_bucket_metrics_configuration: Sdk9.GetBucketMetricsConfigurationCommand,
|
|
70407
|
+
get_bucket_notification_configuration: Sdk9.GetBucketNotificationConfigurationCommand,
|
|
70408
|
+
get_bucket_ownership_controls: Sdk9.GetBucketOwnershipControlsCommand,
|
|
70409
|
+
get_bucket_policy: Sdk9.GetBucketPolicyCommand,
|
|
70410
|
+
get_bucket_policy_status: Sdk9.GetBucketPolicyStatusCommand,
|
|
70411
|
+
get_bucket_replication: Sdk9.GetBucketReplicationCommand,
|
|
70412
|
+
get_bucket_request_payment: Sdk9.GetBucketRequestPaymentCommand,
|
|
70413
|
+
get_bucket_tagging: Sdk9.GetBucketTaggingCommand,
|
|
70414
|
+
get_bucket_versioning: Sdk9.GetBucketVersioningCommand,
|
|
70415
|
+
get_bucket_website: Sdk9.GetBucketWebsiteCommand,
|
|
70416
|
+
get_object: Sdk9.GetObjectCommand,
|
|
70417
|
+
get_object_acl: Sdk9.GetObjectAclCommand,
|
|
70418
|
+
get_object_attributes: Sdk9.GetObjectAttributesCommand,
|
|
70419
|
+
get_object_legal_hold: Sdk9.GetObjectLegalHoldCommand,
|
|
70420
|
+
get_object_lock_configuration: Sdk9.GetObjectLockConfigurationCommand,
|
|
70421
|
+
get_object_retention: Sdk9.GetObjectRetentionCommand,
|
|
70422
|
+
get_object_tagging: Sdk9.GetObjectTaggingCommand,
|
|
70423
|
+
get_object_torrent: Sdk9.GetObjectTorrentCommand,
|
|
70424
|
+
get_public_access_block: Sdk9.GetPublicAccessBlockCommand,
|
|
70425
|
+
head_bucket: Sdk9.HeadBucketCommand,
|
|
70426
|
+
head_object: Sdk9.HeadObjectCommand,
|
|
70427
|
+
list_bucket_analytics_configurations: Sdk9.ListBucketAnalyticsConfigurationsCommand,
|
|
70428
|
+
list_bucket_intelligent_tiering_configurations: Sdk9.ListBucketIntelligentTieringConfigurationsCommand,
|
|
70429
|
+
list_bucket_inventory_configurations: Sdk9.ListBucketInventoryConfigurationsCommand,
|
|
70430
|
+
list_bucket_metrics_configurations: Sdk9.ListBucketMetricsConfigurationsCommand,
|
|
70431
|
+
list_buckets: Sdk9.ListBucketsCommand,
|
|
70432
|
+
list_directory_buckets: Sdk9.ListDirectoryBucketsCommand,
|
|
70433
|
+
list_multipart_uploads: Sdk9.ListMultipartUploadsCommand,
|
|
70434
|
+
list_object_versions: Sdk9.ListObjectVersionsCommand,
|
|
70435
|
+
list_objects: Sdk9.ListObjectsCommand,
|
|
70436
|
+
list_objects_v2: Sdk9.ListObjectsV2Command,
|
|
70437
|
+
list_parts: Sdk9.ListPartsCommand,
|
|
70438
|
+
put_bucket_abac: Sdk9.PutBucketAbacCommand,
|
|
70439
|
+
put_bucket_accelerate_configuration: Sdk9.PutBucketAccelerateConfigurationCommand,
|
|
70440
|
+
put_bucket_acl: Sdk9.PutBucketAclCommand,
|
|
70441
|
+
put_bucket_analytics_configuration: Sdk9.PutBucketAnalyticsConfigurationCommand,
|
|
70442
|
+
put_bucket_cors: Sdk9.PutBucketCorsCommand,
|
|
70443
|
+
put_bucket_encryption: Sdk9.PutBucketEncryptionCommand,
|
|
70444
|
+
put_bucket_intelligent_tiering_configuration: Sdk9.PutBucketIntelligentTieringConfigurationCommand,
|
|
70445
|
+
put_bucket_inventory_configuration: Sdk9.PutBucketInventoryConfigurationCommand,
|
|
70446
|
+
put_bucket_lifecycle_configuration: Sdk9.PutBucketLifecycleConfigurationCommand,
|
|
70447
|
+
put_bucket_logging: Sdk9.PutBucketLoggingCommand,
|
|
70448
|
+
put_bucket_metrics_configuration: Sdk9.PutBucketMetricsConfigurationCommand,
|
|
70449
|
+
put_bucket_notification_configuration: Sdk9.PutBucketNotificationConfigurationCommand,
|
|
70450
|
+
put_bucket_ownership_controls: Sdk9.PutBucketOwnershipControlsCommand,
|
|
70451
|
+
put_bucket_policy: Sdk9.PutBucketPolicyCommand,
|
|
70452
|
+
put_bucket_replication: Sdk9.PutBucketReplicationCommand,
|
|
70453
|
+
put_bucket_request_payment: Sdk9.PutBucketRequestPaymentCommand,
|
|
70454
|
+
put_bucket_tagging: Sdk9.PutBucketTaggingCommand,
|
|
70455
|
+
put_bucket_versioning: Sdk9.PutBucketVersioningCommand,
|
|
70456
|
+
put_bucket_website: Sdk9.PutBucketWebsiteCommand,
|
|
70457
|
+
put_object: Sdk9.PutObjectCommand,
|
|
70458
|
+
put_object_acl: Sdk9.PutObjectAclCommand,
|
|
70459
|
+
put_object_legal_hold: Sdk9.PutObjectLegalHoldCommand,
|
|
70460
|
+
put_object_lock_configuration: Sdk9.PutObjectLockConfigurationCommand,
|
|
70461
|
+
put_object_retention: Sdk9.PutObjectRetentionCommand,
|
|
70462
|
+
put_object_tagging: Sdk9.PutObjectTaggingCommand,
|
|
70463
|
+
put_public_access_block: Sdk9.PutPublicAccessBlockCommand,
|
|
70464
|
+
rename_object: Sdk9.RenameObjectCommand,
|
|
70465
|
+
restore_object: Sdk9.RestoreObjectCommand,
|
|
70466
|
+
select_object_content: Sdk9.SelectObjectContentCommand,
|
|
70467
|
+
update_bucket_metadata_inventory_table_configuration: Sdk9.UpdateBucketMetadataInventoryTableConfigurationCommand,
|
|
70468
|
+
update_bucket_metadata_journal_table_configuration: Sdk9.UpdateBucketMetadataJournalTableConfigurationCommand,
|
|
70469
|
+
update_object_encryption: Sdk9.UpdateObjectEncryptionCommand,
|
|
70470
|
+
upload_part: Sdk9.UploadPartCommand,
|
|
70471
|
+
upload_part_copy: Sdk9.UploadPartCopyCommand,
|
|
70472
|
+
write_get_object_response: Sdk9.WriteGetObjectResponseCommand
|
|
70408
70473
|
};
|
|
70409
70474
|
|
|
70410
70475
|
// src/aws/clients/sqs.ts
|
|
@@ -70412,25 +70477,25 @@ var sqs_exports = {};
|
|
|
70412
70477
|
__export(sqs_exports, {
|
|
70413
70478
|
SQSClient: () => SQSClient2,
|
|
70414
70479
|
SQSError: () => SQSError,
|
|
70415
|
-
make: () =>
|
|
70480
|
+
make: () => make77
|
|
70416
70481
|
});
|
|
70417
|
-
import * as
|
|
70482
|
+
import * as Sdk10 from "@aws-sdk/client-sqs";
|
|
70418
70483
|
var SQSClient2 = class _SQSClient extends Tag2("SQSClient")() {
|
|
70419
70484
|
static Default = (config2) => effect(
|
|
70420
70485
|
_SQSClient,
|
|
70421
70486
|
gen3(function* () {
|
|
70422
|
-
return new
|
|
70487
|
+
return new Sdk10.SQSClient(config2 ?? {});
|
|
70423
70488
|
})
|
|
70424
70489
|
);
|
|
70425
70490
|
};
|
|
70426
|
-
var
|
|
70491
|
+
var make77 = fn("aws_SQS")(function* (actionName, actionInput) {
|
|
70427
70492
|
yield* logDebug2(`aws_SQS.${actionName}`, { input: actionInput });
|
|
70428
70493
|
const client = yield* SQSClient2;
|
|
70429
70494
|
const command = new SQSCommandFactory[actionName](actionInput);
|
|
70430
70495
|
const result = yield* tryPromise2({
|
|
70431
70496
|
try: () => client.send(command),
|
|
70432
70497
|
catch: (error4) => {
|
|
70433
|
-
if (error4 instanceof
|
|
70498
|
+
if (error4 instanceof Sdk10.SQSServiceException) {
|
|
70434
70499
|
return new SQSError(error4, actionName);
|
|
70435
70500
|
}
|
|
70436
70501
|
throw error4;
|
|
@@ -70453,29 +70518,29 @@ var SQSError = class {
|
|
|
70453
70518
|
}
|
|
70454
70519
|
};
|
|
70455
70520
|
var SQSCommandFactory = {
|
|
70456
|
-
add_permission:
|
|
70457
|
-
cancel_message_move_task:
|
|
70458
|
-
change_message_visibility:
|
|
70459
|
-
change_message_visibility_batch:
|
|
70460
|
-
create_queue:
|
|
70461
|
-
delete_message:
|
|
70462
|
-
delete_message_batch:
|
|
70463
|
-
delete_queue:
|
|
70464
|
-
get_queue_attributes:
|
|
70465
|
-
get_queue_url:
|
|
70466
|
-
list_dead_letter_source_queues:
|
|
70467
|
-
list_message_move_tasks:
|
|
70468
|
-
list_queue_tags:
|
|
70469
|
-
list_queues:
|
|
70470
|
-
purge_queue:
|
|
70471
|
-
receive_message:
|
|
70472
|
-
remove_permission:
|
|
70473
|
-
send_message:
|
|
70474
|
-
send_message_batch:
|
|
70475
|
-
set_queue_attributes:
|
|
70476
|
-
start_message_move_task:
|
|
70477
|
-
tag_queue:
|
|
70478
|
-
untag_queue:
|
|
70521
|
+
add_permission: Sdk10.AddPermissionCommand,
|
|
70522
|
+
cancel_message_move_task: Sdk10.CancelMessageMoveTaskCommand,
|
|
70523
|
+
change_message_visibility: Sdk10.ChangeMessageVisibilityCommand,
|
|
70524
|
+
change_message_visibility_batch: Sdk10.ChangeMessageVisibilityBatchCommand,
|
|
70525
|
+
create_queue: Sdk10.CreateQueueCommand,
|
|
70526
|
+
delete_message: Sdk10.DeleteMessageCommand,
|
|
70527
|
+
delete_message_batch: Sdk10.DeleteMessageBatchCommand,
|
|
70528
|
+
delete_queue: Sdk10.DeleteQueueCommand,
|
|
70529
|
+
get_queue_attributes: Sdk10.GetQueueAttributesCommand,
|
|
70530
|
+
get_queue_url: Sdk10.GetQueueUrlCommand,
|
|
70531
|
+
list_dead_letter_source_queues: Sdk10.ListDeadLetterSourceQueuesCommand,
|
|
70532
|
+
list_message_move_tasks: Sdk10.ListMessageMoveTasksCommand,
|
|
70533
|
+
list_queue_tags: Sdk10.ListQueueTagsCommand,
|
|
70534
|
+
list_queues: Sdk10.ListQueuesCommand,
|
|
70535
|
+
purge_queue: Sdk10.PurgeQueueCommand,
|
|
70536
|
+
receive_message: Sdk10.ReceiveMessageCommand,
|
|
70537
|
+
remove_permission: Sdk10.RemovePermissionCommand,
|
|
70538
|
+
send_message: Sdk10.SendMessageCommand,
|
|
70539
|
+
send_message_batch: Sdk10.SendMessageBatchCommand,
|
|
70540
|
+
set_queue_attributes: Sdk10.SetQueueAttributesCommand,
|
|
70541
|
+
start_message_move_task: Sdk10.StartMessageMoveTaskCommand,
|
|
70542
|
+
tag_queue: Sdk10.TagQueueCommand,
|
|
70543
|
+
untag_queue: Sdk10.UntagQueueCommand
|
|
70479
70544
|
};
|
|
70480
70545
|
|
|
70481
70546
|
// src/aws/clients/ssm.ts
|
|
@@ -70483,25 +70548,25 @@ var ssm_exports = {};
|
|
|
70483
70548
|
__export(ssm_exports, {
|
|
70484
70549
|
SSMClient: () => SSMClient2,
|
|
70485
70550
|
SSMError: () => SSMError,
|
|
70486
|
-
make: () =>
|
|
70551
|
+
make: () => make78
|
|
70487
70552
|
});
|
|
70488
|
-
import * as
|
|
70553
|
+
import * as Sdk11 from "@aws-sdk/client-ssm";
|
|
70489
70554
|
var SSMClient2 = class _SSMClient extends Tag2("SSMClient")() {
|
|
70490
70555
|
static Default = (config2) => effect(
|
|
70491
70556
|
_SSMClient,
|
|
70492
70557
|
gen3(function* () {
|
|
70493
|
-
return new
|
|
70558
|
+
return new Sdk11.SSMClient(config2 ?? {});
|
|
70494
70559
|
})
|
|
70495
70560
|
);
|
|
70496
70561
|
};
|
|
70497
|
-
var
|
|
70562
|
+
var make78 = fn("aws_SSM")(function* (actionName, actionInput) {
|
|
70498
70563
|
yield* logDebug2(`aws_SSM.${actionName}`, { input: actionInput });
|
|
70499
70564
|
const client = yield* SSMClient2;
|
|
70500
70565
|
const command = new SSMCommandFactory[actionName](actionInput);
|
|
70501
70566
|
const result = yield* tryPromise2({
|
|
70502
70567
|
try: () => client.send(command),
|
|
70503
70568
|
catch: (error4) => {
|
|
70504
|
-
if (error4 instanceof
|
|
70569
|
+
if (error4 instanceof Sdk11.SSMServiceException) {
|
|
70505
70570
|
return new SSMError(error4, actionName);
|
|
70506
70571
|
}
|
|
70507
70572
|
throw error4;
|
|
@@ -70524,156 +70589,157 @@ var SSMError = class {
|
|
|
70524
70589
|
}
|
|
70525
70590
|
};
|
|
70526
70591
|
var SSMCommandFactory = {
|
|
70527
|
-
add_tags_to_resource:
|
|
70528
|
-
associate_ops_item_related_item:
|
|
70529
|
-
cancel_command:
|
|
70530
|
-
cancel_maintenance_window_execution:
|
|
70531
|
-
create_activation:
|
|
70532
|
-
create_association:
|
|
70533
|
-
create_association_batch:
|
|
70534
|
-
create_document:
|
|
70535
|
-
create_maintenance_window:
|
|
70536
|
-
create_ops_item:
|
|
70537
|
-
create_ops_metadata:
|
|
70538
|
-
create_patch_baseline:
|
|
70539
|
-
create_resource_data_sync:
|
|
70540
|
-
delete_activation:
|
|
70541
|
-
delete_association:
|
|
70542
|
-
delete_document:
|
|
70543
|
-
delete_inventory:
|
|
70544
|
-
delete_maintenance_window:
|
|
70545
|
-
delete_ops_item:
|
|
70546
|
-
delete_ops_metadata:
|
|
70547
|
-
delete_parameter:
|
|
70548
|
-
delete_parameters:
|
|
70549
|
-
delete_patch_baseline:
|
|
70550
|
-
delete_resource_data_sync:
|
|
70551
|
-
delete_resource_policy:
|
|
70552
|
-
deregister_managed_instance:
|
|
70553
|
-
deregister_patch_baseline_for_patch_group:
|
|
70554
|
-
deregister_target_from_maintenance_window:
|
|
70555
|
-
deregister_task_from_maintenance_window:
|
|
70556
|
-
describe_activations:
|
|
70557
|
-
describe_association:
|
|
70558
|
-
describe_association_execution_targets:
|
|
70559
|
-
describe_association_executions:
|
|
70560
|
-
describe_automation_executions:
|
|
70561
|
-
describe_automation_step_executions:
|
|
70562
|
-
describe_available_patches:
|
|
70563
|
-
describe_document:
|
|
70564
|
-
describe_document_permission:
|
|
70565
|
-
describe_effective_instance_associations:
|
|
70566
|
-
describe_effective_patches_for_patch_baseline:
|
|
70567
|
-
describe_instance_associations_status:
|
|
70568
|
-
describe_instance_information:
|
|
70569
|
-
describe_instance_patch_states:
|
|
70570
|
-
describe_instance_patch_states_for_patch_group:
|
|
70571
|
-
describe_instance_patches:
|
|
70572
|
-
describe_instance_properties:
|
|
70573
|
-
describe_inventory_deletions:
|
|
70574
|
-
describe_maintenance_window_execution_task_invocations:
|
|
70575
|
-
describe_maintenance_window_execution_tasks:
|
|
70576
|
-
describe_maintenance_window_executions:
|
|
70577
|
-
describe_maintenance_window_schedule:
|
|
70578
|
-
describe_maintenance_window_targets:
|
|
70579
|
-
describe_maintenance_window_tasks:
|
|
70580
|
-
describe_maintenance_windows:
|
|
70581
|
-
describe_maintenance_windows_for_target:
|
|
70582
|
-
describe_ops_items:
|
|
70583
|
-
describe_parameters:
|
|
70584
|
-
describe_patch_baselines:
|
|
70585
|
-
describe_patch_group_state:
|
|
70586
|
-
describe_patch_groups:
|
|
70587
|
-
describe_patch_properties:
|
|
70588
|
-
describe_sessions:
|
|
70589
|
-
disassociate_ops_item_related_item:
|
|
70590
|
-
get_access_token:
|
|
70591
|
-
get_automation_execution:
|
|
70592
|
-
get_calendar_state:
|
|
70593
|
-
get_command_invocation:
|
|
70594
|
-
get_connection_status:
|
|
70595
|
-
get_default_patch_baseline:
|
|
70596
|
-
get_deployable_patch_snapshot_for_instance:
|
|
70597
|
-
get_document:
|
|
70598
|
-
get_execution_preview:
|
|
70599
|
-
get_inventory:
|
|
70600
|
-
get_inventory_schema:
|
|
70601
|
-
get_maintenance_window:
|
|
70602
|
-
get_maintenance_window_execution:
|
|
70603
|
-
get_maintenance_window_execution_task:
|
|
70604
|
-
get_maintenance_window_execution_task_invocation:
|
|
70605
|
-
get_maintenance_window_task:
|
|
70606
|
-
get_ops_item:
|
|
70607
|
-
get_ops_metadata:
|
|
70608
|
-
get_ops_summary:
|
|
70609
|
-
get_parameter:
|
|
70610
|
-
get_parameter_history:
|
|
70611
|
-
get_parameters:
|
|
70612
|
-
get_parameters_by_path:
|
|
70613
|
-
get_patch_baseline:
|
|
70614
|
-
get_patch_baseline_for_patch_group:
|
|
70615
|
-
get_resource_policies:
|
|
70616
|
-
get_service_setting:
|
|
70617
|
-
label_parameter_version:
|
|
70618
|
-
list_association_versions:
|
|
70619
|
-
list_associations:
|
|
70620
|
-
list_command_invocations:
|
|
70621
|
-
list_commands:
|
|
70622
|
-
list_compliance_items:
|
|
70623
|
-
list_compliance_summaries:
|
|
70624
|
-
list_document_metadata_history:
|
|
70625
|
-
list_document_versions:
|
|
70626
|
-
list_documents:
|
|
70627
|
-
list_inventory_entries:
|
|
70628
|
-
list_nodes:
|
|
70629
|
-
list_nodes_summary:
|
|
70630
|
-
list_ops_item_events:
|
|
70631
|
-
list_ops_item_related_items:
|
|
70632
|
-
list_ops_metadata:
|
|
70633
|
-
list_resource_compliance_summaries:
|
|
70634
|
-
list_resource_data_sync:
|
|
70635
|
-
list_tags_for_resource:
|
|
70636
|
-
modify_document_permission:
|
|
70637
|
-
put_compliance_items:
|
|
70638
|
-
put_inventory:
|
|
70639
|
-
put_parameter:
|
|
70640
|
-
put_resource_policy:
|
|
70641
|
-
register_default_patch_baseline:
|
|
70642
|
-
register_patch_baseline_for_patch_group:
|
|
70643
|
-
register_target_with_maintenance_window:
|
|
70644
|
-
register_task_with_maintenance_window:
|
|
70645
|
-
remove_tags_from_resource:
|
|
70646
|
-
reset_service_setting:
|
|
70647
|
-
resume_session:
|
|
70648
|
-
send_automation_signal:
|
|
70649
|
-
send_command:
|
|
70650
|
-
start_access_request:
|
|
70651
|
-
start_associations_once:
|
|
70652
|
-
start_automation_execution:
|
|
70653
|
-
start_change_request_execution:
|
|
70654
|
-
start_execution_preview:
|
|
70655
|
-
start_session:
|
|
70656
|
-
stop_automation_execution:
|
|
70657
|
-
terminate_session:
|
|
70658
|
-
unlabel_parameter_version:
|
|
70659
|
-
update_association:
|
|
70660
|
-
update_association_status:
|
|
70661
|
-
update_document:
|
|
70662
|
-
update_document_default_version:
|
|
70663
|
-
update_document_metadata:
|
|
70664
|
-
update_maintenance_window:
|
|
70665
|
-
update_maintenance_window_target:
|
|
70666
|
-
update_maintenance_window_task:
|
|
70667
|
-
update_managed_instance_role:
|
|
70668
|
-
update_ops_item:
|
|
70669
|
-
update_ops_metadata:
|
|
70670
|
-
update_patch_baseline:
|
|
70671
|
-
update_resource_data_sync:
|
|
70672
|
-
update_service_setting:
|
|
70592
|
+
add_tags_to_resource: Sdk11.AddTagsToResourceCommand,
|
|
70593
|
+
associate_ops_item_related_item: Sdk11.AssociateOpsItemRelatedItemCommand,
|
|
70594
|
+
cancel_command: Sdk11.CancelCommandCommand,
|
|
70595
|
+
cancel_maintenance_window_execution: Sdk11.CancelMaintenanceWindowExecutionCommand,
|
|
70596
|
+
create_activation: Sdk11.CreateActivationCommand,
|
|
70597
|
+
create_association: Sdk11.CreateAssociationCommand,
|
|
70598
|
+
create_association_batch: Sdk11.CreateAssociationBatchCommand,
|
|
70599
|
+
create_document: Sdk11.CreateDocumentCommand,
|
|
70600
|
+
create_maintenance_window: Sdk11.CreateMaintenanceWindowCommand,
|
|
70601
|
+
create_ops_item: Sdk11.CreateOpsItemCommand,
|
|
70602
|
+
create_ops_metadata: Sdk11.CreateOpsMetadataCommand,
|
|
70603
|
+
create_patch_baseline: Sdk11.CreatePatchBaselineCommand,
|
|
70604
|
+
create_resource_data_sync: Sdk11.CreateResourceDataSyncCommand,
|
|
70605
|
+
delete_activation: Sdk11.DeleteActivationCommand,
|
|
70606
|
+
delete_association: Sdk11.DeleteAssociationCommand,
|
|
70607
|
+
delete_document: Sdk11.DeleteDocumentCommand,
|
|
70608
|
+
delete_inventory: Sdk11.DeleteInventoryCommand,
|
|
70609
|
+
delete_maintenance_window: Sdk11.DeleteMaintenanceWindowCommand,
|
|
70610
|
+
delete_ops_item: Sdk11.DeleteOpsItemCommand,
|
|
70611
|
+
delete_ops_metadata: Sdk11.DeleteOpsMetadataCommand,
|
|
70612
|
+
delete_parameter: Sdk11.DeleteParameterCommand,
|
|
70613
|
+
delete_parameters: Sdk11.DeleteParametersCommand,
|
|
70614
|
+
delete_patch_baseline: Sdk11.DeletePatchBaselineCommand,
|
|
70615
|
+
delete_resource_data_sync: Sdk11.DeleteResourceDataSyncCommand,
|
|
70616
|
+
delete_resource_policy: Sdk11.DeleteResourcePolicyCommand,
|
|
70617
|
+
deregister_managed_instance: Sdk11.DeregisterManagedInstanceCommand,
|
|
70618
|
+
deregister_patch_baseline_for_patch_group: Sdk11.DeregisterPatchBaselineForPatchGroupCommand,
|
|
70619
|
+
deregister_target_from_maintenance_window: Sdk11.DeregisterTargetFromMaintenanceWindowCommand,
|
|
70620
|
+
deregister_task_from_maintenance_window: Sdk11.DeregisterTaskFromMaintenanceWindowCommand,
|
|
70621
|
+
describe_activations: Sdk11.DescribeActivationsCommand,
|
|
70622
|
+
describe_association: Sdk11.DescribeAssociationCommand,
|
|
70623
|
+
describe_association_execution_targets: Sdk11.DescribeAssociationExecutionTargetsCommand,
|
|
70624
|
+
describe_association_executions: Sdk11.DescribeAssociationExecutionsCommand,
|
|
70625
|
+
describe_automation_executions: Sdk11.DescribeAutomationExecutionsCommand,
|
|
70626
|
+
describe_automation_step_executions: Sdk11.DescribeAutomationStepExecutionsCommand,
|
|
70627
|
+
describe_available_patches: Sdk11.DescribeAvailablePatchesCommand,
|
|
70628
|
+
describe_document: Sdk11.DescribeDocumentCommand,
|
|
70629
|
+
describe_document_permission: Sdk11.DescribeDocumentPermissionCommand,
|
|
70630
|
+
describe_effective_instance_associations: Sdk11.DescribeEffectiveInstanceAssociationsCommand,
|
|
70631
|
+
describe_effective_patches_for_patch_baseline: Sdk11.DescribeEffectivePatchesForPatchBaselineCommand,
|
|
70632
|
+
describe_instance_associations_status: Sdk11.DescribeInstanceAssociationsStatusCommand,
|
|
70633
|
+
describe_instance_information: Sdk11.DescribeInstanceInformationCommand,
|
|
70634
|
+
describe_instance_patch_states: Sdk11.DescribeInstancePatchStatesCommand,
|
|
70635
|
+
describe_instance_patch_states_for_patch_group: Sdk11.DescribeInstancePatchStatesForPatchGroupCommand,
|
|
70636
|
+
describe_instance_patches: Sdk11.DescribeInstancePatchesCommand,
|
|
70637
|
+
describe_instance_properties: Sdk11.DescribeInstancePropertiesCommand,
|
|
70638
|
+
describe_inventory_deletions: Sdk11.DescribeInventoryDeletionsCommand,
|
|
70639
|
+
describe_maintenance_window_execution_task_invocations: Sdk11.DescribeMaintenanceWindowExecutionTaskInvocationsCommand,
|
|
70640
|
+
describe_maintenance_window_execution_tasks: Sdk11.DescribeMaintenanceWindowExecutionTasksCommand,
|
|
70641
|
+
describe_maintenance_window_executions: Sdk11.DescribeMaintenanceWindowExecutionsCommand,
|
|
70642
|
+
describe_maintenance_window_schedule: Sdk11.DescribeMaintenanceWindowScheduleCommand,
|
|
70643
|
+
describe_maintenance_window_targets: Sdk11.DescribeMaintenanceWindowTargetsCommand,
|
|
70644
|
+
describe_maintenance_window_tasks: Sdk11.DescribeMaintenanceWindowTasksCommand,
|
|
70645
|
+
describe_maintenance_windows: Sdk11.DescribeMaintenanceWindowsCommand,
|
|
70646
|
+
describe_maintenance_windows_for_target: Sdk11.DescribeMaintenanceWindowsForTargetCommand,
|
|
70647
|
+
describe_ops_items: Sdk11.DescribeOpsItemsCommand,
|
|
70648
|
+
describe_parameters: Sdk11.DescribeParametersCommand,
|
|
70649
|
+
describe_patch_baselines: Sdk11.DescribePatchBaselinesCommand,
|
|
70650
|
+
describe_patch_group_state: Sdk11.DescribePatchGroupStateCommand,
|
|
70651
|
+
describe_patch_groups: Sdk11.DescribePatchGroupsCommand,
|
|
70652
|
+
describe_patch_properties: Sdk11.DescribePatchPropertiesCommand,
|
|
70653
|
+
describe_sessions: Sdk11.DescribeSessionsCommand,
|
|
70654
|
+
disassociate_ops_item_related_item: Sdk11.DisassociateOpsItemRelatedItemCommand,
|
|
70655
|
+
get_access_token: Sdk11.GetAccessTokenCommand,
|
|
70656
|
+
get_automation_execution: Sdk11.GetAutomationExecutionCommand,
|
|
70657
|
+
get_calendar_state: Sdk11.GetCalendarStateCommand,
|
|
70658
|
+
get_command_invocation: Sdk11.GetCommandInvocationCommand,
|
|
70659
|
+
get_connection_status: Sdk11.GetConnectionStatusCommand,
|
|
70660
|
+
get_default_patch_baseline: Sdk11.GetDefaultPatchBaselineCommand,
|
|
70661
|
+
get_deployable_patch_snapshot_for_instance: Sdk11.GetDeployablePatchSnapshotForInstanceCommand,
|
|
70662
|
+
get_document: Sdk11.GetDocumentCommand,
|
|
70663
|
+
get_execution_preview: Sdk11.GetExecutionPreviewCommand,
|
|
70664
|
+
get_inventory: Sdk11.GetInventoryCommand,
|
|
70665
|
+
get_inventory_schema: Sdk11.GetInventorySchemaCommand,
|
|
70666
|
+
get_maintenance_window: Sdk11.GetMaintenanceWindowCommand,
|
|
70667
|
+
get_maintenance_window_execution: Sdk11.GetMaintenanceWindowExecutionCommand,
|
|
70668
|
+
get_maintenance_window_execution_task: Sdk11.GetMaintenanceWindowExecutionTaskCommand,
|
|
70669
|
+
get_maintenance_window_execution_task_invocation: Sdk11.GetMaintenanceWindowExecutionTaskInvocationCommand,
|
|
70670
|
+
get_maintenance_window_task: Sdk11.GetMaintenanceWindowTaskCommand,
|
|
70671
|
+
get_ops_item: Sdk11.GetOpsItemCommand,
|
|
70672
|
+
get_ops_metadata: Sdk11.GetOpsMetadataCommand,
|
|
70673
|
+
get_ops_summary: Sdk11.GetOpsSummaryCommand,
|
|
70674
|
+
get_parameter: Sdk11.GetParameterCommand,
|
|
70675
|
+
get_parameter_history: Sdk11.GetParameterHistoryCommand,
|
|
70676
|
+
get_parameters: Sdk11.GetParametersCommand,
|
|
70677
|
+
get_parameters_by_path: Sdk11.GetParametersByPathCommand,
|
|
70678
|
+
get_patch_baseline: Sdk11.GetPatchBaselineCommand,
|
|
70679
|
+
get_patch_baseline_for_patch_group: Sdk11.GetPatchBaselineForPatchGroupCommand,
|
|
70680
|
+
get_resource_policies: Sdk11.GetResourcePoliciesCommand,
|
|
70681
|
+
get_service_setting: Sdk11.GetServiceSettingCommand,
|
|
70682
|
+
label_parameter_version: Sdk11.LabelParameterVersionCommand,
|
|
70683
|
+
list_association_versions: Sdk11.ListAssociationVersionsCommand,
|
|
70684
|
+
list_associations: Sdk11.ListAssociationsCommand,
|
|
70685
|
+
list_command_invocations: Sdk11.ListCommandInvocationsCommand,
|
|
70686
|
+
list_commands: Sdk11.ListCommandsCommand,
|
|
70687
|
+
list_compliance_items: Sdk11.ListComplianceItemsCommand,
|
|
70688
|
+
list_compliance_summaries: Sdk11.ListComplianceSummariesCommand,
|
|
70689
|
+
list_document_metadata_history: Sdk11.ListDocumentMetadataHistoryCommand,
|
|
70690
|
+
list_document_versions: Sdk11.ListDocumentVersionsCommand,
|
|
70691
|
+
list_documents: Sdk11.ListDocumentsCommand,
|
|
70692
|
+
list_inventory_entries: Sdk11.ListInventoryEntriesCommand,
|
|
70693
|
+
list_nodes: Sdk11.ListNodesCommand,
|
|
70694
|
+
list_nodes_summary: Sdk11.ListNodesSummaryCommand,
|
|
70695
|
+
list_ops_item_events: Sdk11.ListOpsItemEventsCommand,
|
|
70696
|
+
list_ops_item_related_items: Sdk11.ListOpsItemRelatedItemsCommand,
|
|
70697
|
+
list_ops_metadata: Sdk11.ListOpsMetadataCommand,
|
|
70698
|
+
list_resource_compliance_summaries: Sdk11.ListResourceComplianceSummariesCommand,
|
|
70699
|
+
list_resource_data_sync: Sdk11.ListResourceDataSyncCommand,
|
|
70700
|
+
list_tags_for_resource: Sdk11.ListTagsForResourceCommand,
|
|
70701
|
+
modify_document_permission: Sdk11.ModifyDocumentPermissionCommand,
|
|
70702
|
+
put_compliance_items: Sdk11.PutComplianceItemsCommand,
|
|
70703
|
+
put_inventory: Sdk11.PutInventoryCommand,
|
|
70704
|
+
put_parameter: Sdk11.PutParameterCommand,
|
|
70705
|
+
put_resource_policy: Sdk11.PutResourcePolicyCommand,
|
|
70706
|
+
register_default_patch_baseline: Sdk11.RegisterDefaultPatchBaselineCommand,
|
|
70707
|
+
register_patch_baseline_for_patch_group: Sdk11.RegisterPatchBaselineForPatchGroupCommand,
|
|
70708
|
+
register_target_with_maintenance_window: Sdk11.RegisterTargetWithMaintenanceWindowCommand,
|
|
70709
|
+
register_task_with_maintenance_window: Sdk11.RegisterTaskWithMaintenanceWindowCommand,
|
|
70710
|
+
remove_tags_from_resource: Sdk11.RemoveTagsFromResourceCommand,
|
|
70711
|
+
reset_service_setting: Sdk11.ResetServiceSettingCommand,
|
|
70712
|
+
resume_session: Sdk11.ResumeSessionCommand,
|
|
70713
|
+
send_automation_signal: Sdk11.SendAutomationSignalCommand,
|
|
70714
|
+
send_command: Sdk11.SendCommandCommand,
|
|
70715
|
+
start_access_request: Sdk11.StartAccessRequestCommand,
|
|
70716
|
+
start_associations_once: Sdk11.StartAssociationsOnceCommand,
|
|
70717
|
+
start_automation_execution: Sdk11.StartAutomationExecutionCommand,
|
|
70718
|
+
start_change_request_execution: Sdk11.StartChangeRequestExecutionCommand,
|
|
70719
|
+
start_execution_preview: Sdk11.StartExecutionPreviewCommand,
|
|
70720
|
+
start_session: Sdk11.StartSessionCommand,
|
|
70721
|
+
stop_automation_execution: Sdk11.StopAutomationExecutionCommand,
|
|
70722
|
+
terminate_session: Sdk11.TerminateSessionCommand,
|
|
70723
|
+
unlabel_parameter_version: Sdk11.UnlabelParameterVersionCommand,
|
|
70724
|
+
update_association: Sdk11.UpdateAssociationCommand,
|
|
70725
|
+
update_association_status: Sdk11.UpdateAssociationStatusCommand,
|
|
70726
|
+
update_document: Sdk11.UpdateDocumentCommand,
|
|
70727
|
+
update_document_default_version: Sdk11.UpdateDocumentDefaultVersionCommand,
|
|
70728
|
+
update_document_metadata: Sdk11.UpdateDocumentMetadataCommand,
|
|
70729
|
+
update_maintenance_window: Sdk11.UpdateMaintenanceWindowCommand,
|
|
70730
|
+
update_maintenance_window_target: Sdk11.UpdateMaintenanceWindowTargetCommand,
|
|
70731
|
+
update_maintenance_window_task: Sdk11.UpdateMaintenanceWindowTaskCommand,
|
|
70732
|
+
update_managed_instance_role: Sdk11.UpdateManagedInstanceRoleCommand,
|
|
70733
|
+
update_ops_item: Sdk11.UpdateOpsItemCommand,
|
|
70734
|
+
update_ops_metadata: Sdk11.UpdateOpsMetadataCommand,
|
|
70735
|
+
update_patch_baseline: Sdk11.UpdatePatchBaselineCommand,
|
|
70736
|
+
update_resource_data_sync: Sdk11.UpdateResourceDataSyncCommand,
|
|
70737
|
+
update_service_setting: Sdk11.UpdateServiceSettingCommand
|
|
70673
70738
|
};
|
|
70674
70739
|
|
|
70675
70740
|
// src/aws/clients/index.ts
|
|
70676
70741
|
var AllClientsDefault = mergeAll6(
|
|
70742
|
+
ACMClient2.Default(),
|
|
70677
70743
|
ApiGatewayV2Client2.Default(),
|
|
70678
70744
|
CloudFrontClient2.Default(),
|
|
70679
70745
|
CloudWatchLogsClient2.Default(),
|
|
@@ -70686,6 +70752,7 @@ var AllClientsDefault = mergeAll6(
|
|
|
70686
70752
|
SSMClient2.Default()
|
|
70687
70753
|
);
|
|
70688
70754
|
var makeClients = (config2) => mergeAll6(
|
|
70755
|
+
ACMClient2.Default(config2?.acm),
|
|
70689
70756
|
ApiGatewayV2Client2.Default(config2?.apigatewayv2),
|
|
70690
70757
|
CloudFrontClient2.Default(config2?.cloudfront),
|
|
70691
70758
|
CloudWatchLogsClient2.Default(config2?.cloudwatch_logs),
|
|
@@ -71845,6 +71912,40 @@ var deleteBucket = (bucketName) => Effect_exports.gen(function* () {
|
|
|
71845
71912
|
);
|
|
71846
71913
|
});
|
|
71847
71914
|
|
|
71915
|
+
// src/aws/acm.ts
|
|
71916
|
+
var getWildcard = (domain) => {
|
|
71917
|
+
const parts2 = domain.split(".");
|
|
71918
|
+
if (parts2.length < 2) return domain;
|
|
71919
|
+
return `*.${parts2.slice(1).join(".")}`;
|
|
71920
|
+
};
|
|
71921
|
+
var domainCoveredBy = (domain, coveredDomains) => coveredDomains.includes(domain) || coveredDomains.includes(getWildcard(domain));
|
|
71922
|
+
var findCertificate = (domain) => Effect_exports.gen(function* () {
|
|
71923
|
+
let nextToken;
|
|
71924
|
+
do {
|
|
71925
|
+
const result = yield* acm_exports.make("list_certificates", {
|
|
71926
|
+
CertificateStatuses: ["ISSUED"],
|
|
71927
|
+
...nextToken ? { NextToken: nextToken } : {}
|
|
71928
|
+
});
|
|
71929
|
+
for (const cert of result.CertificateSummaryList ?? []) {
|
|
71930
|
+
if (!cert.CertificateArn) continue;
|
|
71931
|
+
const coveredDomains = cert.SubjectAlternativeNameSummaries ?? [];
|
|
71932
|
+
if (coveredDomains.length === 0 && cert.DomainName) {
|
|
71933
|
+
coveredDomains.push(cert.DomainName);
|
|
71934
|
+
}
|
|
71935
|
+
if (domainCoveredBy(domain, coveredDomains)) {
|
|
71936
|
+
yield* Effect_exports.logDebug(`Found ACM certificate: ${cert.CertificateArn} covering ${domain}`);
|
|
71937
|
+
return { certificateArn: cert.CertificateArn, coveredDomains };
|
|
71938
|
+
}
|
|
71939
|
+
}
|
|
71940
|
+
nextToken = result.NextToken;
|
|
71941
|
+
} while (nextToken);
|
|
71942
|
+
return yield* Effect_exports.fail(
|
|
71943
|
+
new Error(
|
|
71944
|
+
`No issued ACM certificate found in us-east-1 covering "${domain}". Create a certificate in AWS Certificate Manager (us-east-1 region) for your domain, then validate it via DNS before deploying.`
|
|
71945
|
+
)
|
|
71946
|
+
);
|
|
71947
|
+
});
|
|
71948
|
+
|
|
71848
71949
|
// src/aws/cloudfront.ts
|
|
71849
71950
|
var CACHING_OPTIMIZED_POLICY_ID = "658327ea-f89d-4fab-a63d-7e88639e58f6";
|
|
71850
71951
|
var ensureOAC = (input) => Effect_exports.gen(function* () {
|
|
@@ -71869,42 +71970,89 @@ var ensureOAC = (input) => Effect_exports.gen(function* () {
|
|
|
71869
71970
|
});
|
|
71870
71971
|
return { oacId: createResult.OriginAccessControl.Id };
|
|
71871
71972
|
});
|
|
71872
|
-
var
|
|
71873
|
-
|
|
71874
|
-
|
|
71875
|
-
|
|
71876
|
-
|
|
71877
|
-
|
|
71878
|
-
request.
|
|
71879
|
-
}
|
|
71880
|
-
|
|
71881
|
-
|
|
71882
|
-
|
|
71973
|
+
var generateViewerRequestCode = (config2) => {
|
|
71974
|
+
const lines3 = [];
|
|
71975
|
+
lines3.push("function handler(event) {");
|
|
71976
|
+
lines3.push(" var request = event.request;");
|
|
71977
|
+
if (config2.redirectWwwDomain) {
|
|
71978
|
+
const primaryDomain = config2.redirectWwwDomain.replace(/^www\./, "");
|
|
71979
|
+
lines3.push(" var host = request.headers.host && request.headers.host.value;");
|
|
71980
|
+
lines3.push(` if (host === '${config2.redirectWwwDomain}') {`);
|
|
71981
|
+
lines3.push(" return {");
|
|
71982
|
+
lines3.push(" statusCode: 301,");
|
|
71983
|
+
lines3.push(" statusDescription: 'Moved Permanently',");
|
|
71984
|
+
lines3.push(` headers: { location: { value: 'https://${primaryDomain}' + request.uri } }`);
|
|
71985
|
+
lines3.push(" };");
|
|
71986
|
+
lines3.push(" }");
|
|
71987
|
+
}
|
|
71988
|
+
if (config2.rewriteUrls) {
|
|
71989
|
+
lines3.push(" var uri = request.uri;");
|
|
71990
|
+
lines3.push(" if (uri.endsWith('/')) {");
|
|
71991
|
+
lines3.push(" request.uri += 'index.html';");
|
|
71992
|
+
lines3.push(" } else if (!uri.includes('.')) {");
|
|
71993
|
+
lines3.push(" request.uri += '/index.html';");
|
|
71994
|
+
lines3.push(" }");
|
|
71995
|
+
}
|
|
71996
|
+
lines3.push(" return request;");
|
|
71997
|
+
lines3.push("}");
|
|
71998
|
+
return lines3.join("\n");
|
|
71999
|
+
};
|
|
72000
|
+
var buildFunctionComment = (config2) => {
|
|
72001
|
+
const parts2 = [];
|
|
72002
|
+
if (config2.rewriteUrls) parts2.push("URL rewrite");
|
|
72003
|
+
if (config2.redirectWwwDomain) parts2.push("www redirect");
|
|
72004
|
+
return `effortless: ${parts2.join(" + ") || "viewer request"}`;
|
|
72005
|
+
};
|
|
72006
|
+
var ensureViewerRequestFunction = (name, config2) => Effect_exports.gen(function* () {
|
|
72007
|
+
const functionCode = generateViewerRequestCode(config2);
|
|
72008
|
+
const encodedCode = new TextEncoder().encode(functionCode);
|
|
72009
|
+
const comment = buildFunctionComment(config2);
|
|
71883
72010
|
const list5 = yield* cloudfront_exports.make("list_functions", {});
|
|
71884
72011
|
const existing = list5.FunctionList?.Items?.find((f) => f.Name === name);
|
|
71885
72012
|
if (existing) {
|
|
71886
|
-
yield*
|
|
72013
|
+
const getResult = yield* cloudfront_exports.make("get_function", {
|
|
72014
|
+
Name: name,
|
|
72015
|
+
Stage: "LIVE"
|
|
72016
|
+
});
|
|
72017
|
+
const currentCode = getResult.FunctionCode ? new TextDecoder().decode(getResult.FunctionCode) : "";
|
|
72018
|
+
if (currentCode === functionCode) {
|
|
72019
|
+
yield* Effect_exports.logDebug(`CloudFront Function ${name} is up to date, skipping update`);
|
|
72020
|
+
return { functionArn: existing.FunctionMetadata.FunctionARN };
|
|
72021
|
+
}
|
|
72022
|
+
yield* Effect_exports.logDebug(`CloudFront Function ${name} code changed, updating...`);
|
|
72023
|
+
const updateResult = yield* cloudfront_exports.make("update_function", {
|
|
72024
|
+
Name: name,
|
|
72025
|
+
IfMatch: getResult.ETag,
|
|
72026
|
+
FunctionConfig: { Comment: comment, Runtime: "cloudfront-js-2.0" },
|
|
72027
|
+
FunctionCode: encodedCode
|
|
72028
|
+
});
|
|
72029
|
+
yield* cloudfront_exports.make("publish_function", {
|
|
72030
|
+
Name: name,
|
|
72031
|
+
IfMatch: updateResult.ETag
|
|
72032
|
+
});
|
|
71887
72033
|
return { functionArn: existing.FunctionMetadata.FunctionARN };
|
|
71888
72034
|
}
|
|
71889
72035
|
yield* Effect_exports.logDebug(`Creating CloudFront Function: ${name}`);
|
|
71890
72036
|
const result = yield* cloudfront_exports.make("create_function", {
|
|
71891
72037
|
Name: name,
|
|
71892
|
-
FunctionConfig: {
|
|
71893
|
-
|
|
71894
|
-
Runtime: "cloudfront-js-2.0"
|
|
71895
|
-
},
|
|
71896
|
-
FunctionCode: new TextEncoder().encode(URL_REWRITE_FUNCTION_CODE)
|
|
72038
|
+
FunctionConfig: { Comment: comment, Runtime: "cloudfront-js-2.0" },
|
|
72039
|
+
FunctionCode: encodedCode
|
|
71897
72040
|
});
|
|
71898
|
-
const etag = result.ETag;
|
|
71899
72041
|
yield* cloudfront_exports.make("publish_function", {
|
|
71900
72042
|
Name: name,
|
|
71901
|
-
IfMatch:
|
|
72043
|
+
IfMatch: result.ETag
|
|
71902
72044
|
});
|
|
71903
72045
|
return { functionArn: result.FunctionSummary.FunctionMetadata.FunctionARN };
|
|
71904
72046
|
});
|
|
71905
72047
|
var makeDistComment = (project2, stage, handlerName) => `effortless: ${project2}/${stage}/${handlerName}`;
|
|
71906
72048
|
var ensureDistribution = (input) => Effect_exports.gen(function* () {
|
|
71907
|
-
const { project: project2, stage, handlerName, bucketName, bucketRegion, oacId, spa, index, tags: tags2, urlRewriteFunctionArn } = input;
|
|
72049
|
+
const { project: project2, stage, handlerName, bucketName, bucketRegion, oacId, spa, index, tags: tags2, urlRewriteFunctionArn, aliases, acmCertificateArn } = input;
|
|
72050
|
+
const aliasesConfig = aliases && aliases.length > 0 ? { Quantity: aliases.length, Items: aliases } : { Quantity: 0, Items: [] };
|
|
72051
|
+
const viewerCertificate = acmCertificateArn ? {
|
|
72052
|
+
ACMCertificateArn: acmCertificateArn,
|
|
72053
|
+
SSLSupportMethod: "sni-only",
|
|
72054
|
+
MinimumProtocolVersion: "TLSv1.2_2021"
|
|
72055
|
+
} : void 0;
|
|
71908
72056
|
const functionAssociations = urlRewriteFunctionArn ? { Quantity: 1, Items: [{ FunctionARN: urlRewriteFunctionArn, EventType: "viewer-request" }] } : { Quantity: 0, Items: [] };
|
|
71909
72057
|
const comment = makeDistComment(project2, stage, handlerName);
|
|
71910
72058
|
const originId = `S3-${bucketName}`;
|
|
@@ -71935,7 +72083,11 @@ var ensureDistribution = (input) => Effect_exports.gen(function* () {
|
|
|
71935
72083
|
const distResult = yield* cloudfront_exports.make("get_distribution", { Id: existing.Id });
|
|
71936
72084
|
const distributionArn = distResult.Distribution.ARN;
|
|
71937
72085
|
const currentOrigin = currentConfig.Origins?.Items?.[0];
|
|
71938
|
-
const
|
|
72086
|
+
const currentAliases = currentConfig.Aliases?.Items ?? [];
|
|
72087
|
+
const desiredAliases = aliases ?? [];
|
|
72088
|
+
const aliasesMatch = currentAliases.length === desiredAliases.length && desiredAliases.every((a) => currentAliases.includes(a));
|
|
72089
|
+
const certMatch = currentConfig.ViewerCertificate?.ACMCertificateArn === (acmCertificateArn ?? void 0);
|
|
72090
|
+
const needsUpdate = currentOrigin?.DomainName !== originDomain || currentOrigin?.OriginAccessControlId !== oacId || currentConfig.DefaultRootObject !== index || currentConfig.DefaultCacheBehavior?.CachePolicyId !== CACHING_OPTIMIZED_POLICY_ID || (currentConfig.CustomErrorResponses?.Quantity ?? 0) !== customErrorResponses.Quantity || (currentConfig.DefaultCacheBehavior?.FunctionAssociations?.Quantity ?? 0) !== functionAssociations.Quantity || currentConfig.DefaultCacheBehavior?.FunctionAssociations?.Items?.[0]?.FunctionARN !== (urlRewriteFunctionArn ?? void 0) || !aliasesMatch || !certMatch;
|
|
71939
72091
|
if (needsUpdate) {
|
|
71940
72092
|
yield* Effect_exports.logDebug(`CloudFront distribution ${existing.Id} config changed, updating...`);
|
|
71941
72093
|
const etag = configResult.ETag;
|
|
@@ -71951,6 +72103,7 @@ var ensureDistribution = (input) => Effect_exports.gen(function* () {
|
|
|
71951
72103
|
{
|
|
71952
72104
|
Id: originId,
|
|
71953
72105
|
DomainName: originDomain,
|
|
72106
|
+
OriginPath: "",
|
|
71954
72107
|
OriginAccessControlId: oacId,
|
|
71955
72108
|
S3OriginConfig: { OriginAccessIdentity: "" },
|
|
71956
72109
|
CustomHeaders: { Quantity: 0, Items: [] }
|
|
@@ -71971,6 +72124,8 @@ var ensureDistribution = (input) => Effect_exports.gen(function* () {
|
|
|
71971
72124
|
FunctionAssociations: functionAssociations,
|
|
71972
72125
|
ForwardedValues: void 0
|
|
71973
72126
|
},
|
|
72127
|
+
Aliases: aliasesConfig,
|
|
72128
|
+
...viewerCertificate ? { ViewerCertificate: viewerCertificate } : {},
|
|
71974
72129
|
DefaultRootObject: index,
|
|
71975
72130
|
CustomErrorResponses: customErrorResponses,
|
|
71976
72131
|
Enabled: true
|
|
@@ -72018,6 +72173,8 @@ var ensureDistribution = (input) => Effect_exports.gen(function* () {
|
|
|
72018
72173
|
CachePolicyId: CACHING_OPTIMIZED_POLICY_ID,
|
|
72019
72174
|
FunctionAssociations: functionAssociations
|
|
72020
72175
|
},
|
|
72176
|
+
Aliases: aliasesConfig,
|
|
72177
|
+
...viewerCertificate ? { ViewerCertificate: viewerCertificate } : {},
|
|
72021
72178
|
DefaultRootObject: index,
|
|
72022
72179
|
Enabled: true,
|
|
72023
72180
|
CustomErrorResponses: customErrorResponses,
|
|
@@ -72117,6 +72274,45 @@ var waitForDistributionDeployed = (distributionId) => Effect_exports.gen(functio
|
|
|
72117
72274
|
}
|
|
72118
72275
|
);
|
|
72119
72276
|
});
|
|
72277
|
+
var cleanupOrphanedFunctions = (project2, stage) => Effect_exports.gen(function* () {
|
|
72278
|
+
const prefix = `${project2}-${stage}-`;
|
|
72279
|
+
const list5 = yield* cloudfront_exports.make("list_functions", {});
|
|
72280
|
+
const ourFunctions = (list5.FunctionList?.Items ?? []).filter(
|
|
72281
|
+
(f) => f.Name?.startsWith(prefix)
|
|
72282
|
+
);
|
|
72283
|
+
if (ourFunctions.length === 0) return;
|
|
72284
|
+
const resources = yield* getResourcesByTags(project2, stage);
|
|
72285
|
+
const distIds = resources.filter((r) => r.ResourceARN?.includes(":distribution/")).map((r) => r.ResourceARN.split("/").pop()).filter(Boolean);
|
|
72286
|
+
const activeFunctionArns = /* @__PURE__ */ new Set();
|
|
72287
|
+
for (const distId of distIds) {
|
|
72288
|
+
const config2 = yield* cloudfront_exports.make("get_distribution_config", { Id: distId });
|
|
72289
|
+
const associations = config2.DistributionConfig?.DefaultCacheBehavior?.FunctionAssociations?.Items ?? [];
|
|
72290
|
+
for (const assoc of associations) {
|
|
72291
|
+
if (assoc.FunctionARN) activeFunctionArns.add(assoc.FunctionARN);
|
|
72292
|
+
}
|
|
72293
|
+
}
|
|
72294
|
+
for (const fn2 of ourFunctions) {
|
|
72295
|
+
const arn = fn2.FunctionMetadata?.FunctionARN;
|
|
72296
|
+
if (arn && !activeFunctionArns.has(arn)) {
|
|
72297
|
+
yield* Effect_exports.logDebug(`Deleting orphaned CloudFront Function: ${fn2.Name}`);
|
|
72298
|
+
yield* cloudfront_exports.make("describe_function", {
|
|
72299
|
+
Name: fn2.Name,
|
|
72300
|
+
Stage: "LIVE"
|
|
72301
|
+
}).pipe(
|
|
72302
|
+
Effect_exports.flatMap(
|
|
72303
|
+
(desc) => cloudfront_exports.make("delete_function", {
|
|
72304
|
+
Name: fn2.Name,
|
|
72305
|
+
IfMatch: desc.ETag
|
|
72306
|
+
})
|
|
72307
|
+
),
|
|
72308
|
+
Effect_exports.catchIf(
|
|
72309
|
+
(e) => e._tag === "CloudFrontError",
|
|
72310
|
+
(e) => Effect_exports.logDebug(`Could not delete function ${fn2.Name}: ${e.cause.message}`)
|
|
72311
|
+
)
|
|
72312
|
+
);
|
|
72313
|
+
}
|
|
72314
|
+
}
|
|
72315
|
+
});
|
|
72120
72316
|
|
|
72121
72317
|
// src/aws/sqs.ts
|
|
72122
72318
|
var ensureFifoQueue = (input) => Effect_exports.gen(function* () {
|
|
@@ -72984,11 +73180,36 @@ var deployStaticSite = (input) => Effect_exports.gen(function* () {
|
|
|
72984
73180
|
});
|
|
72985
73181
|
const oacName = `${project2}-${stage}-oac`;
|
|
72986
73182
|
const { oacId } = yield* ensureOAC({ name: oacName });
|
|
73183
|
+
const domain = config2.domain;
|
|
73184
|
+
let aliases;
|
|
73185
|
+
let acmCertificateArn;
|
|
73186
|
+
let wwwDomain;
|
|
73187
|
+
if (domain) {
|
|
73188
|
+
const certResult = yield* findCertificate(domain);
|
|
73189
|
+
acmCertificateArn = certResult.certificateArn;
|
|
73190
|
+
const wwwCandidate = `www.${domain}`;
|
|
73191
|
+
const certCoversWww = certResult.coveredDomains.includes(wwwCandidate) || certResult.coveredDomains.includes(`*.${domain}`);
|
|
73192
|
+
if (certCoversWww) {
|
|
73193
|
+
aliases = [domain, wwwCandidate];
|
|
73194
|
+
wwwDomain = wwwCandidate;
|
|
73195
|
+
yield* Effect_exports.logDebug(`ACM certificate covers ${wwwCandidate}, enabling www \u2192 non-www redirect`);
|
|
73196
|
+
} else {
|
|
73197
|
+
aliases = [domain];
|
|
73198
|
+
yield* Effect_exports.logWarning(
|
|
73199
|
+
`ACM certificate does not cover ${wwwCandidate}. For SEO, add ${wwwCandidate} to your ACM certificate in us-east-1 to enable www \u2192 non-www redirect.`
|
|
73200
|
+
);
|
|
73201
|
+
}
|
|
73202
|
+
}
|
|
72987
73203
|
const isSpa = config2.spa ?? false;
|
|
73204
|
+
const needsUrlRewrite = !isSpa;
|
|
73205
|
+
const needsWwwRedirect = !!wwwDomain;
|
|
72988
73206
|
let urlRewriteFunctionArn;
|
|
72989
|
-
if (
|
|
72990
|
-
const fnName = `${project2}-${stage}-url-rewrite`;
|
|
72991
|
-
const result = yield*
|
|
73207
|
+
if (needsUrlRewrite || needsWwwRedirect) {
|
|
73208
|
+
const fnName = needsWwwRedirect ? `${project2}-${stage}-${handlerName}-viewer-req` : `${project2}-${stage}-url-rewrite`;
|
|
73209
|
+
const result = yield* ensureViewerRequestFunction(fnName, {
|
|
73210
|
+
rewriteUrls: needsUrlRewrite,
|
|
73211
|
+
redirectWwwDomain: wwwDomain
|
|
73212
|
+
});
|
|
72992
73213
|
urlRewriteFunctionArn = result.functionArn;
|
|
72993
73214
|
}
|
|
72994
73215
|
const index = config2.index ?? "index.html";
|
|
@@ -73002,13 +73223,15 @@ var deployStaticSite = (input) => Effect_exports.gen(function* () {
|
|
|
73002
73223
|
spa: isSpa,
|
|
73003
73224
|
index,
|
|
73004
73225
|
tags: makeTags(tagCtx, "cloudfront-distribution"),
|
|
73005
|
-
urlRewriteFunctionArn
|
|
73226
|
+
urlRewriteFunctionArn,
|
|
73227
|
+
aliases,
|
|
73228
|
+
acmCertificateArn
|
|
73006
73229
|
});
|
|
73007
73230
|
yield* putBucketPolicyForOAC(bucketName, distributionArn);
|
|
73008
73231
|
const sourceDir = path8.resolve(projectDir, config2.dir);
|
|
73009
73232
|
yield* syncFiles({ bucketName, sourceDir });
|
|
73010
73233
|
yield* invalidateDistribution(distributionId);
|
|
73011
|
-
const url2 = `https://${domainName}`;
|
|
73234
|
+
const url2 = domain ? `https://${domain}` : `https://${domainName}`;
|
|
73012
73235
|
yield* Effect_exports.logDebug(`Static site deployed: ${url2}`);
|
|
73013
73236
|
return {
|
|
73014
73237
|
exportName,
|
|
@@ -73345,7 +73568,8 @@ var buildStaticSiteTasks = (ctx, handlers, results) => {
|
|
|
73345
73568
|
}).pipe(Effect_exports.provide(clients_exports.makeClients({
|
|
73346
73569
|
s3: { region },
|
|
73347
73570
|
cloudfront: { region: "us-east-1" },
|
|
73348
|
-
resource_groups_tagging_api: { region: "us-east-1" }
|
|
73571
|
+
resource_groups_tagging_api: { region: "us-east-1" },
|
|
73572
|
+
acm: { region: "us-east-1" }
|
|
73349
73573
|
})));
|
|
73350
73574
|
results.push(result);
|
|
73351
73575
|
yield* ctx.logComplete(fn2.config.name ?? fn2.exportName, "site", "updated");
|
|
@@ -73493,6 +73717,17 @@ var deployProject = (input) => Effect_exports.gen(function* () {
|
|
|
73493
73717
|
...buildFifoQueueTasks(ctx, fifoQueueHandlers, fifoQueueResults)
|
|
73494
73718
|
];
|
|
73495
73719
|
yield* Effect_exports.all(tasks, { concurrency: DEPLOY_CONCURRENCY, discard: true });
|
|
73720
|
+
if (staticSiteResults.length > 0) {
|
|
73721
|
+
yield* cleanupOrphanedFunctions(input.project, stage).pipe(
|
|
73722
|
+
Effect_exports.provide(clients_exports.makeClients({
|
|
73723
|
+
cloudfront: { region: "us-east-1" },
|
|
73724
|
+
resource_groups_tagging_api: { region: "us-east-1" }
|
|
73725
|
+
})),
|
|
73726
|
+
Effect_exports.catchAll(
|
|
73727
|
+
(error4) => Effect_exports.logDebug(`CloudFront Function cleanup failed (non-fatal): ${error4}`)
|
|
73728
|
+
)
|
|
73729
|
+
);
|
|
73730
|
+
}
|
|
73496
73731
|
if (apiId) {
|
|
73497
73732
|
const activeRouteKeys = /* @__PURE__ */ new Set();
|
|
73498
73733
|
for (const { exports } of httpHandlers) {
|
|
@@ -73622,7 +73857,8 @@ var deployCommand = Command_exports.make(
|
|
|
73622
73857
|
dynamodb: { region: finalRegion },
|
|
73623
73858
|
resource_groups_tagging_api: { region: finalRegion },
|
|
73624
73859
|
s3: { region: finalRegion },
|
|
73625
|
-
cloudfront: { region: "us-east-1" }
|
|
73860
|
+
cloudfront: { region: "us-east-1" },
|
|
73861
|
+
acm: { region: "us-east-1" }
|
|
73626
73862
|
});
|
|
73627
73863
|
const logLevel2 = verbose ? LogLevel_exports.Debug : LogLevel_exports.Warning;
|
|
73628
73864
|
const projectDir = process.cwd();
|