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 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: () => make68
69285
+ make: () => make69
69221
69286
  });
69222
- import * as Sdk from "@aws-sdk/client-apigatewayv2";
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 Sdk.ApiGatewayV2Client(config2 ?? {});
69292
+ return new Sdk2.ApiGatewayV2Client(config2 ?? {});
69228
69293
  })
69229
69294
  );
69230
69295
  };
69231
- var make68 = fn("aws_ApiGatewayV2")(function* (actionName, actionInput) {
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 Sdk.ApiGatewayV2ServiceException) {
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: Sdk.CreateApiCommand,
69262
- create_api_mapping: Sdk.CreateApiMappingCommand,
69263
- create_authorizer: Sdk.CreateAuthorizerCommand,
69264
- create_deployment: Sdk.CreateDeploymentCommand,
69265
- create_domain_name: Sdk.CreateDomainNameCommand,
69266
- create_integration: Sdk.CreateIntegrationCommand,
69267
- create_integration_response: Sdk.CreateIntegrationResponseCommand,
69268
- create_model: Sdk.CreateModelCommand,
69269
- create_portal: Sdk.CreatePortalCommand,
69270
- create_portal_product: Sdk.CreatePortalProductCommand,
69271
- create_product_page: Sdk.CreateProductPageCommand,
69272
- create_product_rest_endpoint_page: Sdk.CreateProductRestEndpointPageCommand,
69273
- create_route: Sdk.CreateRouteCommand,
69274
- create_route_response: Sdk.CreateRouteResponseCommand,
69275
- create_routing_rule: Sdk.CreateRoutingRuleCommand,
69276
- create_stage: Sdk.CreateStageCommand,
69277
- create_vpc_link: Sdk.CreateVpcLinkCommand,
69278
- delete_access_log_settings: Sdk.DeleteAccessLogSettingsCommand,
69279
- delete_api: Sdk.DeleteApiCommand,
69280
- delete_api_mapping: Sdk.DeleteApiMappingCommand,
69281
- delete_authorizer: Sdk.DeleteAuthorizerCommand,
69282
- delete_cors_configuration: Sdk.DeleteCorsConfigurationCommand,
69283
- delete_deployment: Sdk.DeleteDeploymentCommand,
69284
- delete_domain_name: Sdk.DeleteDomainNameCommand,
69285
- delete_integration: Sdk.DeleteIntegrationCommand,
69286
- delete_integration_response: Sdk.DeleteIntegrationResponseCommand,
69287
- delete_model: Sdk.DeleteModelCommand,
69288
- delete_portal: Sdk.DeletePortalCommand,
69289
- delete_portal_product: Sdk.DeletePortalProductCommand,
69290
- delete_portal_product_sharing_policy: Sdk.DeletePortalProductSharingPolicyCommand,
69291
- delete_product_page: Sdk.DeleteProductPageCommand,
69292
- delete_product_rest_endpoint_page: Sdk.DeleteProductRestEndpointPageCommand,
69293
- delete_route: Sdk.DeleteRouteCommand,
69294
- delete_route_request_parameter: Sdk.DeleteRouteRequestParameterCommand,
69295
- delete_route_response: Sdk.DeleteRouteResponseCommand,
69296
- delete_route_settings: Sdk.DeleteRouteSettingsCommand,
69297
- delete_routing_rule: Sdk.DeleteRoutingRuleCommand,
69298
- delete_stage: Sdk.DeleteStageCommand,
69299
- delete_vpc_link: Sdk.DeleteVpcLinkCommand,
69300
- disable_portal: Sdk.DisablePortalCommand,
69301
- export_api: Sdk.ExportApiCommand,
69302
- get_api: Sdk.GetApiCommand,
69303
- get_api_mapping: Sdk.GetApiMappingCommand,
69304
- get_api_mappings: Sdk.GetApiMappingsCommand,
69305
- get_apis: Sdk.GetApisCommand,
69306
- get_authorizer: Sdk.GetAuthorizerCommand,
69307
- get_authorizers: Sdk.GetAuthorizersCommand,
69308
- get_deployment: Sdk.GetDeploymentCommand,
69309
- get_deployments: Sdk.GetDeploymentsCommand,
69310
- get_domain_name: Sdk.GetDomainNameCommand,
69311
- get_domain_names: Sdk.GetDomainNamesCommand,
69312
- get_integration: Sdk.GetIntegrationCommand,
69313
- get_integration_response: Sdk.GetIntegrationResponseCommand,
69314
- get_integration_responses: Sdk.GetIntegrationResponsesCommand,
69315
- get_integrations: Sdk.GetIntegrationsCommand,
69316
- get_model: Sdk.GetModelCommand,
69317
- get_model_template: Sdk.GetModelTemplateCommand,
69318
- get_models: Sdk.GetModelsCommand,
69319
- get_portal: Sdk.GetPortalCommand,
69320
- get_portal_product: Sdk.GetPortalProductCommand,
69321
- get_portal_product_sharing_policy: Sdk.GetPortalProductSharingPolicyCommand,
69322
- get_product_page: Sdk.GetProductPageCommand,
69323
- get_product_rest_endpoint_page: Sdk.GetProductRestEndpointPageCommand,
69324
- get_route: Sdk.GetRouteCommand,
69325
- get_route_response: Sdk.GetRouteResponseCommand,
69326
- get_route_responses: Sdk.GetRouteResponsesCommand,
69327
- get_routes: Sdk.GetRoutesCommand,
69328
- get_routing_rule: Sdk.GetRoutingRuleCommand,
69329
- get_stage: Sdk.GetStageCommand,
69330
- get_stages: Sdk.GetStagesCommand,
69331
- get_tags: Sdk.GetTagsCommand,
69332
- get_vpc_link: Sdk.GetVpcLinkCommand,
69333
- get_vpc_links: Sdk.GetVpcLinksCommand,
69334
- import_api: Sdk.ImportApiCommand,
69335
- list_portal_products: Sdk.ListPortalProductsCommand,
69336
- list_portals: Sdk.ListPortalsCommand,
69337
- list_product_pages: Sdk.ListProductPagesCommand,
69338
- list_product_rest_endpoint_pages: Sdk.ListProductRestEndpointPagesCommand,
69339
- list_routing_rules: Sdk.ListRoutingRulesCommand,
69340
- preview_portal: Sdk.PreviewPortalCommand,
69341
- publish_portal: Sdk.PublishPortalCommand,
69342
- put_portal_product_sharing_policy: Sdk.PutPortalProductSharingPolicyCommand,
69343
- put_routing_rule: Sdk.PutRoutingRuleCommand,
69344
- reimport_api: Sdk.ReimportApiCommand,
69345
- reset_authorizers_cache: Sdk.ResetAuthorizersCacheCommand,
69346
- tag_resource: Sdk.TagResourceCommand,
69347
- untag_resource: Sdk.UntagResourceCommand,
69348
- update_api: Sdk.UpdateApiCommand,
69349
- update_api_mapping: Sdk.UpdateApiMappingCommand,
69350
- update_authorizer: Sdk.UpdateAuthorizerCommand,
69351
- update_deployment: Sdk.UpdateDeploymentCommand,
69352
- update_domain_name: Sdk.UpdateDomainNameCommand,
69353
- update_integration: Sdk.UpdateIntegrationCommand,
69354
- update_integration_response: Sdk.UpdateIntegrationResponseCommand,
69355
- update_model: Sdk.UpdateModelCommand,
69356
- update_portal: Sdk.UpdatePortalCommand,
69357
- update_portal_product: Sdk.UpdatePortalProductCommand,
69358
- update_product_page: Sdk.UpdateProductPageCommand,
69359
- update_product_rest_endpoint_page: Sdk.UpdateProductRestEndpointPageCommand,
69360
- update_route: Sdk.UpdateRouteCommand,
69361
- update_route_response: Sdk.UpdateRouteResponseCommand,
69362
- update_stage: Sdk.UpdateStageCommand,
69363
- update_vpc_link: Sdk.UpdateVpcLinkCommand
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: () => make69
69436
+ make: () => make70
69372
69437
  });
69373
- import * as Sdk2 from "@aws-sdk/client-cloudfront";
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 Sdk2.CloudFrontClient(config2 ?? {});
69443
+ return new Sdk3.CloudFrontClient(config2 ?? {});
69379
69444
  })
69380
69445
  );
69381
69446
  };
69382
- var make69 = fn("aws_CloudFront")(function* (actionName, actionInput) {
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 Sdk2.CloudFrontServiceException) {
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: Sdk2.AssociateAliasCommand,
69413
- associate_distribution_tenant_web_acl: Sdk2.AssociateDistributionTenantWebACLCommand,
69414
- associate_distribution_web_acl: Sdk2.AssociateDistributionWebACLCommand,
69415
- copy_distribution: Sdk2.CopyDistributionCommand,
69416
- create_anycast_ip_list: Sdk2.CreateAnycastIpListCommand,
69417
- create_cache_policy: Sdk2.CreateCachePolicyCommand,
69418
- create_cloud_front_origin_access_identity: Sdk2.CreateCloudFrontOriginAccessIdentityCommand,
69419
- create_connection_function: Sdk2.CreateConnectionFunctionCommand,
69420
- create_connection_group: Sdk2.CreateConnectionGroupCommand,
69421
- create_continuous_deployment_policy: Sdk2.CreateContinuousDeploymentPolicyCommand,
69422
- create_distribution: Sdk2.CreateDistributionCommand,
69423
- create_distribution_tenant: Sdk2.CreateDistributionTenantCommand,
69424
- create_distribution_with_tags: Sdk2.CreateDistributionWithTagsCommand,
69425
- create_field_level_encryption_config: Sdk2.CreateFieldLevelEncryptionConfigCommand,
69426
- create_field_level_encryption_profile: Sdk2.CreateFieldLevelEncryptionProfileCommand,
69427
- create_function: Sdk2.CreateFunctionCommand,
69428
- create_invalidation: Sdk2.CreateInvalidationCommand,
69429
- create_invalidation_for_distribution_tenant: Sdk2.CreateInvalidationForDistributionTenantCommand,
69430
- create_key_group: Sdk2.CreateKeyGroupCommand,
69431
- create_key_value_store: Sdk2.CreateKeyValueStoreCommand,
69432
- create_monitoring_subscription: Sdk2.CreateMonitoringSubscriptionCommand,
69433
- create_origin_access_control: Sdk2.CreateOriginAccessControlCommand,
69434
- create_origin_request_policy: Sdk2.CreateOriginRequestPolicyCommand,
69435
- create_public_key: Sdk2.CreatePublicKeyCommand,
69436
- create_realtime_log_config: Sdk2.CreateRealtimeLogConfigCommand,
69437
- create_response_headers_policy: Sdk2.CreateResponseHeadersPolicyCommand,
69438
- create_streaming_distribution: Sdk2.CreateStreamingDistributionCommand,
69439
- create_streaming_distribution_with_tags: Sdk2.CreateStreamingDistributionWithTagsCommand,
69440
- create_trust_store: Sdk2.CreateTrustStoreCommand,
69441
- create_vpc_origin: Sdk2.CreateVpcOriginCommand,
69442
- delete_anycast_ip_list: Sdk2.DeleteAnycastIpListCommand,
69443
- delete_cache_policy: Sdk2.DeleteCachePolicyCommand,
69444
- delete_cloud_front_origin_access_identity: Sdk2.DeleteCloudFrontOriginAccessIdentityCommand,
69445
- delete_connection_function: Sdk2.DeleteConnectionFunctionCommand,
69446
- delete_connection_group: Sdk2.DeleteConnectionGroupCommand,
69447
- delete_continuous_deployment_policy: Sdk2.DeleteContinuousDeploymentPolicyCommand,
69448
- delete_distribution: Sdk2.DeleteDistributionCommand,
69449
- delete_distribution_tenant: Sdk2.DeleteDistributionTenantCommand,
69450
- delete_field_level_encryption_config: Sdk2.DeleteFieldLevelEncryptionConfigCommand,
69451
- delete_field_level_encryption_profile: Sdk2.DeleteFieldLevelEncryptionProfileCommand,
69452
- delete_function: Sdk2.DeleteFunctionCommand,
69453
- delete_key_group: Sdk2.DeleteKeyGroupCommand,
69454
- delete_key_value_store: Sdk2.DeleteKeyValueStoreCommand,
69455
- delete_monitoring_subscription: Sdk2.DeleteMonitoringSubscriptionCommand,
69456
- delete_origin_access_control: Sdk2.DeleteOriginAccessControlCommand,
69457
- delete_origin_request_policy: Sdk2.DeleteOriginRequestPolicyCommand,
69458
- delete_public_key: Sdk2.DeletePublicKeyCommand,
69459
- delete_realtime_log_config: Sdk2.DeleteRealtimeLogConfigCommand,
69460
- delete_resource_policy: Sdk2.DeleteResourcePolicyCommand,
69461
- delete_response_headers_policy: Sdk2.DeleteResponseHeadersPolicyCommand,
69462
- delete_streaming_distribution: Sdk2.DeleteStreamingDistributionCommand,
69463
- delete_trust_store: Sdk2.DeleteTrustStoreCommand,
69464
- delete_vpc_origin: Sdk2.DeleteVpcOriginCommand,
69465
- describe_connection_function: Sdk2.DescribeConnectionFunctionCommand,
69466
- describe_function: Sdk2.DescribeFunctionCommand,
69467
- describe_key_value_store: Sdk2.DescribeKeyValueStoreCommand,
69468
- disassociate_distribution_tenant_web_acl: Sdk2.DisassociateDistributionTenantWebACLCommand,
69469
- disassociate_distribution_web_acl: Sdk2.DisassociateDistributionWebACLCommand,
69470
- get_anycast_ip_list: Sdk2.GetAnycastIpListCommand,
69471
- get_cache_policy: Sdk2.GetCachePolicyCommand,
69472
- get_cache_policy_config: Sdk2.GetCachePolicyConfigCommand,
69473
- get_cloud_front_origin_access_identity: Sdk2.GetCloudFrontOriginAccessIdentityCommand,
69474
- get_cloud_front_origin_access_identity_config: Sdk2.GetCloudFrontOriginAccessIdentityConfigCommand,
69475
- get_connection_function: Sdk2.GetConnectionFunctionCommand,
69476
- get_connection_group: Sdk2.GetConnectionGroupCommand,
69477
- get_connection_group_by_routing_endpoint: Sdk2.GetConnectionGroupByRoutingEndpointCommand,
69478
- get_continuous_deployment_policy: Sdk2.GetContinuousDeploymentPolicyCommand,
69479
- get_continuous_deployment_policy_config: Sdk2.GetContinuousDeploymentPolicyConfigCommand,
69480
- get_distribution: Sdk2.GetDistributionCommand,
69481
- get_distribution_config: Sdk2.GetDistributionConfigCommand,
69482
- get_distribution_tenant: Sdk2.GetDistributionTenantCommand,
69483
- get_distribution_tenant_by_domain: Sdk2.GetDistributionTenantByDomainCommand,
69484
- get_field_level_encryption: Sdk2.GetFieldLevelEncryptionCommand,
69485
- get_field_level_encryption_config: Sdk2.GetFieldLevelEncryptionConfigCommand,
69486
- get_field_level_encryption_profile: Sdk2.GetFieldLevelEncryptionProfileCommand,
69487
- get_field_level_encryption_profile_config: Sdk2.GetFieldLevelEncryptionProfileConfigCommand,
69488
- get_function: Sdk2.GetFunctionCommand,
69489
- get_invalidation: Sdk2.GetInvalidationCommand,
69490
- get_invalidation_for_distribution_tenant: Sdk2.GetInvalidationForDistributionTenantCommand,
69491
- get_key_group: Sdk2.GetKeyGroupCommand,
69492
- get_key_group_config: Sdk2.GetKeyGroupConfigCommand,
69493
- get_managed_certificate_details: Sdk2.GetManagedCertificateDetailsCommand,
69494
- get_monitoring_subscription: Sdk2.GetMonitoringSubscriptionCommand,
69495
- get_origin_access_control: Sdk2.GetOriginAccessControlCommand,
69496
- get_origin_access_control_config: Sdk2.GetOriginAccessControlConfigCommand,
69497
- get_origin_request_policy: Sdk2.GetOriginRequestPolicyCommand,
69498
- get_origin_request_policy_config: Sdk2.GetOriginRequestPolicyConfigCommand,
69499
- get_public_key: Sdk2.GetPublicKeyCommand,
69500
- get_public_key_config: Sdk2.GetPublicKeyConfigCommand,
69501
- get_realtime_log_config: Sdk2.GetRealtimeLogConfigCommand,
69502
- get_resource_policy: Sdk2.GetResourcePolicyCommand,
69503
- get_response_headers_policy: Sdk2.GetResponseHeadersPolicyCommand,
69504
- get_response_headers_policy_config: Sdk2.GetResponseHeadersPolicyConfigCommand,
69505
- get_streaming_distribution: Sdk2.GetStreamingDistributionCommand,
69506
- get_streaming_distribution_config: Sdk2.GetStreamingDistributionConfigCommand,
69507
- get_trust_store: Sdk2.GetTrustStoreCommand,
69508
- get_vpc_origin: Sdk2.GetVpcOriginCommand,
69509
- list_anycast_ip_lists: Sdk2.ListAnycastIpListsCommand,
69510
- list_cache_policies: Sdk2.ListCachePoliciesCommand,
69511
- list_cloud_front_origin_access_identities: Sdk2.ListCloudFrontOriginAccessIdentitiesCommand,
69512
- list_conflicting_aliases: Sdk2.ListConflictingAliasesCommand,
69513
- list_connection_functions: Sdk2.ListConnectionFunctionsCommand,
69514
- list_connection_groups: Sdk2.ListConnectionGroupsCommand,
69515
- list_continuous_deployment_policies: Sdk2.ListContinuousDeploymentPoliciesCommand,
69516
- list_distribution_tenants: Sdk2.ListDistributionTenantsCommand,
69517
- list_distribution_tenants_by_customization: Sdk2.ListDistributionTenantsByCustomizationCommand,
69518
- list_distributions: Sdk2.ListDistributionsCommand,
69519
- list_distributions_by_anycast_ip_list_id: Sdk2.ListDistributionsByAnycastIpListIdCommand,
69520
- list_distributions_by_cache_policy_id: Sdk2.ListDistributionsByCachePolicyIdCommand,
69521
- list_distributions_by_connection_function: Sdk2.ListDistributionsByConnectionFunctionCommand,
69522
- list_distributions_by_connection_mode: Sdk2.ListDistributionsByConnectionModeCommand,
69523
- list_distributions_by_key_group: Sdk2.ListDistributionsByKeyGroupCommand,
69524
- list_distributions_by_origin_request_policy_id: Sdk2.ListDistributionsByOriginRequestPolicyIdCommand,
69525
- list_distributions_by_owned_resource: Sdk2.ListDistributionsByOwnedResourceCommand,
69526
- list_distributions_by_realtime_log_config: Sdk2.ListDistributionsByRealtimeLogConfigCommand,
69527
- list_distributions_by_response_headers_policy_id: Sdk2.ListDistributionsByResponseHeadersPolicyIdCommand,
69528
- list_distributions_by_trust_store: Sdk2.ListDistributionsByTrustStoreCommand,
69529
- list_distributions_by_vpc_origin_id: Sdk2.ListDistributionsByVpcOriginIdCommand,
69530
- list_distributions_by_web_acl_id: Sdk2.ListDistributionsByWebACLIdCommand,
69531
- list_domain_conflicts: Sdk2.ListDomainConflictsCommand,
69532
- list_field_level_encryption_configs: Sdk2.ListFieldLevelEncryptionConfigsCommand,
69533
- list_field_level_encryption_profiles: Sdk2.ListFieldLevelEncryptionProfilesCommand,
69534
- list_functions: Sdk2.ListFunctionsCommand,
69535
- list_invalidations: Sdk2.ListInvalidationsCommand,
69536
- list_invalidations_for_distribution_tenant: Sdk2.ListInvalidationsForDistributionTenantCommand,
69537
- list_key_groups: Sdk2.ListKeyGroupsCommand,
69538
- list_key_value_stores: Sdk2.ListKeyValueStoresCommand,
69539
- list_origin_access_controls: Sdk2.ListOriginAccessControlsCommand,
69540
- list_origin_request_policies: Sdk2.ListOriginRequestPoliciesCommand,
69541
- list_public_keys: Sdk2.ListPublicKeysCommand,
69542
- list_realtime_log_configs: Sdk2.ListRealtimeLogConfigsCommand,
69543
- list_response_headers_policies: Sdk2.ListResponseHeadersPoliciesCommand,
69544
- list_streaming_distributions: Sdk2.ListStreamingDistributionsCommand,
69545
- list_tags_for_resource: Sdk2.ListTagsForResourceCommand,
69546
- list_trust_stores: Sdk2.ListTrustStoresCommand,
69547
- list_vpc_origins: Sdk2.ListVpcOriginsCommand,
69548
- publish_connection_function: Sdk2.PublishConnectionFunctionCommand,
69549
- publish_function: Sdk2.PublishFunctionCommand,
69550
- put_resource_policy: Sdk2.PutResourcePolicyCommand,
69551
- tag_resource: Sdk2.TagResourceCommand,
69552
- test_connection_function: Sdk2.TestConnectionFunctionCommand,
69553
- test_function: Sdk2.TestFunctionCommand,
69554
- untag_resource: Sdk2.UntagResourceCommand,
69555
- update_anycast_ip_list: Sdk2.UpdateAnycastIpListCommand,
69556
- update_cache_policy: Sdk2.UpdateCachePolicyCommand,
69557
- update_cloud_front_origin_access_identity: Sdk2.UpdateCloudFrontOriginAccessIdentityCommand,
69558
- update_connection_function: Sdk2.UpdateConnectionFunctionCommand,
69559
- update_connection_group: Sdk2.UpdateConnectionGroupCommand,
69560
- update_continuous_deployment_policy: Sdk2.UpdateContinuousDeploymentPolicyCommand,
69561
- update_distribution: Sdk2.UpdateDistributionCommand,
69562
- update_distribution_tenant: Sdk2.UpdateDistributionTenantCommand,
69563
- update_distribution_with_staging_config: Sdk2.UpdateDistributionWithStagingConfigCommand,
69564
- update_domain_association: Sdk2.UpdateDomainAssociationCommand,
69565
- update_field_level_encryption_config: Sdk2.UpdateFieldLevelEncryptionConfigCommand,
69566
- update_field_level_encryption_profile: Sdk2.UpdateFieldLevelEncryptionProfileCommand,
69567
- update_function: Sdk2.UpdateFunctionCommand,
69568
- update_key_group: Sdk2.UpdateKeyGroupCommand,
69569
- update_key_value_store: Sdk2.UpdateKeyValueStoreCommand,
69570
- update_origin_access_control: Sdk2.UpdateOriginAccessControlCommand,
69571
- update_origin_request_policy: Sdk2.UpdateOriginRequestPolicyCommand,
69572
- update_public_key: Sdk2.UpdatePublicKeyCommand,
69573
- update_realtime_log_config: Sdk2.UpdateRealtimeLogConfigCommand,
69574
- update_response_headers_policy: Sdk2.UpdateResponseHeadersPolicyCommand,
69575
- update_streaming_distribution: Sdk2.UpdateStreamingDistributionCommand,
69576
- update_trust_store: Sdk2.UpdateTrustStoreCommand,
69577
- update_vpc_origin: Sdk2.UpdateVpcOriginCommand,
69578
- verify_dns_configuration: Sdk2.VerifyDnsConfigurationCommand
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: () => make70
69651
+ make: () => make71
69587
69652
  });
69588
- import * as Sdk3 from "@aws-sdk/client-cloudwatch-logs";
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 Sdk3.CloudWatchLogsClient(config2 ?? {});
69658
+ return new Sdk4.CloudWatchLogsClient(config2 ?? {});
69594
69659
  })
69595
69660
  );
69596
69661
  };
69597
- var make70 = fn("aws_CloudWatchLogs")(function* (actionName, actionInput) {
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 Sdk3.CloudWatchLogsServiceException) {
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: Sdk3.AssociateKmsKeyCommand,
69628
- associate_source_to_s3_table_integration: Sdk3.AssociateSourceToS3TableIntegrationCommand,
69629
- cancel_export_task: Sdk3.CancelExportTaskCommand,
69630
- cancel_import_task: Sdk3.CancelImportTaskCommand,
69631
- create_delivery: Sdk3.CreateDeliveryCommand,
69632
- create_export_task: Sdk3.CreateExportTaskCommand,
69633
- create_import_task: Sdk3.CreateImportTaskCommand,
69634
- create_log_anomaly_detector: Sdk3.CreateLogAnomalyDetectorCommand,
69635
- create_log_group: Sdk3.CreateLogGroupCommand,
69636
- create_log_stream: Sdk3.CreateLogStreamCommand,
69637
- create_scheduled_query: Sdk3.CreateScheduledQueryCommand,
69638
- delete_account_policy: Sdk3.DeleteAccountPolicyCommand,
69639
- delete_data_protection_policy: Sdk3.DeleteDataProtectionPolicyCommand,
69640
- delete_delivery: Sdk3.DeleteDeliveryCommand,
69641
- delete_delivery_destination: Sdk3.DeleteDeliveryDestinationCommand,
69642
- delete_delivery_destination_policy: Sdk3.DeleteDeliveryDestinationPolicyCommand,
69643
- delete_delivery_source: Sdk3.DeleteDeliverySourceCommand,
69644
- delete_destination: Sdk3.DeleteDestinationCommand,
69645
- delete_index_policy: Sdk3.DeleteIndexPolicyCommand,
69646
- delete_integration: Sdk3.DeleteIntegrationCommand,
69647
- delete_log_anomaly_detector: Sdk3.DeleteLogAnomalyDetectorCommand,
69648
- delete_log_group: Sdk3.DeleteLogGroupCommand,
69649
- delete_log_stream: Sdk3.DeleteLogStreamCommand,
69650
- delete_metric_filter: Sdk3.DeleteMetricFilterCommand,
69651
- delete_query_definition: Sdk3.DeleteQueryDefinitionCommand,
69652
- delete_resource_policy: Sdk3.DeleteResourcePolicyCommand,
69653
- delete_retention_policy: Sdk3.DeleteRetentionPolicyCommand,
69654
- delete_scheduled_query: Sdk3.DeleteScheduledQueryCommand,
69655
- delete_subscription_filter: Sdk3.DeleteSubscriptionFilterCommand,
69656
- delete_transformer: Sdk3.DeleteTransformerCommand,
69657
- describe_account_policies: Sdk3.DescribeAccountPoliciesCommand,
69658
- describe_configuration_templates: Sdk3.DescribeConfigurationTemplatesCommand,
69659
- describe_deliveries: Sdk3.DescribeDeliveriesCommand,
69660
- describe_delivery_destinations: Sdk3.DescribeDeliveryDestinationsCommand,
69661
- describe_delivery_sources: Sdk3.DescribeDeliverySourcesCommand,
69662
- describe_destinations: Sdk3.DescribeDestinationsCommand,
69663
- describe_export_tasks: Sdk3.DescribeExportTasksCommand,
69664
- describe_field_indexes: Sdk3.DescribeFieldIndexesCommand,
69665
- describe_import_task_batches: Sdk3.DescribeImportTaskBatchesCommand,
69666
- describe_import_tasks: Sdk3.DescribeImportTasksCommand,
69667
- describe_index_policies: Sdk3.DescribeIndexPoliciesCommand,
69668
- describe_log_groups: Sdk3.DescribeLogGroupsCommand,
69669
- describe_log_streams: Sdk3.DescribeLogStreamsCommand,
69670
- describe_metric_filters: Sdk3.DescribeMetricFiltersCommand,
69671
- describe_queries: Sdk3.DescribeQueriesCommand,
69672
- describe_query_definitions: Sdk3.DescribeQueryDefinitionsCommand,
69673
- describe_resource_policies: Sdk3.DescribeResourcePoliciesCommand,
69674
- describe_subscription_filters: Sdk3.DescribeSubscriptionFiltersCommand,
69675
- disassociate_kms_key: Sdk3.DisassociateKmsKeyCommand,
69676
- disassociate_source_from_s3_table_integration: Sdk3.DisassociateSourceFromS3TableIntegrationCommand,
69677
- filter_log_events: Sdk3.FilterLogEventsCommand,
69678
- get_data_protection_policy: Sdk3.GetDataProtectionPolicyCommand,
69679
- get_delivery: Sdk3.GetDeliveryCommand,
69680
- get_delivery_destination: Sdk3.GetDeliveryDestinationCommand,
69681
- get_delivery_destination_policy: Sdk3.GetDeliveryDestinationPolicyCommand,
69682
- get_delivery_source: Sdk3.GetDeliverySourceCommand,
69683
- get_integration: Sdk3.GetIntegrationCommand,
69684
- get_log_anomaly_detector: Sdk3.GetLogAnomalyDetectorCommand,
69685
- get_log_events: Sdk3.GetLogEventsCommand,
69686
- get_log_fields: Sdk3.GetLogFieldsCommand,
69687
- get_log_group_fields: Sdk3.GetLogGroupFieldsCommand,
69688
- get_log_object: Sdk3.GetLogObjectCommand,
69689
- get_log_record: Sdk3.GetLogRecordCommand,
69690
- get_query_results: Sdk3.GetQueryResultsCommand,
69691
- get_scheduled_query: Sdk3.GetScheduledQueryCommand,
69692
- get_scheduled_query_history: Sdk3.GetScheduledQueryHistoryCommand,
69693
- get_transformer: Sdk3.GetTransformerCommand,
69694
- list_aggregate_log_group_summaries: Sdk3.ListAggregateLogGroupSummariesCommand,
69695
- list_anomalies: Sdk3.ListAnomaliesCommand,
69696
- list_integrations: Sdk3.ListIntegrationsCommand,
69697
- list_log_anomaly_detectors: Sdk3.ListLogAnomalyDetectorsCommand,
69698
- list_log_groups: Sdk3.ListLogGroupsCommand,
69699
- list_log_groups_for_query: Sdk3.ListLogGroupsForQueryCommand,
69700
- list_scheduled_queries: Sdk3.ListScheduledQueriesCommand,
69701
- list_sources_for_s3_table_integration: Sdk3.ListSourcesForS3TableIntegrationCommand,
69702
- list_tags_for_resource: Sdk3.ListTagsForResourceCommand,
69703
- list_tags_log_group: Sdk3.ListTagsLogGroupCommand,
69704
- put_account_policy: Sdk3.PutAccountPolicyCommand,
69705
- put_data_protection_policy: Sdk3.PutDataProtectionPolicyCommand,
69706
- put_delivery_destination: Sdk3.PutDeliveryDestinationCommand,
69707
- put_delivery_destination_policy: Sdk3.PutDeliveryDestinationPolicyCommand,
69708
- put_delivery_source: Sdk3.PutDeliverySourceCommand,
69709
- put_destination: Sdk3.PutDestinationCommand,
69710
- put_destination_policy: Sdk3.PutDestinationPolicyCommand,
69711
- put_index_policy: Sdk3.PutIndexPolicyCommand,
69712
- put_integration: Sdk3.PutIntegrationCommand,
69713
- put_log_events: Sdk3.PutLogEventsCommand,
69714
- put_log_group_deletion_protection: Sdk3.PutLogGroupDeletionProtectionCommand,
69715
- put_metric_filter: Sdk3.PutMetricFilterCommand,
69716
- put_query_definition: Sdk3.PutQueryDefinitionCommand,
69717
- put_resource_policy: Sdk3.PutResourcePolicyCommand,
69718
- put_retention_policy: Sdk3.PutRetentionPolicyCommand,
69719
- put_subscription_filter: Sdk3.PutSubscriptionFilterCommand,
69720
- put_transformer: Sdk3.PutTransformerCommand,
69721
- start_live_tail: Sdk3.StartLiveTailCommand,
69722
- start_query: Sdk3.StartQueryCommand,
69723
- stop_query: Sdk3.StopQueryCommand,
69724
- tag_log_group: Sdk3.TagLogGroupCommand,
69725
- tag_resource: Sdk3.TagResourceCommand,
69726
- test_metric_filter: Sdk3.TestMetricFilterCommand,
69727
- test_transformer: Sdk3.TestTransformerCommand,
69728
- untag_log_group: Sdk3.UntagLogGroupCommand,
69729
- untag_resource: Sdk3.UntagResourceCommand,
69730
- update_anomaly: Sdk3.UpdateAnomalyCommand,
69731
- update_delivery_configuration: Sdk3.UpdateDeliveryConfigurationCommand,
69732
- update_log_anomaly_detector: Sdk3.UpdateLogAnomalyDetectorCommand,
69733
- update_scheduled_query: Sdk3.UpdateScheduledQueryCommand
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: () => make71
69806
+ make: () => make72
69742
69807
  });
69743
- import * as Sdk4 from "@aws-sdk/client-dynamodb";
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 Sdk4.DynamoDBClient(config2 ?? {});
69813
+ return new Sdk5.DynamoDBClient(config2 ?? {});
69749
69814
  })
69750
69815
  );
69751
69816
  };
69752
- var make71 = fn("aws_DynamoDB")(function* (actionName, actionInput) {
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 Sdk4.DynamoDBServiceException) {
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: Sdk4.BatchExecuteStatementCommand,
69783
- batch_get_item: Sdk4.BatchGetItemCommand,
69784
- batch_write_item: Sdk4.BatchWriteItemCommand,
69785
- create_backup: Sdk4.CreateBackupCommand,
69786
- create_global_table: Sdk4.CreateGlobalTableCommand,
69787
- create_table: Sdk4.CreateTableCommand,
69788
- delete_backup: Sdk4.DeleteBackupCommand,
69789
- delete_item: Sdk4.DeleteItemCommand,
69790
- delete_resource_policy: Sdk4.DeleteResourcePolicyCommand,
69791
- delete_table: Sdk4.DeleteTableCommand,
69792
- describe_backup: Sdk4.DescribeBackupCommand,
69793
- describe_continuous_backups: Sdk4.DescribeContinuousBackupsCommand,
69794
- describe_contributor_insights: Sdk4.DescribeContributorInsightsCommand,
69795
- describe_endpoints: Sdk4.DescribeEndpointsCommand,
69796
- describe_export: Sdk4.DescribeExportCommand,
69797
- describe_global_table: Sdk4.DescribeGlobalTableCommand,
69798
- describe_global_table_settings: Sdk4.DescribeGlobalTableSettingsCommand,
69799
- describe_import: Sdk4.DescribeImportCommand,
69800
- describe_kinesis_streaming_destination: Sdk4.DescribeKinesisStreamingDestinationCommand,
69801
- describe_limits: Sdk4.DescribeLimitsCommand,
69802
- describe_table: Sdk4.DescribeTableCommand,
69803
- describe_table_replica_auto_scaling: Sdk4.DescribeTableReplicaAutoScalingCommand,
69804
- describe_time_to_live: Sdk4.DescribeTimeToLiveCommand,
69805
- disable_kinesis_streaming_destination: Sdk4.DisableKinesisStreamingDestinationCommand,
69806
- enable_kinesis_streaming_destination: Sdk4.EnableKinesisStreamingDestinationCommand,
69807
- execute_statement: Sdk4.ExecuteStatementCommand,
69808
- execute_transaction: Sdk4.ExecuteTransactionCommand,
69809
- export_table_to_point_in_time: Sdk4.ExportTableToPointInTimeCommand,
69810
- get_item: Sdk4.GetItemCommand,
69811
- get_resource_policy: Sdk4.GetResourcePolicyCommand,
69812
- import_table: Sdk4.ImportTableCommand,
69813
- list_backups: Sdk4.ListBackupsCommand,
69814
- list_contributor_insights: Sdk4.ListContributorInsightsCommand,
69815
- list_exports: Sdk4.ListExportsCommand,
69816
- list_global_tables: Sdk4.ListGlobalTablesCommand,
69817
- list_imports: Sdk4.ListImportsCommand,
69818
- list_tables: Sdk4.ListTablesCommand,
69819
- list_tags_of_resource: Sdk4.ListTagsOfResourceCommand,
69820
- put_item: Sdk4.PutItemCommand,
69821
- put_resource_policy: Sdk4.PutResourcePolicyCommand,
69822
- query: Sdk4.QueryCommand,
69823
- restore_table_from_backup: Sdk4.RestoreTableFromBackupCommand,
69824
- restore_table_to_point_in_time: Sdk4.RestoreTableToPointInTimeCommand,
69825
- scan: Sdk4.ScanCommand,
69826
- tag_resource: Sdk4.TagResourceCommand,
69827
- transact_get_items: Sdk4.TransactGetItemsCommand,
69828
- transact_write_items: Sdk4.TransactWriteItemsCommand,
69829
- untag_resource: Sdk4.UntagResourceCommand,
69830
- update_continuous_backups: Sdk4.UpdateContinuousBackupsCommand,
69831
- update_contributor_insights: Sdk4.UpdateContributorInsightsCommand,
69832
- update_global_table: Sdk4.UpdateGlobalTableCommand,
69833
- update_global_table_settings: Sdk4.UpdateGlobalTableSettingsCommand,
69834
- update_item: Sdk4.UpdateItemCommand,
69835
- update_kinesis_streaming_destination: Sdk4.UpdateKinesisStreamingDestinationCommand,
69836
- update_table: Sdk4.UpdateTableCommand,
69837
- update_table_replica_auto_scaling: Sdk4.UpdateTableReplicaAutoScalingCommand,
69838
- update_time_to_live: Sdk4.UpdateTimeToLiveCommand
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: () => make72
69911
+ make: () => make73
69847
69912
  });
69848
- import * as Sdk5 from "@aws-sdk/client-iam";
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 Sdk5.IAMClient(config2 ?? {});
69918
+ return new Sdk6.IAMClient(config2 ?? {});
69854
69919
  })
69855
69920
  );
69856
69921
  };
69857
- var make72 = fn("aws_IAM")(function* (actionName, actionInput) {
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 Sdk5.IAMServiceException) {
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: Sdk5.AcceptDelegationRequestCommand,
69888
- add_client_id_to_open_id_connect_provider: Sdk5.AddClientIDToOpenIDConnectProviderCommand,
69889
- add_role_to_instance_profile: Sdk5.AddRoleToInstanceProfileCommand,
69890
- add_user_to_group: Sdk5.AddUserToGroupCommand,
69891
- associate_delegation_request: Sdk5.AssociateDelegationRequestCommand,
69892
- attach_group_policy: Sdk5.AttachGroupPolicyCommand,
69893
- attach_role_policy: Sdk5.AttachRolePolicyCommand,
69894
- attach_user_policy: Sdk5.AttachUserPolicyCommand,
69895
- change_password: Sdk5.ChangePasswordCommand,
69896
- create_access_key: Sdk5.CreateAccessKeyCommand,
69897
- create_account_alias: Sdk5.CreateAccountAliasCommand,
69898
- create_delegation_request: Sdk5.CreateDelegationRequestCommand,
69899
- create_group: Sdk5.CreateGroupCommand,
69900
- create_instance_profile: Sdk5.CreateInstanceProfileCommand,
69901
- create_login_profile: Sdk5.CreateLoginProfileCommand,
69902
- create_open_id_connect_provider: Sdk5.CreateOpenIDConnectProviderCommand,
69903
- create_policy: Sdk5.CreatePolicyCommand,
69904
- create_policy_version: Sdk5.CreatePolicyVersionCommand,
69905
- create_role: Sdk5.CreateRoleCommand,
69906
- create_saml_provider: Sdk5.CreateSAMLProviderCommand,
69907
- create_service_linked_role: Sdk5.CreateServiceLinkedRoleCommand,
69908
- create_service_specific_credential: Sdk5.CreateServiceSpecificCredentialCommand,
69909
- create_user: Sdk5.CreateUserCommand,
69910
- create_virtual_mfa_device: Sdk5.CreateVirtualMFADeviceCommand,
69911
- deactivate_mfa_device: Sdk5.DeactivateMFADeviceCommand,
69912
- delete_access_key: Sdk5.DeleteAccessKeyCommand,
69913
- delete_account_alias: Sdk5.DeleteAccountAliasCommand,
69914
- delete_account_password_policy: Sdk5.DeleteAccountPasswordPolicyCommand,
69915
- delete_group: Sdk5.DeleteGroupCommand,
69916
- delete_group_policy: Sdk5.DeleteGroupPolicyCommand,
69917
- delete_instance_profile: Sdk5.DeleteInstanceProfileCommand,
69918
- delete_login_profile: Sdk5.DeleteLoginProfileCommand,
69919
- delete_open_id_connect_provider: Sdk5.DeleteOpenIDConnectProviderCommand,
69920
- delete_policy: Sdk5.DeletePolicyCommand,
69921
- delete_policy_version: Sdk5.DeletePolicyVersionCommand,
69922
- delete_role: Sdk5.DeleteRoleCommand,
69923
- delete_role_permissions_boundary: Sdk5.DeleteRolePermissionsBoundaryCommand,
69924
- delete_role_policy: Sdk5.DeleteRolePolicyCommand,
69925
- delete_saml_provider: Sdk5.DeleteSAMLProviderCommand,
69926
- delete_server_certificate: Sdk5.DeleteServerCertificateCommand,
69927
- delete_service_linked_role: Sdk5.DeleteServiceLinkedRoleCommand,
69928
- delete_service_specific_credential: Sdk5.DeleteServiceSpecificCredentialCommand,
69929
- delete_signing_certificate: Sdk5.DeleteSigningCertificateCommand,
69930
- delete_ssh_public_key: Sdk5.DeleteSSHPublicKeyCommand,
69931
- delete_user: Sdk5.DeleteUserCommand,
69932
- delete_user_permissions_boundary: Sdk5.DeleteUserPermissionsBoundaryCommand,
69933
- delete_user_policy: Sdk5.DeleteUserPolicyCommand,
69934
- delete_virtual_mfa_device: Sdk5.DeleteVirtualMFADeviceCommand,
69935
- detach_group_policy: Sdk5.DetachGroupPolicyCommand,
69936
- detach_role_policy: Sdk5.DetachRolePolicyCommand,
69937
- detach_user_policy: Sdk5.DetachUserPolicyCommand,
69938
- disable_organizations_root_credentials_management: Sdk5.DisableOrganizationsRootCredentialsManagementCommand,
69939
- disable_organizations_root_sessions: Sdk5.DisableOrganizationsRootSessionsCommand,
69940
- disable_outbound_web_identity_federation: Sdk5.DisableOutboundWebIdentityFederationCommand,
69941
- enable_mfa_device: Sdk5.EnableMFADeviceCommand,
69942
- enable_organizations_root_credentials_management: Sdk5.EnableOrganizationsRootCredentialsManagementCommand,
69943
- enable_organizations_root_sessions: Sdk5.EnableOrganizationsRootSessionsCommand,
69944
- enable_outbound_web_identity_federation: Sdk5.EnableOutboundWebIdentityFederationCommand,
69945
- generate_credential_report: Sdk5.GenerateCredentialReportCommand,
69946
- generate_organizations_access_report: Sdk5.GenerateOrganizationsAccessReportCommand,
69947
- generate_service_last_accessed_details: Sdk5.GenerateServiceLastAccessedDetailsCommand,
69948
- get_access_key_last_used: Sdk5.GetAccessKeyLastUsedCommand,
69949
- get_account_authorization_details: Sdk5.GetAccountAuthorizationDetailsCommand,
69950
- get_account_password_policy: Sdk5.GetAccountPasswordPolicyCommand,
69951
- get_account_summary: Sdk5.GetAccountSummaryCommand,
69952
- get_context_keys_for_custom_policy: Sdk5.GetContextKeysForCustomPolicyCommand,
69953
- get_context_keys_for_principal_policy: Sdk5.GetContextKeysForPrincipalPolicyCommand,
69954
- get_credential_report: Sdk5.GetCredentialReportCommand,
69955
- get_delegation_request: Sdk5.GetDelegationRequestCommand,
69956
- get_group: Sdk5.GetGroupCommand,
69957
- get_group_policy: Sdk5.GetGroupPolicyCommand,
69958
- get_human_readable_summary: Sdk5.GetHumanReadableSummaryCommand,
69959
- get_instance_profile: Sdk5.GetInstanceProfileCommand,
69960
- get_login_profile: Sdk5.GetLoginProfileCommand,
69961
- get_mfa_device: Sdk5.GetMFADeviceCommand,
69962
- get_open_id_connect_provider: Sdk5.GetOpenIDConnectProviderCommand,
69963
- get_organizations_access_report: Sdk5.GetOrganizationsAccessReportCommand,
69964
- get_outbound_web_identity_federation_info: Sdk5.GetOutboundWebIdentityFederationInfoCommand,
69965
- get_policy: Sdk5.GetPolicyCommand,
69966
- get_policy_version: Sdk5.GetPolicyVersionCommand,
69967
- get_role: Sdk5.GetRoleCommand,
69968
- get_role_policy: Sdk5.GetRolePolicyCommand,
69969
- get_saml_provider: Sdk5.GetSAMLProviderCommand,
69970
- get_server_certificate: Sdk5.GetServerCertificateCommand,
69971
- get_service_last_accessed_details: Sdk5.GetServiceLastAccessedDetailsCommand,
69972
- get_service_last_accessed_details_with_entities: Sdk5.GetServiceLastAccessedDetailsWithEntitiesCommand,
69973
- get_service_linked_role_deletion_status: Sdk5.GetServiceLinkedRoleDeletionStatusCommand,
69974
- get_ssh_public_key: Sdk5.GetSSHPublicKeyCommand,
69975
- get_user: Sdk5.GetUserCommand,
69976
- get_user_policy: Sdk5.GetUserPolicyCommand,
69977
- list_access_keys: Sdk5.ListAccessKeysCommand,
69978
- list_account_aliases: Sdk5.ListAccountAliasesCommand,
69979
- list_attached_group_policies: Sdk5.ListAttachedGroupPoliciesCommand,
69980
- list_attached_role_policies: Sdk5.ListAttachedRolePoliciesCommand,
69981
- list_attached_user_policies: Sdk5.ListAttachedUserPoliciesCommand,
69982
- list_delegation_requests: Sdk5.ListDelegationRequestsCommand,
69983
- list_entities_for_policy: Sdk5.ListEntitiesForPolicyCommand,
69984
- list_group_policies: Sdk5.ListGroupPoliciesCommand,
69985
- list_groups: Sdk5.ListGroupsCommand,
69986
- list_groups_for_user: Sdk5.ListGroupsForUserCommand,
69987
- list_instance_profile_tags: Sdk5.ListInstanceProfileTagsCommand,
69988
- list_instance_profiles: Sdk5.ListInstanceProfilesCommand,
69989
- list_instance_profiles_for_role: Sdk5.ListInstanceProfilesForRoleCommand,
69990
- list_mfa_device_tags: Sdk5.ListMFADeviceTagsCommand,
69991
- list_mfa_devices: Sdk5.ListMFADevicesCommand,
69992
- list_open_id_connect_provider_tags: Sdk5.ListOpenIDConnectProviderTagsCommand,
69993
- list_open_id_connect_providers: Sdk5.ListOpenIDConnectProvidersCommand,
69994
- list_organizations_features: Sdk5.ListOrganizationsFeaturesCommand,
69995
- list_policies: Sdk5.ListPoliciesCommand,
69996
- list_policies_granting_service_access: Sdk5.ListPoliciesGrantingServiceAccessCommand,
69997
- list_policy_tags: Sdk5.ListPolicyTagsCommand,
69998
- list_policy_versions: Sdk5.ListPolicyVersionsCommand,
69999
- list_role_policies: Sdk5.ListRolePoliciesCommand,
70000
- list_role_tags: Sdk5.ListRoleTagsCommand,
70001
- list_roles: Sdk5.ListRolesCommand,
70002
- list_saml_provider_tags: Sdk5.ListSAMLProviderTagsCommand,
70003
- list_saml_providers: Sdk5.ListSAMLProvidersCommand,
70004
- list_server_certificate_tags: Sdk5.ListServerCertificateTagsCommand,
70005
- list_server_certificates: Sdk5.ListServerCertificatesCommand,
70006
- list_service_specific_credentials: Sdk5.ListServiceSpecificCredentialsCommand,
70007
- list_signing_certificates: Sdk5.ListSigningCertificatesCommand,
70008
- list_ssh_public_keys: Sdk5.ListSSHPublicKeysCommand,
70009
- list_user_policies: Sdk5.ListUserPoliciesCommand,
70010
- list_user_tags: Sdk5.ListUserTagsCommand,
70011
- list_users: Sdk5.ListUsersCommand,
70012
- list_virtual_mfa_devices: Sdk5.ListVirtualMFADevicesCommand,
70013
- put_group_policy: Sdk5.PutGroupPolicyCommand,
70014
- put_role_permissions_boundary: Sdk5.PutRolePermissionsBoundaryCommand,
70015
- put_role_policy: Sdk5.PutRolePolicyCommand,
70016
- put_user_permissions_boundary: Sdk5.PutUserPermissionsBoundaryCommand,
70017
- put_user_policy: Sdk5.PutUserPolicyCommand,
70018
- reject_delegation_request: Sdk5.RejectDelegationRequestCommand,
70019
- remove_client_id_from_open_id_connect_provider: Sdk5.RemoveClientIDFromOpenIDConnectProviderCommand,
70020
- remove_role_from_instance_profile: Sdk5.RemoveRoleFromInstanceProfileCommand,
70021
- remove_user_from_group: Sdk5.RemoveUserFromGroupCommand,
70022
- reset_service_specific_credential: Sdk5.ResetServiceSpecificCredentialCommand,
70023
- resync_mfa_device: Sdk5.ResyncMFADeviceCommand,
70024
- send_delegation_token: Sdk5.SendDelegationTokenCommand,
70025
- set_default_policy_version: Sdk5.SetDefaultPolicyVersionCommand,
70026
- set_security_token_service_preferences: Sdk5.SetSecurityTokenServicePreferencesCommand,
70027
- simulate_custom_policy: Sdk5.SimulateCustomPolicyCommand,
70028
- simulate_principal_policy: Sdk5.SimulatePrincipalPolicyCommand,
70029
- tag_instance_profile: Sdk5.TagInstanceProfileCommand,
70030
- tag_mfa_device: Sdk5.TagMFADeviceCommand,
70031
- tag_open_id_connect_provider: Sdk5.TagOpenIDConnectProviderCommand,
70032
- tag_policy: Sdk5.TagPolicyCommand,
70033
- tag_role: Sdk5.TagRoleCommand,
70034
- tag_saml_provider: Sdk5.TagSAMLProviderCommand,
70035
- tag_server_certificate: Sdk5.TagServerCertificateCommand,
70036
- tag_user: Sdk5.TagUserCommand,
70037
- untag_instance_profile: Sdk5.UntagInstanceProfileCommand,
70038
- untag_mfa_device: Sdk5.UntagMFADeviceCommand,
70039
- untag_open_id_connect_provider: Sdk5.UntagOpenIDConnectProviderCommand,
70040
- untag_policy: Sdk5.UntagPolicyCommand,
70041
- untag_role: Sdk5.UntagRoleCommand,
70042
- untag_saml_provider: Sdk5.UntagSAMLProviderCommand,
70043
- untag_server_certificate: Sdk5.UntagServerCertificateCommand,
70044
- untag_user: Sdk5.UntagUserCommand,
70045
- update_access_key: Sdk5.UpdateAccessKeyCommand,
70046
- update_account_password_policy: Sdk5.UpdateAccountPasswordPolicyCommand,
70047
- update_assume_role_policy: Sdk5.UpdateAssumeRolePolicyCommand,
70048
- update_delegation_request: Sdk5.UpdateDelegationRequestCommand,
70049
- update_group: Sdk5.UpdateGroupCommand,
70050
- update_login_profile: Sdk5.UpdateLoginProfileCommand,
70051
- update_open_id_connect_provider_thumbprint: Sdk5.UpdateOpenIDConnectProviderThumbprintCommand,
70052
- update_role: Sdk5.UpdateRoleCommand,
70053
- update_role_description: Sdk5.UpdateRoleDescriptionCommand,
70054
- update_saml_provider: Sdk5.UpdateSAMLProviderCommand,
70055
- update_server_certificate: Sdk5.UpdateServerCertificateCommand,
70056
- update_service_specific_credential: Sdk5.UpdateServiceSpecificCredentialCommand,
70057
- update_signing_certificate: Sdk5.UpdateSigningCertificateCommand,
70058
- update_ssh_public_key: Sdk5.UpdateSSHPublicKeyCommand,
70059
- update_user: Sdk5.UpdateUserCommand,
70060
- upload_server_certificate: Sdk5.UploadServerCertificateCommand,
70061
- upload_signing_certificate: Sdk5.UploadSigningCertificateCommand,
70062
- upload_ssh_public_key: Sdk5.UploadSSHPublicKeyCommand
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: () => make73
70135
+ make: () => make74
70071
70136
  });
70072
- import * as Sdk6 from "@aws-sdk/client-lambda";
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 Sdk6.LambdaClient(config2 ?? {});
70142
+ return new Sdk7.LambdaClient(config2 ?? {});
70078
70143
  })
70079
70144
  );
70080
70145
  };
70081
- var make73 = fn("aws_Lambda")(function* (actionName, actionInput) {
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 Sdk6.LambdaServiceException) {
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: Sdk6.AddLayerVersionPermissionCommand,
70112
- add_permission: Sdk6.AddPermissionCommand,
70113
- checkpoint_durable_execution: Sdk6.CheckpointDurableExecutionCommand,
70114
- create_alias: Sdk6.CreateAliasCommand,
70115
- create_capacity_provider: Sdk6.CreateCapacityProviderCommand,
70116
- create_code_signing_config: Sdk6.CreateCodeSigningConfigCommand,
70117
- create_event_source_mapping: Sdk6.CreateEventSourceMappingCommand,
70118
- create_function: Sdk6.CreateFunctionCommand,
70119
- create_function_url_config: Sdk6.CreateFunctionUrlConfigCommand,
70120
- delete_alias: Sdk6.DeleteAliasCommand,
70121
- delete_capacity_provider: Sdk6.DeleteCapacityProviderCommand,
70122
- delete_code_signing_config: Sdk6.DeleteCodeSigningConfigCommand,
70123
- delete_event_source_mapping: Sdk6.DeleteEventSourceMappingCommand,
70124
- delete_function: Sdk6.DeleteFunctionCommand,
70125
- delete_function_code_signing_config: Sdk6.DeleteFunctionCodeSigningConfigCommand,
70126
- delete_function_concurrency: Sdk6.DeleteFunctionConcurrencyCommand,
70127
- delete_function_event_invoke_config: Sdk6.DeleteFunctionEventInvokeConfigCommand,
70128
- delete_function_url_config: Sdk6.DeleteFunctionUrlConfigCommand,
70129
- delete_layer_version: Sdk6.DeleteLayerVersionCommand,
70130
- delete_provisioned_concurrency_config: Sdk6.DeleteProvisionedConcurrencyConfigCommand,
70131
- get_account_settings: Sdk6.GetAccountSettingsCommand,
70132
- get_alias: Sdk6.GetAliasCommand,
70133
- get_capacity_provider: Sdk6.GetCapacityProviderCommand,
70134
- get_code_signing_config: Sdk6.GetCodeSigningConfigCommand,
70135
- get_durable_execution: Sdk6.GetDurableExecutionCommand,
70136
- get_durable_execution_history: Sdk6.GetDurableExecutionHistoryCommand,
70137
- get_durable_execution_state: Sdk6.GetDurableExecutionStateCommand,
70138
- get_event_source_mapping: Sdk6.GetEventSourceMappingCommand,
70139
- get_function: Sdk6.GetFunctionCommand,
70140
- get_function_code_signing_config: Sdk6.GetFunctionCodeSigningConfigCommand,
70141
- get_function_concurrency: Sdk6.GetFunctionConcurrencyCommand,
70142
- get_function_configuration: Sdk6.GetFunctionConfigurationCommand,
70143
- get_function_event_invoke_config: Sdk6.GetFunctionEventInvokeConfigCommand,
70144
- get_function_recursion_config: Sdk6.GetFunctionRecursionConfigCommand,
70145
- get_function_scaling_config: Sdk6.GetFunctionScalingConfigCommand,
70146
- get_function_url_config: Sdk6.GetFunctionUrlConfigCommand,
70147
- get_layer_version: Sdk6.GetLayerVersionCommand,
70148
- get_layer_version_by_arn: Sdk6.GetLayerVersionByArnCommand,
70149
- get_layer_version_policy: Sdk6.GetLayerVersionPolicyCommand,
70150
- get_policy: Sdk6.GetPolicyCommand,
70151
- get_provisioned_concurrency_config: Sdk6.GetProvisionedConcurrencyConfigCommand,
70152
- get_runtime_management_config: Sdk6.GetRuntimeManagementConfigCommand,
70153
- invoke: Sdk6.InvokeCommand,
70154
- invoke_async: Sdk6.InvokeAsyncCommand,
70155
- invoke_with_response_stream: Sdk6.InvokeWithResponseStreamCommand,
70156
- list_aliases: Sdk6.ListAliasesCommand,
70157
- list_capacity_providers: Sdk6.ListCapacityProvidersCommand,
70158
- list_code_signing_configs: Sdk6.ListCodeSigningConfigsCommand,
70159
- list_durable_executions_by_function: Sdk6.ListDurableExecutionsByFunctionCommand,
70160
- list_event_source_mappings: Sdk6.ListEventSourceMappingsCommand,
70161
- list_function_event_invoke_configs: Sdk6.ListFunctionEventInvokeConfigsCommand,
70162
- list_function_url_configs: Sdk6.ListFunctionUrlConfigsCommand,
70163
- list_function_versions_by_capacity_provider: Sdk6.ListFunctionVersionsByCapacityProviderCommand,
70164
- list_functions: Sdk6.ListFunctionsCommand,
70165
- list_functions_by_code_signing_config: Sdk6.ListFunctionsByCodeSigningConfigCommand,
70166
- list_layer_versions: Sdk6.ListLayerVersionsCommand,
70167
- list_layers: Sdk6.ListLayersCommand,
70168
- list_provisioned_concurrency_configs: Sdk6.ListProvisionedConcurrencyConfigsCommand,
70169
- list_tags: Sdk6.ListTagsCommand,
70170
- list_versions_by_function: Sdk6.ListVersionsByFunctionCommand,
70171
- publish_layer_version: Sdk6.PublishLayerVersionCommand,
70172
- publish_version: Sdk6.PublishVersionCommand,
70173
- put_function_code_signing_config: Sdk6.PutFunctionCodeSigningConfigCommand,
70174
- put_function_concurrency: Sdk6.PutFunctionConcurrencyCommand,
70175
- put_function_event_invoke_config: Sdk6.PutFunctionEventInvokeConfigCommand,
70176
- put_function_recursion_config: Sdk6.PutFunctionRecursionConfigCommand,
70177
- put_function_scaling_config: Sdk6.PutFunctionScalingConfigCommand,
70178
- put_provisioned_concurrency_config: Sdk6.PutProvisionedConcurrencyConfigCommand,
70179
- put_runtime_management_config: Sdk6.PutRuntimeManagementConfigCommand,
70180
- remove_layer_version_permission: Sdk6.RemoveLayerVersionPermissionCommand,
70181
- remove_permission: Sdk6.RemovePermissionCommand,
70182
- send_durable_execution_callback_failure: Sdk6.SendDurableExecutionCallbackFailureCommand,
70183
- send_durable_execution_callback_heartbeat: Sdk6.SendDurableExecutionCallbackHeartbeatCommand,
70184
- send_durable_execution_callback_success: Sdk6.SendDurableExecutionCallbackSuccessCommand,
70185
- stop_durable_execution: Sdk6.StopDurableExecutionCommand,
70186
- tag_resource: Sdk6.TagResourceCommand,
70187
- untag_resource: Sdk6.UntagResourceCommand,
70188
- update_alias: Sdk6.UpdateAliasCommand,
70189
- update_capacity_provider: Sdk6.UpdateCapacityProviderCommand,
70190
- update_code_signing_config: Sdk6.UpdateCodeSigningConfigCommand,
70191
- update_event_source_mapping: Sdk6.UpdateEventSourceMappingCommand,
70192
- update_function_code: Sdk6.UpdateFunctionCodeCommand,
70193
- update_function_configuration: Sdk6.UpdateFunctionConfigurationCommand,
70194
- update_function_event_invoke_config: Sdk6.UpdateFunctionEventInvokeConfigCommand,
70195
- update_function_url_config: Sdk6.UpdateFunctionUrlConfigCommand
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: () => make74
70268
+ make: () => make75
70204
70269
  });
70205
- import * as Sdk7 from "@aws-sdk/client-resource-groups-tagging-api";
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 Sdk7.ResourceGroupsTaggingAPIClient(config2 ?? {});
70275
+ return new Sdk8.ResourceGroupsTaggingAPIClient(config2 ?? {});
70211
70276
  })
70212
70277
  );
70213
70278
  };
70214
- var make74 = fn("aws_ResourceGroupsTaggingAPI")(function* (actionName, actionInput) {
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 Sdk7.ResourceGroupsTaggingAPIServiceException) {
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: Sdk7.DescribeReportCreationCommand,
70245
- get_compliance_summary: Sdk7.GetComplianceSummaryCommand,
70246
- get_resources: Sdk7.GetResourcesCommand,
70247
- get_tag_keys: Sdk7.GetTagKeysCommand,
70248
- get_tag_values: Sdk7.GetTagValuesCommand,
70249
- list_required_tags: Sdk7.ListRequiredTagsCommand,
70250
- start_report_creation: Sdk7.StartReportCreationCommand,
70251
- tag_resources: Sdk7.TagResourcesCommand,
70252
- untag_resources: Sdk7.UntagResourcesCommand
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: () => make75
70325
+ make: () => make76
70261
70326
  });
70262
- import * as Sdk8 from "@aws-sdk/client-s3";
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 Sdk8.S3Client(config2 ?? {});
70332
+ return new Sdk9.S3Client(config2 ?? {});
70268
70333
  })
70269
70334
  );
70270
70335
  };
70271
- var make75 = fn("aws_S3")(function* (actionName, actionInput) {
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 Sdk8.S3ServiceException) {
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: Sdk8.AbortMultipartUploadCommand,
70302
- complete_multipart_upload: Sdk8.CompleteMultipartUploadCommand,
70303
- copy_object: Sdk8.CopyObjectCommand,
70304
- create_bucket: Sdk8.CreateBucketCommand,
70305
- create_bucket_metadata_configuration: Sdk8.CreateBucketMetadataConfigurationCommand,
70306
- create_bucket_metadata_table_configuration: Sdk8.CreateBucketMetadataTableConfigurationCommand,
70307
- create_multipart_upload: Sdk8.CreateMultipartUploadCommand,
70308
- create_session: Sdk8.CreateSessionCommand,
70309
- delete_bucket: Sdk8.DeleteBucketCommand,
70310
- delete_bucket_analytics_configuration: Sdk8.DeleteBucketAnalyticsConfigurationCommand,
70311
- delete_bucket_cors: Sdk8.DeleteBucketCorsCommand,
70312
- delete_bucket_encryption: Sdk8.DeleteBucketEncryptionCommand,
70313
- delete_bucket_intelligent_tiering_configuration: Sdk8.DeleteBucketIntelligentTieringConfigurationCommand,
70314
- delete_bucket_inventory_configuration: Sdk8.DeleteBucketInventoryConfigurationCommand,
70315
- delete_bucket_lifecycle: Sdk8.DeleteBucketLifecycleCommand,
70316
- delete_bucket_metadata_configuration: Sdk8.DeleteBucketMetadataConfigurationCommand,
70317
- delete_bucket_metadata_table_configuration: Sdk8.DeleteBucketMetadataTableConfigurationCommand,
70318
- delete_bucket_metrics_configuration: Sdk8.DeleteBucketMetricsConfigurationCommand,
70319
- delete_bucket_ownership_controls: Sdk8.DeleteBucketOwnershipControlsCommand,
70320
- delete_bucket_policy: Sdk8.DeleteBucketPolicyCommand,
70321
- delete_bucket_replication: Sdk8.DeleteBucketReplicationCommand,
70322
- delete_bucket_tagging: Sdk8.DeleteBucketTaggingCommand,
70323
- delete_bucket_website: Sdk8.DeleteBucketWebsiteCommand,
70324
- delete_object: Sdk8.DeleteObjectCommand,
70325
- delete_object_tagging: Sdk8.DeleteObjectTaggingCommand,
70326
- delete_objects: Sdk8.DeleteObjectsCommand,
70327
- delete_public_access_block: Sdk8.DeletePublicAccessBlockCommand,
70328
- get_bucket_abac: Sdk8.GetBucketAbacCommand,
70329
- get_bucket_accelerate_configuration: Sdk8.GetBucketAccelerateConfigurationCommand,
70330
- get_bucket_acl: Sdk8.GetBucketAclCommand,
70331
- get_bucket_analytics_configuration: Sdk8.GetBucketAnalyticsConfigurationCommand,
70332
- get_bucket_cors: Sdk8.GetBucketCorsCommand,
70333
- get_bucket_encryption: Sdk8.GetBucketEncryptionCommand,
70334
- get_bucket_intelligent_tiering_configuration: Sdk8.GetBucketIntelligentTieringConfigurationCommand,
70335
- get_bucket_inventory_configuration: Sdk8.GetBucketInventoryConfigurationCommand,
70336
- get_bucket_lifecycle_configuration: Sdk8.GetBucketLifecycleConfigurationCommand,
70337
- get_bucket_location: Sdk8.GetBucketLocationCommand,
70338
- get_bucket_logging: Sdk8.GetBucketLoggingCommand,
70339
- get_bucket_metadata_configuration: Sdk8.GetBucketMetadataConfigurationCommand,
70340
- get_bucket_metadata_table_configuration: Sdk8.GetBucketMetadataTableConfigurationCommand,
70341
- get_bucket_metrics_configuration: Sdk8.GetBucketMetricsConfigurationCommand,
70342
- get_bucket_notification_configuration: Sdk8.GetBucketNotificationConfigurationCommand,
70343
- get_bucket_ownership_controls: Sdk8.GetBucketOwnershipControlsCommand,
70344
- get_bucket_policy: Sdk8.GetBucketPolicyCommand,
70345
- get_bucket_policy_status: Sdk8.GetBucketPolicyStatusCommand,
70346
- get_bucket_replication: Sdk8.GetBucketReplicationCommand,
70347
- get_bucket_request_payment: Sdk8.GetBucketRequestPaymentCommand,
70348
- get_bucket_tagging: Sdk8.GetBucketTaggingCommand,
70349
- get_bucket_versioning: Sdk8.GetBucketVersioningCommand,
70350
- get_bucket_website: Sdk8.GetBucketWebsiteCommand,
70351
- get_object: Sdk8.GetObjectCommand,
70352
- get_object_acl: Sdk8.GetObjectAclCommand,
70353
- get_object_attributes: Sdk8.GetObjectAttributesCommand,
70354
- get_object_legal_hold: Sdk8.GetObjectLegalHoldCommand,
70355
- get_object_lock_configuration: Sdk8.GetObjectLockConfigurationCommand,
70356
- get_object_retention: Sdk8.GetObjectRetentionCommand,
70357
- get_object_tagging: Sdk8.GetObjectTaggingCommand,
70358
- get_object_torrent: Sdk8.GetObjectTorrentCommand,
70359
- get_public_access_block: Sdk8.GetPublicAccessBlockCommand,
70360
- head_bucket: Sdk8.HeadBucketCommand,
70361
- head_object: Sdk8.HeadObjectCommand,
70362
- list_bucket_analytics_configurations: Sdk8.ListBucketAnalyticsConfigurationsCommand,
70363
- list_bucket_intelligent_tiering_configurations: Sdk8.ListBucketIntelligentTieringConfigurationsCommand,
70364
- list_bucket_inventory_configurations: Sdk8.ListBucketInventoryConfigurationsCommand,
70365
- list_bucket_metrics_configurations: Sdk8.ListBucketMetricsConfigurationsCommand,
70366
- list_buckets: Sdk8.ListBucketsCommand,
70367
- list_directory_buckets: Sdk8.ListDirectoryBucketsCommand,
70368
- list_multipart_uploads: Sdk8.ListMultipartUploadsCommand,
70369
- list_object_versions: Sdk8.ListObjectVersionsCommand,
70370
- list_objects: Sdk8.ListObjectsCommand,
70371
- list_objects_v2: Sdk8.ListObjectsV2Command,
70372
- list_parts: Sdk8.ListPartsCommand,
70373
- put_bucket_abac: Sdk8.PutBucketAbacCommand,
70374
- put_bucket_accelerate_configuration: Sdk8.PutBucketAccelerateConfigurationCommand,
70375
- put_bucket_acl: Sdk8.PutBucketAclCommand,
70376
- put_bucket_analytics_configuration: Sdk8.PutBucketAnalyticsConfigurationCommand,
70377
- put_bucket_cors: Sdk8.PutBucketCorsCommand,
70378
- put_bucket_encryption: Sdk8.PutBucketEncryptionCommand,
70379
- put_bucket_intelligent_tiering_configuration: Sdk8.PutBucketIntelligentTieringConfigurationCommand,
70380
- put_bucket_inventory_configuration: Sdk8.PutBucketInventoryConfigurationCommand,
70381
- put_bucket_lifecycle_configuration: Sdk8.PutBucketLifecycleConfigurationCommand,
70382
- put_bucket_logging: Sdk8.PutBucketLoggingCommand,
70383
- put_bucket_metrics_configuration: Sdk8.PutBucketMetricsConfigurationCommand,
70384
- put_bucket_notification_configuration: Sdk8.PutBucketNotificationConfigurationCommand,
70385
- put_bucket_ownership_controls: Sdk8.PutBucketOwnershipControlsCommand,
70386
- put_bucket_policy: Sdk8.PutBucketPolicyCommand,
70387
- put_bucket_replication: Sdk8.PutBucketReplicationCommand,
70388
- put_bucket_request_payment: Sdk8.PutBucketRequestPaymentCommand,
70389
- put_bucket_tagging: Sdk8.PutBucketTaggingCommand,
70390
- put_bucket_versioning: Sdk8.PutBucketVersioningCommand,
70391
- put_bucket_website: Sdk8.PutBucketWebsiteCommand,
70392
- put_object: Sdk8.PutObjectCommand,
70393
- put_object_acl: Sdk8.PutObjectAclCommand,
70394
- put_object_legal_hold: Sdk8.PutObjectLegalHoldCommand,
70395
- put_object_lock_configuration: Sdk8.PutObjectLockConfigurationCommand,
70396
- put_object_retention: Sdk8.PutObjectRetentionCommand,
70397
- put_object_tagging: Sdk8.PutObjectTaggingCommand,
70398
- put_public_access_block: Sdk8.PutPublicAccessBlockCommand,
70399
- rename_object: Sdk8.RenameObjectCommand,
70400
- restore_object: Sdk8.RestoreObjectCommand,
70401
- select_object_content: Sdk8.SelectObjectContentCommand,
70402
- update_bucket_metadata_inventory_table_configuration: Sdk8.UpdateBucketMetadataInventoryTableConfigurationCommand,
70403
- update_bucket_metadata_journal_table_configuration: Sdk8.UpdateBucketMetadataJournalTableConfigurationCommand,
70404
- update_object_encryption: Sdk8.UpdateObjectEncryptionCommand,
70405
- upload_part: Sdk8.UploadPartCommand,
70406
- upload_part_copy: Sdk8.UploadPartCopyCommand,
70407
- write_get_object_response: Sdk8.WriteGetObjectResponseCommand
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: () => make76
70480
+ make: () => make77
70416
70481
  });
70417
- import * as Sdk9 from "@aws-sdk/client-sqs";
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 Sdk9.SQSClient(config2 ?? {});
70487
+ return new Sdk10.SQSClient(config2 ?? {});
70423
70488
  })
70424
70489
  );
70425
70490
  };
70426
- var make76 = fn("aws_SQS")(function* (actionName, actionInput) {
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 Sdk9.SQSServiceException) {
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: Sdk9.AddPermissionCommand,
70457
- cancel_message_move_task: Sdk9.CancelMessageMoveTaskCommand,
70458
- change_message_visibility: Sdk9.ChangeMessageVisibilityCommand,
70459
- change_message_visibility_batch: Sdk9.ChangeMessageVisibilityBatchCommand,
70460
- create_queue: Sdk9.CreateQueueCommand,
70461
- delete_message: Sdk9.DeleteMessageCommand,
70462
- delete_message_batch: Sdk9.DeleteMessageBatchCommand,
70463
- delete_queue: Sdk9.DeleteQueueCommand,
70464
- get_queue_attributes: Sdk9.GetQueueAttributesCommand,
70465
- get_queue_url: Sdk9.GetQueueUrlCommand,
70466
- list_dead_letter_source_queues: Sdk9.ListDeadLetterSourceQueuesCommand,
70467
- list_message_move_tasks: Sdk9.ListMessageMoveTasksCommand,
70468
- list_queue_tags: Sdk9.ListQueueTagsCommand,
70469
- list_queues: Sdk9.ListQueuesCommand,
70470
- purge_queue: Sdk9.PurgeQueueCommand,
70471
- receive_message: Sdk9.ReceiveMessageCommand,
70472
- remove_permission: Sdk9.RemovePermissionCommand,
70473
- send_message: Sdk9.SendMessageCommand,
70474
- send_message_batch: Sdk9.SendMessageBatchCommand,
70475
- set_queue_attributes: Sdk9.SetQueueAttributesCommand,
70476
- start_message_move_task: Sdk9.StartMessageMoveTaskCommand,
70477
- tag_queue: Sdk9.TagQueueCommand,
70478
- untag_queue: Sdk9.UntagQueueCommand
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: () => make77
70551
+ make: () => make78
70487
70552
  });
70488
- import * as Sdk10 from "@aws-sdk/client-ssm";
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 Sdk10.SSMClient(config2 ?? {});
70558
+ return new Sdk11.SSMClient(config2 ?? {});
70494
70559
  })
70495
70560
  );
70496
70561
  };
70497
- var make77 = fn("aws_SSM")(function* (actionName, actionInput) {
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 Sdk10.SSMServiceException) {
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: Sdk10.AddTagsToResourceCommand,
70528
- associate_ops_item_related_item: Sdk10.AssociateOpsItemRelatedItemCommand,
70529
- cancel_command: Sdk10.CancelCommandCommand,
70530
- cancel_maintenance_window_execution: Sdk10.CancelMaintenanceWindowExecutionCommand,
70531
- create_activation: Sdk10.CreateActivationCommand,
70532
- create_association: Sdk10.CreateAssociationCommand,
70533
- create_association_batch: Sdk10.CreateAssociationBatchCommand,
70534
- create_document: Sdk10.CreateDocumentCommand,
70535
- create_maintenance_window: Sdk10.CreateMaintenanceWindowCommand,
70536
- create_ops_item: Sdk10.CreateOpsItemCommand,
70537
- create_ops_metadata: Sdk10.CreateOpsMetadataCommand,
70538
- create_patch_baseline: Sdk10.CreatePatchBaselineCommand,
70539
- create_resource_data_sync: Sdk10.CreateResourceDataSyncCommand,
70540
- delete_activation: Sdk10.DeleteActivationCommand,
70541
- delete_association: Sdk10.DeleteAssociationCommand,
70542
- delete_document: Sdk10.DeleteDocumentCommand,
70543
- delete_inventory: Sdk10.DeleteInventoryCommand,
70544
- delete_maintenance_window: Sdk10.DeleteMaintenanceWindowCommand,
70545
- delete_ops_item: Sdk10.DeleteOpsItemCommand,
70546
- delete_ops_metadata: Sdk10.DeleteOpsMetadataCommand,
70547
- delete_parameter: Sdk10.DeleteParameterCommand,
70548
- delete_parameters: Sdk10.DeleteParametersCommand,
70549
- delete_patch_baseline: Sdk10.DeletePatchBaselineCommand,
70550
- delete_resource_data_sync: Sdk10.DeleteResourceDataSyncCommand,
70551
- delete_resource_policy: Sdk10.DeleteResourcePolicyCommand,
70552
- deregister_managed_instance: Sdk10.DeregisterManagedInstanceCommand,
70553
- deregister_patch_baseline_for_patch_group: Sdk10.DeregisterPatchBaselineForPatchGroupCommand,
70554
- deregister_target_from_maintenance_window: Sdk10.DeregisterTargetFromMaintenanceWindowCommand,
70555
- deregister_task_from_maintenance_window: Sdk10.DeregisterTaskFromMaintenanceWindowCommand,
70556
- describe_activations: Sdk10.DescribeActivationsCommand,
70557
- describe_association: Sdk10.DescribeAssociationCommand,
70558
- describe_association_execution_targets: Sdk10.DescribeAssociationExecutionTargetsCommand,
70559
- describe_association_executions: Sdk10.DescribeAssociationExecutionsCommand,
70560
- describe_automation_executions: Sdk10.DescribeAutomationExecutionsCommand,
70561
- describe_automation_step_executions: Sdk10.DescribeAutomationStepExecutionsCommand,
70562
- describe_available_patches: Sdk10.DescribeAvailablePatchesCommand,
70563
- describe_document: Sdk10.DescribeDocumentCommand,
70564
- describe_document_permission: Sdk10.DescribeDocumentPermissionCommand,
70565
- describe_effective_instance_associations: Sdk10.DescribeEffectiveInstanceAssociationsCommand,
70566
- describe_effective_patches_for_patch_baseline: Sdk10.DescribeEffectivePatchesForPatchBaselineCommand,
70567
- describe_instance_associations_status: Sdk10.DescribeInstanceAssociationsStatusCommand,
70568
- describe_instance_information: Sdk10.DescribeInstanceInformationCommand,
70569
- describe_instance_patch_states: Sdk10.DescribeInstancePatchStatesCommand,
70570
- describe_instance_patch_states_for_patch_group: Sdk10.DescribeInstancePatchStatesForPatchGroupCommand,
70571
- describe_instance_patches: Sdk10.DescribeInstancePatchesCommand,
70572
- describe_instance_properties: Sdk10.DescribeInstancePropertiesCommand,
70573
- describe_inventory_deletions: Sdk10.DescribeInventoryDeletionsCommand,
70574
- describe_maintenance_window_execution_task_invocations: Sdk10.DescribeMaintenanceWindowExecutionTaskInvocationsCommand,
70575
- describe_maintenance_window_execution_tasks: Sdk10.DescribeMaintenanceWindowExecutionTasksCommand,
70576
- describe_maintenance_window_executions: Sdk10.DescribeMaintenanceWindowExecutionsCommand,
70577
- describe_maintenance_window_schedule: Sdk10.DescribeMaintenanceWindowScheduleCommand,
70578
- describe_maintenance_window_targets: Sdk10.DescribeMaintenanceWindowTargetsCommand,
70579
- describe_maintenance_window_tasks: Sdk10.DescribeMaintenanceWindowTasksCommand,
70580
- describe_maintenance_windows: Sdk10.DescribeMaintenanceWindowsCommand,
70581
- describe_maintenance_windows_for_target: Sdk10.DescribeMaintenanceWindowsForTargetCommand,
70582
- describe_ops_items: Sdk10.DescribeOpsItemsCommand,
70583
- describe_parameters: Sdk10.DescribeParametersCommand,
70584
- describe_patch_baselines: Sdk10.DescribePatchBaselinesCommand,
70585
- describe_patch_group_state: Sdk10.DescribePatchGroupStateCommand,
70586
- describe_patch_groups: Sdk10.DescribePatchGroupsCommand,
70587
- describe_patch_properties: Sdk10.DescribePatchPropertiesCommand,
70588
- describe_sessions: Sdk10.DescribeSessionsCommand,
70589
- disassociate_ops_item_related_item: Sdk10.DisassociateOpsItemRelatedItemCommand,
70590
- get_access_token: Sdk10.GetAccessTokenCommand,
70591
- get_automation_execution: Sdk10.GetAutomationExecutionCommand,
70592
- get_calendar_state: Sdk10.GetCalendarStateCommand,
70593
- get_command_invocation: Sdk10.GetCommandInvocationCommand,
70594
- get_connection_status: Sdk10.GetConnectionStatusCommand,
70595
- get_default_patch_baseline: Sdk10.GetDefaultPatchBaselineCommand,
70596
- get_deployable_patch_snapshot_for_instance: Sdk10.GetDeployablePatchSnapshotForInstanceCommand,
70597
- get_document: Sdk10.GetDocumentCommand,
70598
- get_execution_preview: Sdk10.GetExecutionPreviewCommand,
70599
- get_inventory: Sdk10.GetInventoryCommand,
70600
- get_inventory_schema: Sdk10.GetInventorySchemaCommand,
70601
- get_maintenance_window: Sdk10.GetMaintenanceWindowCommand,
70602
- get_maintenance_window_execution: Sdk10.GetMaintenanceWindowExecutionCommand,
70603
- get_maintenance_window_execution_task: Sdk10.GetMaintenanceWindowExecutionTaskCommand,
70604
- get_maintenance_window_execution_task_invocation: Sdk10.GetMaintenanceWindowExecutionTaskInvocationCommand,
70605
- get_maintenance_window_task: Sdk10.GetMaintenanceWindowTaskCommand,
70606
- get_ops_item: Sdk10.GetOpsItemCommand,
70607
- get_ops_metadata: Sdk10.GetOpsMetadataCommand,
70608
- get_ops_summary: Sdk10.GetOpsSummaryCommand,
70609
- get_parameter: Sdk10.GetParameterCommand,
70610
- get_parameter_history: Sdk10.GetParameterHistoryCommand,
70611
- get_parameters: Sdk10.GetParametersCommand,
70612
- get_parameters_by_path: Sdk10.GetParametersByPathCommand,
70613
- get_patch_baseline: Sdk10.GetPatchBaselineCommand,
70614
- get_patch_baseline_for_patch_group: Sdk10.GetPatchBaselineForPatchGroupCommand,
70615
- get_resource_policies: Sdk10.GetResourcePoliciesCommand,
70616
- get_service_setting: Sdk10.GetServiceSettingCommand,
70617
- label_parameter_version: Sdk10.LabelParameterVersionCommand,
70618
- list_association_versions: Sdk10.ListAssociationVersionsCommand,
70619
- list_associations: Sdk10.ListAssociationsCommand,
70620
- list_command_invocations: Sdk10.ListCommandInvocationsCommand,
70621
- list_commands: Sdk10.ListCommandsCommand,
70622
- list_compliance_items: Sdk10.ListComplianceItemsCommand,
70623
- list_compliance_summaries: Sdk10.ListComplianceSummariesCommand,
70624
- list_document_metadata_history: Sdk10.ListDocumentMetadataHistoryCommand,
70625
- list_document_versions: Sdk10.ListDocumentVersionsCommand,
70626
- list_documents: Sdk10.ListDocumentsCommand,
70627
- list_inventory_entries: Sdk10.ListInventoryEntriesCommand,
70628
- list_nodes: Sdk10.ListNodesCommand,
70629
- list_nodes_summary: Sdk10.ListNodesSummaryCommand,
70630
- list_ops_item_events: Sdk10.ListOpsItemEventsCommand,
70631
- list_ops_item_related_items: Sdk10.ListOpsItemRelatedItemsCommand,
70632
- list_ops_metadata: Sdk10.ListOpsMetadataCommand,
70633
- list_resource_compliance_summaries: Sdk10.ListResourceComplianceSummariesCommand,
70634
- list_resource_data_sync: Sdk10.ListResourceDataSyncCommand,
70635
- list_tags_for_resource: Sdk10.ListTagsForResourceCommand,
70636
- modify_document_permission: Sdk10.ModifyDocumentPermissionCommand,
70637
- put_compliance_items: Sdk10.PutComplianceItemsCommand,
70638
- put_inventory: Sdk10.PutInventoryCommand,
70639
- put_parameter: Sdk10.PutParameterCommand,
70640
- put_resource_policy: Sdk10.PutResourcePolicyCommand,
70641
- register_default_patch_baseline: Sdk10.RegisterDefaultPatchBaselineCommand,
70642
- register_patch_baseline_for_patch_group: Sdk10.RegisterPatchBaselineForPatchGroupCommand,
70643
- register_target_with_maintenance_window: Sdk10.RegisterTargetWithMaintenanceWindowCommand,
70644
- register_task_with_maintenance_window: Sdk10.RegisterTaskWithMaintenanceWindowCommand,
70645
- remove_tags_from_resource: Sdk10.RemoveTagsFromResourceCommand,
70646
- reset_service_setting: Sdk10.ResetServiceSettingCommand,
70647
- resume_session: Sdk10.ResumeSessionCommand,
70648
- send_automation_signal: Sdk10.SendAutomationSignalCommand,
70649
- send_command: Sdk10.SendCommandCommand,
70650
- start_access_request: Sdk10.StartAccessRequestCommand,
70651
- start_associations_once: Sdk10.StartAssociationsOnceCommand,
70652
- start_automation_execution: Sdk10.StartAutomationExecutionCommand,
70653
- start_change_request_execution: Sdk10.StartChangeRequestExecutionCommand,
70654
- start_execution_preview: Sdk10.StartExecutionPreviewCommand,
70655
- start_session: Sdk10.StartSessionCommand,
70656
- stop_automation_execution: Sdk10.StopAutomationExecutionCommand,
70657
- terminate_session: Sdk10.TerminateSessionCommand,
70658
- unlabel_parameter_version: Sdk10.UnlabelParameterVersionCommand,
70659
- update_association: Sdk10.UpdateAssociationCommand,
70660
- update_association_status: Sdk10.UpdateAssociationStatusCommand,
70661
- update_document: Sdk10.UpdateDocumentCommand,
70662
- update_document_default_version: Sdk10.UpdateDocumentDefaultVersionCommand,
70663
- update_document_metadata: Sdk10.UpdateDocumentMetadataCommand,
70664
- update_maintenance_window: Sdk10.UpdateMaintenanceWindowCommand,
70665
- update_maintenance_window_target: Sdk10.UpdateMaintenanceWindowTargetCommand,
70666
- update_maintenance_window_task: Sdk10.UpdateMaintenanceWindowTaskCommand,
70667
- update_managed_instance_role: Sdk10.UpdateManagedInstanceRoleCommand,
70668
- update_ops_item: Sdk10.UpdateOpsItemCommand,
70669
- update_ops_metadata: Sdk10.UpdateOpsMetadataCommand,
70670
- update_patch_baseline: Sdk10.UpdatePatchBaselineCommand,
70671
- update_resource_data_sync: Sdk10.UpdateResourceDataSyncCommand,
70672
- update_service_setting: Sdk10.UpdateServiceSettingCommand
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 URL_REWRITE_FUNCTION_CODE = `function handler(event) {
71873
- var request = event.request;
71874
- var uri = request.uri;
71875
- if (uri.endsWith('/')) {
71876
- request.uri += 'index.html';
71877
- } else if (!uri.includes('.')) {
71878
- request.uri += '/index.html';
71879
- }
71880
- return request;
71881
- }`;
71882
- var ensureUrlRewriteFunction = (name) => Effect_exports.gen(function* () {
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* Effect_exports.logDebug(`CloudFront Function ${name} already exists`);
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
- Comment: "URL rewrite: append index.html for directory paths",
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: etag
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 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;
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 (!isSpa) {
72990
- const fnName = `${project2}-${stage}-url-rewrite`;
72991
- const result = yield* ensureUrlRewriteFunction(fnName);
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();