diff --git a/.projenrc.ts b/.projenrc.ts index 6a5251d..1c9d88e 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -5,6 +5,7 @@ import { Changesets, Docgen, TypeScriptLibProject, Vitest } from "./projenrc"; const org = "floydspace"; const name = "effect-aws"; const repo = `${org}/${name}`; +const awsSdkVersion = "3.556.0"; const project = new monorepo.MonorepoTsProject({ name: name, @@ -54,7 +55,7 @@ new TypeScriptLibProject({ new TypeScriptLibProject({ parent: project, name: "client-api-gateway-management-api", - deps: [...commonDeps, "@aws-sdk/client-apigatewaymanagementapi@^3"], + deps: [...commonDeps, `@aws-sdk/client-apigatewaymanagementapi@^${awsSdkVersion}`], devDeps: commonDevDeps, peerDeps: commonPeerDeps, }); @@ -62,7 +63,7 @@ new TypeScriptLibProject({ const dynamodbClient = new TypeScriptLibProject({ parent: project, name: "client-dynamodb", - deps: [...commonDeps, "@aws-sdk/client-dynamodb@^3"], + deps: [...commonDeps, `@aws-sdk/client-dynamodb@^${awsSdkVersion}`], devDeps: commonDevDeps, peerDeps: commonPeerDeps, }); @@ -72,8 +73,8 @@ const dynamodbLib = new TypeScriptLibProject({ name: "lib-dynamodb", deps: [ ...commonDeps, - "@aws-sdk/client-dynamodb@^3", - "@aws-sdk/lib-dynamodb@^3", + `@aws-sdk/client-dynamodb@^${awsSdkVersion}`, + `@aws-sdk/lib-dynamodb@^${awsSdkVersion}`, ], devDeps: commonDevDeps, peerDeps: [...commonPeerDeps, dynamodbClient.package.packageName], @@ -95,7 +96,7 @@ const clients = [ {name: 'opensearch'}, {name: 'opensearchserverless'}, {name: 'rds'}, - {name: 's3', extraDeps: ['@aws-sdk/s3-request-presigner@^3']}, + {name: 's3', extraDeps: [`@aws-sdk/s3-request-presigner@^${awsSdkVersion}`]}, {name: 'sfn'}, {name: 'sns'}, {name: 'sqs'}, @@ -105,7 +106,7 @@ for (const {name, extraDeps = []} of clients) { new TypeScriptLibProject({ parent: project, name: `client-${name}`, - deps: [...commonDeps, `@aws-sdk/client-${name}@^3`, ...extraDeps], + deps: [...commonDeps, `@aws-sdk/client-${name}@^${awsSdkVersion}`, ...extraDeps], devDeps: commonDevDeps, peerDeps: commonPeerDeps, }); diff --git a/packages/client-api-gateway-management-api/.projen/deps.json b/packages/client-api-gateway-management-api/.projen/deps.json index c961393..bf292e9 100644 --- a/packages/client-api-gateway-management-api/.projen/deps.json +++ b/packages/client-api-gateway-management-api/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-apigatewaymanagementapi", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-api-gateway-management-api/package.json b/packages/client-api-gateway-management-api/package.json index 5b28964..a32f742 100644 --- a/packages/client-api-gateway-management-api/package.json +++ b/packages/client-api-gateway-management-api/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-apigatewaymanagementapi": "^3", + "@aws-sdk/client-apigatewaymanagementapi": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-cloudtrail/.projen/deps.json b/packages/client-cloudtrail/.projen/deps.json index eea5133..7365998 100644 --- a/packages/client-cloudtrail/.projen/deps.json +++ b/packages/client-cloudtrail/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-cloudtrail", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-cloudtrail/package.json b/packages/client-cloudtrail/package.json index cb60921..c4e2875 100644 --- a/packages/client-cloudtrail/package.json +++ b/packages/client-cloudtrail/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-cloudtrail": "^3", + "@aws-sdk/client-cloudtrail": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-cloudwatch-events/.projen/deps.json b/packages/client-cloudwatch-events/.projen/deps.json index c048c32..b85dcc0 100644 --- a/packages/client-cloudwatch-events/.projen/deps.json +++ b/packages/client-cloudwatch-events/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-cloudwatch-events", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-cloudwatch-events/package.json b/packages/client-cloudwatch-events/package.json index 7dd15e4..66f34f5 100644 --- a/packages/client-cloudwatch-events/package.json +++ b/packages/client-cloudwatch-events/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-cloudwatch-events": "^3", + "@aws-sdk/client-cloudwatch-events": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-cloudwatch-logs/.projen/deps.json b/packages/client-cloudwatch-logs/.projen/deps.json index 126bd88..ce4abc5 100644 --- a/packages/client-cloudwatch-logs/.projen/deps.json +++ b/packages/client-cloudwatch-logs/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-cloudwatch-logs", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-cloudwatch-logs/package.json b/packages/client-cloudwatch-logs/package.json index b99b6b7..3dc5057 100644 --- a/packages/client-cloudwatch-logs/package.json +++ b/packages/client-cloudwatch-logs/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-cloudwatch-logs": "^3", + "@aws-sdk/client-cloudwatch-logs": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-cloudwatch/.projen/deps.json b/packages/client-cloudwatch/.projen/deps.json index 0133ee7..e1fc0aa 100644 --- a/packages/client-cloudwatch/.projen/deps.json +++ b/packages/client-cloudwatch/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-cloudwatch", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-cloudwatch/package.json b/packages/client-cloudwatch/package.json index 614a461..4d47b96 100644 --- a/packages/client-cloudwatch/package.json +++ b/packages/client-cloudwatch/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-cloudwatch": "^3", + "@aws-sdk/client-cloudwatch": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-cognito-identity-provider/.projen/deps.json b/packages/client-cognito-identity-provider/.projen/deps.json index 2df98e4..0bcc719 100644 --- a/packages/client-cognito-identity-provider/.projen/deps.json +++ b/packages/client-cognito-identity-provider/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-cognito-identity-provider", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-cognito-identity-provider/package.json b/packages/client-cognito-identity-provider/package.json index 5319a6a..9abffd0 100644 --- a/packages/client-cognito-identity-provider/package.json +++ b/packages/client-cognito-identity-provider/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-cognito-identity-provider": "^3", + "@aws-sdk/client-cognito-identity-provider": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-dynamodb/.projen/deps.json b/packages/client-dynamodb/.projen/deps.json index bd2b173..2830482 100644 --- a/packages/client-dynamodb/.projen/deps.json +++ b/packages/client-dynamodb/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-dynamodb", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-dynamodb/package.json b/packages/client-dynamodb/package.json index 170a9ad..7e8f8e8 100644 --- a/packages/client-dynamodb/package.json +++ b/packages/client-dynamodb/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-dynamodb": "^3", + "@aws-sdk/client-dynamodb": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-ec2/.projen/deps.json b/packages/client-ec2/.projen/deps.json index 649c093..a4c4de5 100644 --- a/packages/client-ec2/.projen/deps.json +++ b/packages/client-ec2/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-ec2", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-ec2/package.json b/packages/client-ec2/package.json index 5ccadca..6479997 100644 --- a/packages/client-ec2/package.json +++ b/packages/client-ec2/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-ec2": "^3", + "@aws-sdk/client-ec2": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-ec2/src/EC2Service.ts b/packages/client-ec2/src/EC2Service.ts index 2588f5d..c44991d 100644 --- a/packages/client-ec2/src/EC2Service.ts +++ b/packages/client-ec2/src/EC2Service.ts @@ -1804,635 +1804,629 @@ import { } from "@aws-sdk/client-ec2"; import type { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types"; import { Context, Data, Effect, Layer, Record } from "effect"; -import { - EC2ClientInstance, - EC2ClientInstanceLayer, -} from "./EC2ClientInstance"; +import { EC2ClientInstance, EC2ClientInstanceLayer } from "./EC2ClientInstance"; import { DefaultEC2ClientConfigLayer } from "./EC2ClientInstanceConfig"; -import { - type TaggedException, - SdkError, -} from "./Errors"; +import { type TaggedException, SdkError } from "./Errors"; const commands = { AcceptAddressTransferCommand, - AcceptReservedInstancesExchangeQuoteCommand, - AcceptTransitGatewayMulticastDomainAssociationsCommand, - AcceptTransitGatewayPeeringAttachmentCommand, - AcceptTransitGatewayVpcAttachmentCommand, - AcceptVpcEndpointConnectionsCommand, - AcceptVpcPeeringConnectionCommand, - AdvertiseByoipCidrCommand, - AllocateAddressCommand, - AllocateHostsCommand, - AllocateIpamPoolCidrCommand, - ApplySecurityGroupsToClientVpnTargetNetworkCommand, - AssignIpv6AddressesCommand, - AssignPrivateIpAddressesCommand, - AssignPrivateNatGatewayAddressCommand, - AssociateAddressCommand, - AssociateClientVpnTargetNetworkCommand, - AssociateDhcpOptionsCommand, - AssociateEnclaveCertificateIamRoleCommand, - AssociateIamInstanceProfileCommand, - AssociateInstanceEventWindowCommand, - AssociateIpamByoasnCommand, - AssociateIpamResourceDiscoveryCommand, - AssociateNatGatewayAddressCommand, - AssociateRouteTableCommand, - AssociateSubnetCidrBlockCommand, - AssociateTransitGatewayMulticastDomainCommand, - AssociateTransitGatewayPolicyTableCommand, - AssociateTransitGatewayRouteTableCommand, - AssociateTrunkInterfaceCommand, - AssociateVpcCidrBlockCommand, - AttachClassicLinkVpcCommand, - AttachInternetGatewayCommand, - AttachNetworkInterfaceCommand, - AttachVerifiedAccessTrustProviderCommand, - AttachVolumeCommand, - AttachVpnGatewayCommand, - AuthorizeClientVpnIngressCommand, - AuthorizeSecurityGroupEgressCommand, - AuthorizeSecurityGroupIngressCommand, - BundleInstanceCommand, - CancelBundleTaskCommand, - CancelCapacityReservationCommand, - CancelCapacityReservationFleetsCommand, - CancelConversionTaskCommand, - CancelExportTaskCommand, - CancelImageLaunchPermissionCommand, - CancelImportTaskCommand, - CancelReservedInstancesListingCommand, - CancelSpotFleetRequestsCommand, - CancelSpotInstanceRequestsCommand, - ConfirmProductInstanceCommand, - CopyFpgaImageCommand, - CopyImageCommand, - CopySnapshotCommand, - CreateCapacityReservationCommand, - CreateCapacityReservationFleetCommand, - CreateCarrierGatewayCommand, - CreateClientVpnEndpointCommand, - CreateClientVpnRouteCommand, - CreateCoipCidrCommand, - CreateCoipPoolCommand, - CreateCustomerGatewayCommand, - CreateDefaultSubnetCommand, - CreateDefaultVpcCommand, - CreateDhcpOptionsCommand, - CreateEgressOnlyInternetGatewayCommand, - CreateFleetCommand, - CreateFlowLogsCommand, - CreateFpgaImageCommand, - CreateImageCommand, - CreateInstanceConnectEndpointCommand, - CreateInstanceEventWindowCommand, - CreateInstanceExportTaskCommand, - CreateInternetGatewayCommand, - CreateIpamCommand, - CreateIpamPoolCommand, - CreateIpamResourceDiscoveryCommand, - CreateIpamScopeCommand, - CreateKeyPairCommand, - CreateLaunchTemplateCommand, - CreateLaunchTemplateVersionCommand, - CreateLocalGatewayRouteCommand, - CreateLocalGatewayRouteTableCommand, - CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand, - CreateLocalGatewayRouteTableVpcAssociationCommand, - CreateManagedPrefixListCommand, - CreateNatGatewayCommand, - CreateNetworkAclCommand, - CreateNetworkAclEntryCommand, - CreateNetworkInsightsAccessScopeCommand, - CreateNetworkInsightsPathCommand, - CreateNetworkInterfaceCommand, - CreateNetworkInterfacePermissionCommand, - CreatePlacementGroupCommand, - CreatePublicIpv4PoolCommand, - CreateReplaceRootVolumeTaskCommand, - CreateReservedInstancesListingCommand, - CreateRestoreImageTaskCommand, - CreateRouteCommand, - CreateRouteTableCommand, - CreateSecurityGroupCommand, - CreateSnapshotCommand, - CreateSnapshotsCommand, - CreateSpotDatafeedSubscriptionCommand, - CreateStoreImageTaskCommand, - CreateSubnetCommand, - CreateSubnetCidrReservationCommand, - CreateTagsCommand, - CreateTrafficMirrorFilterCommand, - CreateTrafficMirrorFilterRuleCommand, - CreateTrafficMirrorSessionCommand, - CreateTrafficMirrorTargetCommand, - CreateTransitGatewayCommand, - CreateTransitGatewayConnectCommand, - CreateTransitGatewayConnectPeerCommand, - CreateTransitGatewayMulticastDomainCommand, - CreateTransitGatewayPeeringAttachmentCommand, - CreateTransitGatewayPolicyTableCommand, - CreateTransitGatewayPrefixListReferenceCommand, - CreateTransitGatewayRouteCommand, - CreateTransitGatewayRouteTableCommand, - CreateTransitGatewayRouteTableAnnouncementCommand, - CreateTransitGatewayVpcAttachmentCommand, - CreateVerifiedAccessEndpointCommand, - CreateVerifiedAccessGroupCommand, - CreateVerifiedAccessInstanceCommand, - CreateVerifiedAccessTrustProviderCommand, - CreateVolumeCommand, - CreateVpcCommand, - CreateVpcEndpointCommand, - CreateVpcEndpointConnectionNotificationCommand, - CreateVpcEndpointServiceConfigurationCommand, - CreateVpcPeeringConnectionCommand, - CreateVpnConnectionCommand, - CreateVpnConnectionRouteCommand, - CreateVpnGatewayCommand, - DeleteCarrierGatewayCommand, - DeleteClientVpnEndpointCommand, - DeleteClientVpnRouteCommand, - DeleteCoipCidrCommand, - DeleteCoipPoolCommand, - DeleteCustomerGatewayCommand, - DeleteDhcpOptionsCommand, - DeleteEgressOnlyInternetGatewayCommand, - DeleteFleetsCommand, - DeleteFlowLogsCommand, - DeleteFpgaImageCommand, - DeleteInstanceConnectEndpointCommand, - DeleteInstanceEventWindowCommand, - DeleteInternetGatewayCommand, - DeleteIpamCommand, - DeleteIpamPoolCommand, - DeleteIpamResourceDiscoveryCommand, - DeleteIpamScopeCommand, - DeleteKeyPairCommand, - DeleteLaunchTemplateCommand, - DeleteLaunchTemplateVersionsCommand, - DeleteLocalGatewayRouteCommand, - DeleteLocalGatewayRouteTableCommand, - DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand, - DeleteLocalGatewayRouteTableVpcAssociationCommand, - DeleteManagedPrefixListCommand, - DeleteNatGatewayCommand, - DeleteNetworkAclCommand, - DeleteNetworkAclEntryCommand, - DeleteNetworkInsightsAccessScopeCommand, - DeleteNetworkInsightsAccessScopeAnalysisCommand, - DeleteNetworkInsightsAnalysisCommand, - DeleteNetworkInsightsPathCommand, - DeleteNetworkInterfaceCommand, - DeleteNetworkInterfacePermissionCommand, - DeletePlacementGroupCommand, - DeletePublicIpv4PoolCommand, - DeleteQueuedReservedInstancesCommand, - DeleteRouteCommand, - DeleteRouteTableCommand, - DeleteSecurityGroupCommand, - DeleteSnapshotCommand, - DeleteSpotDatafeedSubscriptionCommand, - DeleteSubnetCommand, - DeleteSubnetCidrReservationCommand, - DeleteTagsCommand, - DeleteTrafficMirrorFilterCommand, - DeleteTrafficMirrorFilterRuleCommand, - DeleteTrafficMirrorSessionCommand, - DeleteTrafficMirrorTargetCommand, - DeleteTransitGatewayCommand, - DeleteTransitGatewayConnectCommand, - DeleteTransitGatewayConnectPeerCommand, - DeleteTransitGatewayMulticastDomainCommand, - DeleteTransitGatewayPeeringAttachmentCommand, - DeleteTransitGatewayPolicyTableCommand, - DeleteTransitGatewayPrefixListReferenceCommand, - DeleteTransitGatewayRouteCommand, - DeleteTransitGatewayRouteTableCommand, - DeleteTransitGatewayRouteTableAnnouncementCommand, - DeleteTransitGatewayVpcAttachmentCommand, - DeleteVerifiedAccessEndpointCommand, - DeleteVerifiedAccessGroupCommand, - DeleteVerifiedAccessInstanceCommand, - DeleteVerifiedAccessTrustProviderCommand, - DeleteVolumeCommand, - DeleteVpcCommand, - DeleteVpcEndpointConnectionNotificationsCommand, - DeleteVpcEndpointServiceConfigurationsCommand, - DeleteVpcEndpointsCommand, - DeleteVpcPeeringConnectionCommand, - DeleteVpnConnectionCommand, - DeleteVpnConnectionRouteCommand, - DeleteVpnGatewayCommand, - DeprovisionByoipCidrCommand, - DeprovisionIpamByoasnCommand, - DeprovisionIpamPoolCidrCommand, - DeprovisionPublicIpv4PoolCidrCommand, - DeregisterImageCommand, - DeregisterInstanceEventNotificationAttributesCommand, - DeregisterTransitGatewayMulticastGroupMembersCommand, - DeregisterTransitGatewayMulticastGroupSourcesCommand, - DescribeAccountAttributesCommand, - DescribeAddressTransfersCommand, - DescribeAddressesCommand, - DescribeAddressesAttributeCommand, - DescribeAggregateIdFormatCommand, - DescribeAvailabilityZonesCommand, - DescribeAwsNetworkPerformanceMetricSubscriptionsCommand, - DescribeBundleTasksCommand, - DescribeByoipCidrsCommand, - DescribeCapacityBlockOfferingsCommand, - DescribeCapacityReservationFleetsCommand, - DescribeCapacityReservationsCommand, - DescribeCarrierGatewaysCommand, - DescribeClassicLinkInstancesCommand, - DescribeClientVpnAuthorizationRulesCommand, - DescribeClientVpnConnectionsCommand, - DescribeClientVpnEndpointsCommand, - DescribeClientVpnRoutesCommand, - DescribeClientVpnTargetNetworksCommand, - DescribeCoipPoolsCommand, - DescribeConversionTasksCommand, - DescribeCustomerGatewaysCommand, - DescribeDhcpOptionsCommand, - DescribeEgressOnlyInternetGatewaysCommand, - DescribeElasticGpusCommand, - DescribeExportImageTasksCommand, - DescribeExportTasksCommand, - DescribeFastLaunchImagesCommand, - DescribeFastSnapshotRestoresCommand, - DescribeFleetHistoryCommand, - DescribeFleetInstancesCommand, - DescribeFleetsCommand, - DescribeFlowLogsCommand, - DescribeFpgaImageAttributeCommand, - DescribeFpgaImagesCommand, - DescribeHostReservationOfferingsCommand, - DescribeHostReservationsCommand, - DescribeHostsCommand, - DescribeIamInstanceProfileAssociationsCommand, - DescribeIdFormatCommand, - DescribeIdentityIdFormatCommand, - DescribeImageAttributeCommand, - DescribeImagesCommand, - DescribeImportImageTasksCommand, - DescribeImportSnapshotTasksCommand, - DescribeInstanceAttributeCommand, - DescribeInstanceConnectEndpointsCommand, - DescribeInstanceCreditSpecificationsCommand, - DescribeInstanceEventNotificationAttributesCommand, - DescribeInstanceEventWindowsCommand, - DescribeInstanceStatusCommand, - DescribeInstanceTopologyCommand, - DescribeInstanceTypeOfferingsCommand, - DescribeInstanceTypesCommand, - DescribeInstancesCommand, - DescribeInternetGatewaysCommand, - DescribeIpamByoasnCommand, - DescribeIpamPoolsCommand, - DescribeIpamResourceDiscoveriesCommand, - DescribeIpamResourceDiscoveryAssociationsCommand, - DescribeIpamScopesCommand, - DescribeIpamsCommand, - DescribeIpv6PoolsCommand, - DescribeKeyPairsCommand, - DescribeLaunchTemplateVersionsCommand, - DescribeLaunchTemplatesCommand, - DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand, - DescribeLocalGatewayRouteTableVpcAssociationsCommand, - DescribeLocalGatewayRouteTablesCommand, - DescribeLocalGatewayVirtualInterfaceGroupsCommand, - DescribeLocalGatewayVirtualInterfacesCommand, - DescribeLocalGatewaysCommand, - DescribeLockedSnapshotsCommand, - DescribeMacHostsCommand, - DescribeManagedPrefixListsCommand, - DescribeMovingAddressesCommand, - DescribeNatGatewaysCommand, - DescribeNetworkAclsCommand, - DescribeNetworkInsightsAccessScopeAnalysesCommand, - DescribeNetworkInsightsAccessScopesCommand, - DescribeNetworkInsightsAnalysesCommand, - DescribeNetworkInsightsPathsCommand, - DescribeNetworkInterfaceAttributeCommand, - DescribeNetworkInterfacePermissionsCommand, - DescribeNetworkInterfacesCommand, - DescribePlacementGroupsCommand, - DescribePrefixListsCommand, - DescribePrincipalIdFormatCommand, - DescribePublicIpv4PoolsCommand, - DescribeRegionsCommand, - DescribeReplaceRootVolumeTasksCommand, - DescribeReservedInstancesCommand, - DescribeReservedInstancesListingsCommand, - DescribeReservedInstancesModificationsCommand, - DescribeReservedInstancesOfferingsCommand, - DescribeRouteTablesCommand, - DescribeScheduledInstanceAvailabilityCommand, - DescribeScheduledInstancesCommand, - DescribeSecurityGroupReferencesCommand, - DescribeSecurityGroupRulesCommand, - DescribeSecurityGroupsCommand, - DescribeSnapshotAttributeCommand, - DescribeSnapshotTierStatusCommand, - DescribeSnapshotsCommand, - DescribeSpotDatafeedSubscriptionCommand, - DescribeSpotFleetInstancesCommand, - DescribeSpotFleetRequestHistoryCommand, - DescribeSpotFleetRequestsCommand, - DescribeSpotInstanceRequestsCommand, - DescribeSpotPriceHistoryCommand, - DescribeStaleSecurityGroupsCommand, - DescribeStoreImageTasksCommand, - DescribeSubnetsCommand, - DescribeTagsCommand, - DescribeTrafficMirrorFiltersCommand, - DescribeTrafficMirrorSessionsCommand, - DescribeTrafficMirrorTargetsCommand, - DescribeTransitGatewayAttachmentsCommand, - DescribeTransitGatewayConnectPeersCommand, - DescribeTransitGatewayConnectsCommand, - DescribeTransitGatewayMulticastDomainsCommand, - DescribeTransitGatewayPeeringAttachmentsCommand, - DescribeTransitGatewayPolicyTablesCommand, - DescribeTransitGatewayRouteTableAnnouncementsCommand, - DescribeTransitGatewayRouteTablesCommand, - DescribeTransitGatewayVpcAttachmentsCommand, - DescribeTransitGatewaysCommand, - DescribeTrunkInterfaceAssociationsCommand, - DescribeVerifiedAccessEndpointsCommand, - DescribeVerifiedAccessGroupsCommand, - DescribeVerifiedAccessInstanceLoggingConfigurationsCommand, - DescribeVerifiedAccessInstancesCommand, - DescribeVerifiedAccessTrustProvidersCommand, - DescribeVolumeAttributeCommand, - DescribeVolumeStatusCommand, - DescribeVolumesCommand, - DescribeVolumesModificationsCommand, - DescribeVpcAttributeCommand, - DescribeVpcClassicLinkCommand, - DescribeVpcClassicLinkDnsSupportCommand, - DescribeVpcEndpointConnectionNotificationsCommand, - DescribeVpcEndpointConnectionsCommand, - DescribeVpcEndpointServiceConfigurationsCommand, - DescribeVpcEndpointServicePermissionsCommand, - DescribeVpcEndpointServicesCommand, - DescribeVpcEndpointsCommand, - DescribeVpcPeeringConnectionsCommand, - DescribeVpcsCommand, - DescribeVpnConnectionsCommand, - DescribeVpnGatewaysCommand, - DetachClassicLinkVpcCommand, - DetachInternetGatewayCommand, - DetachNetworkInterfaceCommand, - DetachVerifiedAccessTrustProviderCommand, - DetachVolumeCommand, - DetachVpnGatewayCommand, - DisableAddressTransferCommand, - DisableAwsNetworkPerformanceMetricSubscriptionCommand, - DisableEbsEncryptionByDefaultCommand, - DisableFastLaunchCommand, - DisableFastSnapshotRestoresCommand, - DisableImageCommand, - DisableImageBlockPublicAccessCommand, - DisableImageDeprecationCommand, - DisableIpamOrganizationAdminAccountCommand, - DisableSerialConsoleAccessCommand, - DisableSnapshotBlockPublicAccessCommand, - DisableTransitGatewayRouteTablePropagationCommand, - DisableVgwRoutePropagationCommand, - DisableVpcClassicLinkCommand, - DisableVpcClassicLinkDnsSupportCommand, - DisassociateAddressCommand, - DisassociateClientVpnTargetNetworkCommand, - DisassociateEnclaveCertificateIamRoleCommand, - DisassociateIamInstanceProfileCommand, - DisassociateInstanceEventWindowCommand, - DisassociateIpamByoasnCommand, - DisassociateIpamResourceDiscoveryCommand, - DisassociateNatGatewayAddressCommand, - DisassociateRouteTableCommand, - DisassociateSubnetCidrBlockCommand, - DisassociateTransitGatewayMulticastDomainCommand, - DisassociateTransitGatewayPolicyTableCommand, - DisassociateTransitGatewayRouteTableCommand, - DisassociateTrunkInterfaceCommand, - DisassociateVpcCidrBlockCommand, - EnableAddressTransferCommand, - EnableAwsNetworkPerformanceMetricSubscriptionCommand, - EnableEbsEncryptionByDefaultCommand, - EnableFastLaunchCommand, - EnableFastSnapshotRestoresCommand, - EnableImageCommand, - EnableImageBlockPublicAccessCommand, - EnableImageDeprecationCommand, - EnableIpamOrganizationAdminAccountCommand, - EnableReachabilityAnalyzerOrganizationSharingCommand, - EnableSerialConsoleAccessCommand, - EnableSnapshotBlockPublicAccessCommand, - EnableTransitGatewayRouteTablePropagationCommand, - EnableVgwRoutePropagationCommand, - EnableVolumeIOCommand, - EnableVpcClassicLinkCommand, - EnableVpcClassicLinkDnsSupportCommand, - ExportClientVpnClientCertificateRevocationListCommand, - ExportClientVpnClientConfigurationCommand, - ExportImageCommand, - ExportTransitGatewayRoutesCommand, - GetAssociatedEnclaveCertificateIamRolesCommand, - GetAssociatedIpv6PoolCidrsCommand, - GetAwsNetworkPerformanceDataCommand, - GetCapacityReservationUsageCommand, - GetCoipPoolUsageCommand, - GetConsoleOutputCommand, - GetConsoleScreenshotCommand, - GetDefaultCreditSpecificationCommand, - GetEbsDefaultKmsKeyIdCommand, - GetEbsEncryptionByDefaultCommand, - GetFlowLogsIntegrationTemplateCommand, - GetGroupsForCapacityReservationCommand, - GetHostReservationPurchasePreviewCommand, - GetImageBlockPublicAccessStateCommand, - GetInstanceMetadataDefaultsCommand, - GetInstanceTypesFromInstanceRequirementsCommand, - GetInstanceUefiDataCommand, - GetIpamAddressHistoryCommand, - GetIpamDiscoveredAccountsCommand, - GetIpamDiscoveredPublicAddressesCommand, - GetIpamDiscoveredResourceCidrsCommand, - GetIpamPoolAllocationsCommand, - GetIpamPoolCidrsCommand, - GetIpamResourceCidrsCommand, - GetLaunchTemplateDataCommand, - GetManagedPrefixListAssociationsCommand, - GetManagedPrefixListEntriesCommand, - GetNetworkInsightsAccessScopeAnalysisFindingsCommand, - GetNetworkInsightsAccessScopeContentCommand, - GetPasswordDataCommand, - GetReservedInstancesExchangeQuoteCommand, - GetSecurityGroupsForVpcCommand, - GetSerialConsoleAccessStatusCommand, - GetSnapshotBlockPublicAccessStateCommand, - GetSpotPlacementScoresCommand, - GetSubnetCidrReservationsCommand, - GetTransitGatewayAttachmentPropagationsCommand, - GetTransitGatewayMulticastDomainAssociationsCommand, - GetTransitGatewayPolicyTableAssociationsCommand, - GetTransitGatewayPolicyTableEntriesCommand, - GetTransitGatewayPrefixListReferencesCommand, - GetTransitGatewayRouteTableAssociationsCommand, - GetTransitGatewayRouteTablePropagationsCommand, - GetVerifiedAccessEndpointPolicyCommand, - GetVerifiedAccessGroupPolicyCommand, - GetVpnConnectionDeviceSampleConfigurationCommand, - GetVpnConnectionDeviceTypesCommand, - GetVpnTunnelReplacementStatusCommand, - ImportClientVpnClientCertificateRevocationListCommand, - ImportImageCommand, - ImportInstanceCommand, - ImportKeyPairCommand, - ImportSnapshotCommand, - ImportVolumeCommand, - ListImagesInRecycleBinCommand, - ListSnapshotsInRecycleBinCommand, - LockSnapshotCommand, - ModifyAddressAttributeCommand, - ModifyAvailabilityZoneGroupCommand, - ModifyCapacityReservationCommand, - ModifyCapacityReservationFleetCommand, - ModifyClientVpnEndpointCommand, - ModifyDefaultCreditSpecificationCommand, - ModifyEbsDefaultKmsKeyIdCommand, - ModifyFleetCommand, - ModifyFpgaImageAttributeCommand, - ModifyHostsCommand, - ModifyIdFormatCommand, - ModifyIdentityIdFormatCommand, - ModifyImageAttributeCommand, - ModifyInstanceAttributeCommand, - ModifyInstanceCapacityReservationAttributesCommand, - ModifyInstanceCreditSpecificationCommand, - ModifyInstanceEventStartTimeCommand, - ModifyInstanceEventWindowCommand, - ModifyInstanceMaintenanceOptionsCommand, - ModifyInstanceMetadataDefaultsCommand, - ModifyInstanceMetadataOptionsCommand, - ModifyInstancePlacementCommand, - ModifyIpamCommand, - ModifyIpamPoolCommand, - ModifyIpamResourceCidrCommand, - ModifyIpamResourceDiscoveryCommand, - ModifyIpamScopeCommand, - ModifyLaunchTemplateCommand, - ModifyLocalGatewayRouteCommand, - ModifyManagedPrefixListCommand, - ModifyNetworkInterfaceAttributeCommand, - ModifyPrivateDnsNameOptionsCommand, - ModifyReservedInstancesCommand, - ModifySecurityGroupRulesCommand, - ModifySnapshotAttributeCommand, - ModifySnapshotTierCommand, - ModifySpotFleetRequestCommand, - ModifySubnetAttributeCommand, - ModifyTrafficMirrorFilterNetworkServicesCommand, - ModifyTrafficMirrorFilterRuleCommand, - ModifyTrafficMirrorSessionCommand, - ModifyTransitGatewayCommand, - ModifyTransitGatewayPrefixListReferenceCommand, - ModifyTransitGatewayVpcAttachmentCommand, - ModifyVerifiedAccessEndpointCommand, - ModifyVerifiedAccessEndpointPolicyCommand, - ModifyVerifiedAccessGroupCommand, - ModifyVerifiedAccessGroupPolicyCommand, - ModifyVerifiedAccessInstanceCommand, - ModifyVerifiedAccessInstanceLoggingConfigurationCommand, - ModifyVerifiedAccessTrustProviderCommand, - ModifyVolumeCommand, - ModifyVolumeAttributeCommand, - ModifyVpcAttributeCommand, - ModifyVpcEndpointCommand, - ModifyVpcEndpointConnectionNotificationCommand, - ModifyVpcEndpointServiceConfigurationCommand, - ModifyVpcEndpointServicePayerResponsibilityCommand, - ModifyVpcEndpointServicePermissionsCommand, - ModifyVpcPeeringConnectionOptionsCommand, - ModifyVpcTenancyCommand, - ModifyVpnConnectionCommand, - ModifyVpnConnectionOptionsCommand, - ModifyVpnTunnelCertificateCommand, - ModifyVpnTunnelOptionsCommand, - MonitorInstancesCommand, - MoveAddressToVpcCommand, - MoveByoipCidrToIpamCommand, - ProvisionByoipCidrCommand, - ProvisionIpamByoasnCommand, - ProvisionIpamPoolCidrCommand, - ProvisionPublicIpv4PoolCidrCommand, - PurchaseCapacityBlockCommand, - PurchaseHostReservationCommand, - PurchaseReservedInstancesOfferingCommand, - PurchaseScheduledInstancesCommand, - RebootInstancesCommand, - RegisterImageCommand, - RegisterInstanceEventNotificationAttributesCommand, - RegisterTransitGatewayMulticastGroupMembersCommand, - RegisterTransitGatewayMulticastGroupSourcesCommand, - RejectTransitGatewayMulticastDomainAssociationsCommand, - RejectTransitGatewayPeeringAttachmentCommand, - RejectTransitGatewayVpcAttachmentCommand, - RejectVpcEndpointConnectionsCommand, - RejectVpcPeeringConnectionCommand, - ReleaseAddressCommand, - ReleaseHostsCommand, - ReleaseIpamPoolAllocationCommand, - ReplaceIamInstanceProfileAssociationCommand, - ReplaceNetworkAclAssociationCommand, - ReplaceNetworkAclEntryCommand, - ReplaceRouteCommand, - ReplaceRouteTableAssociationCommand, - ReplaceTransitGatewayRouteCommand, - ReplaceVpnTunnelCommand, - ReportInstanceStatusCommand, - RequestSpotFleetCommand, - RequestSpotInstancesCommand, - ResetAddressAttributeCommand, - ResetEbsDefaultKmsKeyIdCommand, - ResetFpgaImageAttributeCommand, - ResetImageAttributeCommand, - ResetInstanceAttributeCommand, - ResetNetworkInterfaceAttributeCommand, - ResetSnapshotAttributeCommand, - RestoreAddressToClassicCommand, - RestoreImageFromRecycleBinCommand, - RestoreManagedPrefixListVersionCommand, - RestoreSnapshotFromRecycleBinCommand, - RestoreSnapshotTierCommand, - RevokeClientVpnIngressCommand, - RevokeSecurityGroupEgressCommand, - RevokeSecurityGroupIngressCommand, - RunInstancesCommand, - RunScheduledInstancesCommand, - SearchLocalGatewayRoutesCommand, - SearchTransitGatewayMulticastGroupsCommand, - SearchTransitGatewayRoutesCommand, - SendDiagnosticInterruptCommand, - StartInstancesCommand, - StartNetworkInsightsAccessScopeAnalysisCommand, - StartNetworkInsightsAnalysisCommand, - StartVpcEndpointServicePrivateDnsVerificationCommand, - StopInstancesCommand, - TerminateClientVpnConnectionsCommand, - TerminateInstancesCommand, - UnassignIpv6AddressesCommand, - UnassignPrivateIpAddressesCommand, - UnassignPrivateNatGatewayAddressCommand, - UnlockSnapshotCommand, - UnmonitorInstancesCommand, - UpdateSecurityGroupRuleDescriptionsEgressCommand, - UpdateSecurityGroupRuleDescriptionsIngressCommand, - WithdrawByoipCidrCommand + AcceptReservedInstancesExchangeQuoteCommand, + AcceptTransitGatewayMulticastDomainAssociationsCommand, + AcceptTransitGatewayPeeringAttachmentCommand, + AcceptTransitGatewayVpcAttachmentCommand, + AcceptVpcEndpointConnectionsCommand, + AcceptVpcPeeringConnectionCommand, + AdvertiseByoipCidrCommand, + AllocateAddressCommand, + AllocateHostsCommand, + AllocateIpamPoolCidrCommand, + ApplySecurityGroupsToClientVpnTargetNetworkCommand, + AssignIpv6AddressesCommand, + AssignPrivateIpAddressesCommand, + AssignPrivateNatGatewayAddressCommand, + AssociateAddressCommand, + AssociateClientVpnTargetNetworkCommand, + AssociateDhcpOptionsCommand, + AssociateEnclaveCertificateIamRoleCommand, + AssociateIamInstanceProfileCommand, + AssociateInstanceEventWindowCommand, + AssociateIpamByoasnCommand, + AssociateIpamResourceDiscoveryCommand, + AssociateNatGatewayAddressCommand, + AssociateRouteTableCommand, + AssociateSubnetCidrBlockCommand, + AssociateTransitGatewayMulticastDomainCommand, + AssociateTransitGatewayPolicyTableCommand, + AssociateTransitGatewayRouteTableCommand, + AssociateTrunkInterfaceCommand, + AssociateVpcCidrBlockCommand, + AttachClassicLinkVpcCommand, + AttachInternetGatewayCommand, + AttachNetworkInterfaceCommand, + AttachVerifiedAccessTrustProviderCommand, + AttachVolumeCommand, + AttachVpnGatewayCommand, + AuthorizeClientVpnIngressCommand, + AuthorizeSecurityGroupEgressCommand, + AuthorizeSecurityGroupIngressCommand, + BundleInstanceCommand, + CancelBundleTaskCommand, + CancelCapacityReservationCommand, + CancelCapacityReservationFleetsCommand, + CancelConversionTaskCommand, + CancelExportTaskCommand, + CancelImageLaunchPermissionCommand, + CancelImportTaskCommand, + CancelReservedInstancesListingCommand, + CancelSpotFleetRequestsCommand, + CancelSpotInstanceRequestsCommand, + ConfirmProductInstanceCommand, + CopyFpgaImageCommand, + CopyImageCommand, + CopySnapshotCommand, + CreateCapacityReservationCommand, + CreateCapacityReservationFleetCommand, + CreateCarrierGatewayCommand, + CreateClientVpnEndpointCommand, + CreateClientVpnRouteCommand, + CreateCoipCidrCommand, + CreateCoipPoolCommand, + CreateCustomerGatewayCommand, + CreateDefaultSubnetCommand, + CreateDefaultVpcCommand, + CreateDhcpOptionsCommand, + CreateEgressOnlyInternetGatewayCommand, + CreateFleetCommand, + CreateFlowLogsCommand, + CreateFpgaImageCommand, + CreateImageCommand, + CreateInstanceConnectEndpointCommand, + CreateInstanceEventWindowCommand, + CreateInstanceExportTaskCommand, + CreateInternetGatewayCommand, + CreateIpamCommand, + CreateIpamPoolCommand, + CreateIpamResourceDiscoveryCommand, + CreateIpamScopeCommand, + CreateKeyPairCommand, + CreateLaunchTemplateCommand, + CreateLaunchTemplateVersionCommand, + CreateLocalGatewayRouteCommand, + CreateLocalGatewayRouteTableCommand, + CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand, + CreateLocalGatewayRouteTableVpcAssociationCommand, + CreateManagedPrefixListCommand, + CreateNatGatewayCommand, + CreateNetworkAclCommand, + CreateNetworkAclEntryCommand, + CreateNetworkInsightsAccessScopeCommand, + CreateNetworkInsightsPathCommand, + CreateNetworkInterfaceCommand, + CreateNetworkInterfacePermissionCommand, + CreatePlacementGroupCommand, + CreatePublicIpv4PoolCommand, + CreateReplaceRootVolumeTaskCommand, + CreateReservedInstancesListingCommand, + CreateRestoreImageTaskCommand, + CreateRouteCommand, + CreateRouteTableCommand, + CreateSecurityGroupCommand, + CreateSnapshotCommand, + CreateSnapshotsCommand, + CreateSpotDatafeedSubscriptionCommand, + CreateStoreImageTaskCommand, + CreateSubnetCommand, + CreateSubnetCidrReservationCommand, + CreateTagsCommand, + CreateTrafficMirrorFilterCommand, + CreateTrafficMirrorFilterRuleCommand, + CreateTrafficMirrorSessionCommand, + CreateTrafficMirrorTargetCommand, + CreateTransitGatewayCommand, + CreateTransitGatewayConnectCommand, + CreateTransitGatewayConnectPeerCommand, + CreateTransitGatewayMulticastDomainCommand, + CreateTransitGatewayPeeringAttachmentCommand, + CreateTransitGatewayPolicyTableCommand, + CreateTransitGatewayPrefixListReferenceCommand, + CreateTransitGatewayRouteCommand, + CreateTransitGatewayRouteTableCommand, + CreateTransitGatewayRouteTableAnnouncementCommand, + CreateTransitGatewayVpcAttachmentCommand, + CreateVerifiedAccessEndpointCommand, + CreateVerifiedAccessGroupCommand, + CreateVerifiedAccessInstanceCommand, + CreateVerifiedAccessTrustProviderCommand, + CreateVolumeCommand, + CreateVpcCommand, + CreateVpcEndpointCommand, + CreateVpcEndpointConnectionNotificationCommand, + CreateVpcEndpointServiceConfigurationCommand, + CreateVpcPeeringConnectionCommand, + CreateVpnConnectionCommand, + CreateVpnConnectionRouteCommand, + CreateVpnGatewayCommand, + DeleteCarrierGatewayCommand, + DeleteClientVpnEndpointCommand, + DeleteClientVpnRouteCommand, + DeleteCoipCidrCommand, + DeleteCoipPoolCommand, + DeleteCustomerGatewayCommand, + DeleteDhcpOptionsCommand, + DeleteEgressOnlyInternetGatewayCommand, + DeleteFleetsCommand, + DeleteFlowLogsCommand, + DeleteFpgaImageCommand, + DeleteInstanceConnectEndpointCommand, + DeleteInstanceEventWindowCommand, + DeleteInternetGatewayCommand, + DeleteIpamCommand, + DeleteIpamPoolCommand, + DeleteIpamResourceDiscoveryCommand, + DeleteIpamScopeCommand, + DeleteKeyPairCommand, + DeleteLaunchTemplateCommand, + DeleteLaunchTemplateVersionsCommand, + DeleteLocalGatewayRouteCommand, + DeleteLocalGatewayRouteTableCommand, + DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand, + DeleteLocalGatewayRouteTableVpcAssociationCommand, + DeleteManagedPrefixListCommand, + DeleteNatGatewayCommand, + DeleteNetworkAclCommand, + DeleteNetworkAclEntryCommand, + DeleteNetworkInsightsAccessScopeCommand, + DeleteNetworkInsightsAccessScopeAnalysisCommand, + DeleteNetworkInsightsAnalysisCommand, + DeleteNetworkInsightsPathCommand, + DeleteNetworkInterfaceCommand, + DeleteNetworkInterfacePermissionCommand, + DeletePlacementGroupCommand, + DeletePublicIpv4PoolCommand, + DeleteQueuedReservedInstancesCommand, + DeleteRouteCommand, + DeleteRouteTableCommand, + DeleteSecurityGroupCommand, + DeleteSnapshotCommand, + DeleteSpotDatafeedSubscriptionCommand, + DeleteSubnetCommand, + DeleteSubnetCidrReservationCommand, + DeleteTagsCommand, + DeleteTrafficMirrorFilterCommand, + DeleteTrafficMirrorFilterRuleCommand, + DeleteTrafficMirrorSessionCommand, + DeleteTrafficMirrorTargetCommand, + DeleteTransitGatewayCommand, + DeleteTransitGatewayConnectCommand, + DeleteTransitGatewayConnectPeerCommand, + DeleteTransitGatewayMulticastDomainCommand, + DeleteTransitGatewayPeeringAttachmentCommand, + DeleteTransitGatewayPolicyTableCommand, + DeleteTransitGatewayPrefixListReferenceCommand, + DeleteTransitGatewayRouteCommand, + DeleteTransitGatewayRouteTableCommand, + DeleteTransitGatewayRouteTableAnnouncementCommand, + DeleteTransitGatewayVpcAttachmentCommand, + DeleteVerifiedAccessEndpointCommand, + DeleteVerifiedAccessGroupCommand, + DeleteVerifiedAccessInstanceCommand, + DeleteVerifiedAccessTrustProviderCommand, + DeleteVolumeCommand, + DeleteVpcCommand, + DeleteVpcEndpointConnectionNotificationsCommand, + DeleteVpcEndpointServiceConfigurationsCommand, + DeleteVpcEndpointsCommand, + DeleteVpcPeeringConnectionCommand, + DeleteVpnConnectionCommand, + DeleteVpnConnectionRouteCommand, + DeleteVpnGatewayCommand, + DeprovisionByoipCidrCommand, + DeprovisionIpamByoasnCommand, + DeprovisionIpamPoolCidrCommand, + DeprovisionPublicIpv4PoolCidrCommand, + DeregisterImageCommand, + DeregisterInstanceEventNotificationAttributesCommand, + DeregisterTransitGatewayMulticastGroupMembersCommand, + DeregisterTransitGatewayMulticastGroupSourcesCommand, + DescribeAccountAttributesCommand, + DescribeAddressTransfersCommand, + DescribeAddressesCommand, + DescribeAddressesAttributeCommand, + DescribeAggregateIdFormatCommand, + DescribeAvailabilityZonesCommand, + DescribeAwsNetworkPerformanceMetricSubscriptionsCommand, + DescribeBundleTasksCommand, + DescribeByoipCidrsCommand, + DescribeCapacityBlockOfferingsCommand, + DescribeCapacityReservationFleetsCommand, + DescribeCapacityReservationsCommand, + DescribeCarrierGatewaysCommand, + DescribeClassicLinkInstancesCommand, + DescribeClientVpnAuthorizationRulesCommand, + DescribeClientVpnConnectionsCommand, + DescribeClientVpnEndpointsCommand, + DescribeClientVpnRoutesCommand, + DescribeClientVpnTargetNetworksCommand, + DescribeCoipPoolsCommand, + DescribeConversionTasksCommand, + DescribeCustomerGatewaysCommand, + DescribeDhcpOptionsCommand, + DescribeEgressOnlyInternetGatewaysCommand, + DescribeElasticGpusCommand, + DescribeExportImageTasksCommand, + DescribeExportTasksCommand, + DescribeFastLaunchImagesCommand, + DescribeFastSnapshotRestoresCommand, + DescribeFleetHistoryCommand, + DescribeFleetInstancesCommand, + DescribeFleetsCommand, + DescribeFlowLogsCommand, + DescribeFpgaImageAttributeCommand, + DescribeFpgaImagesCommand, + DescribeHostReservationOfferingsCommand, + DescribeHostReservationsCommand, + DescribeHostsCommand, + DescribeIamInstanceProfileAssociationsCommand, + DescribeIdFormatCommand, + DescribeIdentityIdFormatCommand, + DescribeImageAttributeCommand, + DescribeImagesCommand, + DescribeImportImageTasksCommand, + DescribeImportSnapshotTasksCommand, + DescribeInstanceAttributeCommand, + DescribeInstanceConnectEndpointsCommand, + DescribeInstanceCreditSpecificationsCommand, + DescribeInstanceEventNotificationAttributesCommand, + DescribeInstanceEventWindowsCommand, + DescribeInstanceStatusCommand, + DescribeInstanceTopologyCommand, + DescribeInstanceTypeOfferingsCommand, + DescribeInstanceTypesCommand, + DescribeInstancesCommand, + DescribeInternetGatewaysCommand, + DescribeIpamByoasnCommand, + DescribeIpamPoolsCommand, + DescribeIpamResourceDiscoveriesCommand, + DescribeIpamResourceDiscoveryAssociationsCommand, + DescribeIpamScopesCommand, + DescribeIpamsCommand, + DescribeIpv6PoolsCommand, + DescribeKeyPairsCommand, + DescribeLaunchTemplateVersionsCommand, + DescribeLaunchTemplatesCommand, + DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand, + DescribeLocalGatewayRouteTableVpcAssociationsCommand, + DescribeLocalGatewayRouteTablesCommand, + DescribeLocalGatewayVirtualInterfaceGroupsCommand, + DescribeLocalGatewayVirtualInterfacesCommand, + DescribeLocalGatewaysCommand, + DescribeLockedSnapshotsCommand, + DescribeMacHostsCommand, + DescribeManagedPrefixListsCommand, + DescribeMovingAddressesCommand, + DescribeNatGatewaysCommand, + DescribeNetworkAclsCommand, + DescribeNetworkInsightsAccessScopeAnalysesCommand, + DescribeNetworkInsightsAccessScopesCommand, + DescribeNetworkInsightsAnalysesCommand, + DescribeNetworkInsightsPathsCommand, + DescribeNetworkInterfaceAttributeCommand, + DescribeNetworkInterfacePermissionsCommand, + DescribeNetworkInterfacesCommand, + DescribePlacementGroupsCommand, + DescribePrefixListsCommand, + DescribePrincipalIdFormatCommand, + DescribePublicIpv4PoolsCommand, + DescribeRegionsCommand, + DescribeReplaceRootVolumeTasksCommand, + DescribeReservedInstancesCommand, + DescribeReservedInstancesListingsCommand, + DescribeReservedInstancesModificationsCommand, + DescribeReservedInstancesOfferingsCommand, + DescribeRouteTablesCommand, + DescribeScheduledInstanceAvailabilityCommand, + DescribeScheduledInstancesCommand, + DescribeSecurityGroupReferencesCommand, + DescribeSecurityGroupRulesCommand, + DescribeSecurityGroupsCommand, + DescribeSnapshotAttributeCommand, + DescribeSnapshotTierStatusCommand, + DescribeSnapshotsCommand, + DescribeSpotDatafeedSubscriptionCommand, + DescribeSpotFleetInstancesCommand, + DescribeSpotFleetRequestHistoryCommand, + DescribeSpotFleetRequestsCommand, + DescribeSpotInstanceRequestsCommand, + DescribeSpotPriceHistoryCommand, + DescribeStaleSecurityGroupsCommand, + DescribeStoreImageTasksCommand, + DescribeSubnetsCommand, + DescribeTagsCommand, + DescribeTrafficMirrorFiltersCommand, + DescribeTrafficMirrorSessionsCommand, + DescribeTrafficMirrorTargetsCommand, + DescribeTransitGatewayAttachmentsCommand, + DescribeTransitGatewayConnectPeersCommand, + DescribeTransitGatewayConnectsCommand, + DescribeTransitGatewayMulticastDomainsCommand, + DescribeTransitGatewayPeeringAttachmentsCommand, + DescribeTransitGatewayPolicyTablesCommand, + DescribeTransitGatewayRouteTableAnnouncementsCommand, + DescribeTransitGatewayRouteTablesCommand, + DescribeTransitGatewayVpcAttachmentsCommand, + DescribeTransitGatewaysCommand, + DescribeTrunkInterfaceAssociationsCommand, + DescribeVerifiedAccessEndpointsCommand, + DescribeVerifiedAccessGroupsCommand, + DescribeVerifiedAccessInstanceLoggingConfigurationsCommand, + DescribeVerifiedAccessInstancesCommand, + DescribeVerifiedAccessTrustProvidersCommand, + DescribeVolumeAttributeCommand, + DescribeVolumeStatusCommand, + DescribeVolumesCommand, + DescribeVolumesModificationsCommand, + DescribeVpcAttributeCommand, + DescribeVpcClassicLinkCommand, + DescribeVpcClassicLinkDnsSupportCommand, + DescribeVpcEndpointConnectionNotificationsCommand, + DescribeVpcEndpointConnectionsCommand, + DescribeVpcEndpointServiceConfigurationsCommand, + DescribeVpcEndpointServicePermissionsCommand, + DescribeVpcEndpointServicesCommand, + DescribeVpcEndpointsCommand, + DescribeVpcPeeringConnectionsCommand, + DescribeVpcsCommand, + DescribeVpnConnectionsCommand, + DescribeVpnGatewaysCommand, + DetachClassicLinkVpcCommand, + DetachInternetGatewayCommand, + DetachNetworkInterfaceCommand, + DetachVerifiedAccessTrustProviderCommand, + DetachVolumeCommand, + DetachVpnGatewayCommand, + DisableAddressTransferCommand, + DisableAwsNetworkPerformanceMetricSubscriptionCommand, + DisableEbsEncryptionByDefaultCommand, + DisableFastLaunchCommand, + DisableFastSnapshotRestoresCommand, + DisableImageCommand, + DisableImageBlockPublicAccessCommand, + DisableImageDeprecationCommand, + DisableIpamOrganizationAdminAccountCommand, + DisableSerialConsoleAccessCommand, + DisableSnapshotBlockPublicAccessCommand, + DisableTransitGatewayRouteTablePropagationCommand, + DisableVgwRoutePropagationCommand, + DisableVpcClassicLinkCommand, + DisableVpcClassicLinkDnsSupportCommand, + DisassociateAddressCommand, + DisassociateClientVpnTargetNetworkCommand, + DisassociateEnclaveCertificateIamRoleCommand, + DisassociateIamInstanceProfileCommand, + DisassociateInstanceEventWindowCommand, + DisassociateIpamByoasnCommand, + DisassociateIpamResourceDiscoveryCommand, + DisassociateNatGatewayAddressCommand, + DisassociateRouteTableCommand, + DisassociateSubnetCidrBlockCommand, + DisassociateTransitGatewayMulticastDomainCommand, + DisassociateTransitGatewayPolicyTableCommand, + DisassociateTransitGatewayRouteTableCommand, + DisassociateTrunkInterfaceCommand, + DisassociateVpcCidrBlockCommand, + EnableAddressTransferCommand, + EnableAwsNetworkPerformanceMetricSubscriptionCommand, + EnableEbsEncryptionByDefaultCommand, + EnableFastLaunchCommand, + EnableFastSnapshotRestoresCommand, + EnableImageCommand, + EnableImageBlockPublicAccessCommand, + EnableImageDeprecationCommand, + EnableIpamOrganizationAdminAccountCommand, + EnableReachabilityAnalyzerOrganizationSharingCommand, + EnableSerialConsoleAccessCommand, + EnableSnapshotBlockPublicAccessCommand, + EnableTransitGatewayRouteTablePropagationCommand, + EnableVgwRoutePropagationCommand, + EnableVolumeIOCommand, + EnableVpcClassicLinkCommand, + EnableVpcClassicLinkDnsSupportCommand, + ExportClientVpnClientCertificateRevocationListCommand, + ExportClientVpnClientConfigurationCommand, + ExportImageCommand, + ExportTransitGatewayRoutesCommand, + GetAssociatedEnclaveCertificateIamRolesCommand, + GetAssociatedIpv6PoolCidrsCommand, + GetAwsNetworkPerformanceDataCommand, + GetCapacityReservationUsageCommand, + GetCoipPoolUsageCommand, + GetConsoleOutputCommand, + GetConsoleScreenshotCommand, + GetDefaultCreditSpecificationCommand, + GetEbsDefaultKmsKeyIdCommand, + GetEbsEncryptionByDefaultCommand, + GetFlowLogsIntegrationTemplateCommand, + GetGroupsForCapacityReservationCommand, + GetHostReservationPurchasePreviewCommand, + GetImageBlockPublicAccessStateCommand, + GetInstanceMetadataDefaultsCommand, + GetInstanceTypesFromInstanceRequirementsCommand, + GetInstanceUefiDataCommand, + GetIpamAddressHistoryCommand, + GetIpamDiscoveredAccountsCommand, + GetIpamDiscoveredPublicAddressesCommand, + GetIpamDiscoveredResourceCidrsCommand, + GetIpamPoolAllocationsCommand, + GetIpamPoolCidrsCommand, + GetIpamResourceCidrsCommand, + GetLaunchTemplateDataCommand, + GetManagedPrefixListAssociationsCommand, + GetManagedPrefixListEntriesCommand, + GetNetworkInsightsAccessScopeAnalysisFindingsCommand, + GetNetworkInsightsAccessScopeContentCommand, + GetPasswordDataCommand, + GetReservedInstancesExchangeQuoteCommand, + GetSecurityGroupsForVpcCommand, + GetSerialConsoleAccessStatusCommand, + GetSnapshotBlockPublicAccessStateCommand, + GetSpotPlacementScoresCommand, + GetSubnetCidrReservationsCommand, + GetTransitGatewayAttachmentPropagationsCommand, + GetTransitGatewayMulticastDomainAssociationsCommand, + GetTransitGatewayPolicyTableAssociationsCommand, + GetTransitGatewayPolicyTableEntriesCommand, + GetTransitGatewayPrefixListReferencesCommand, + GetTransitGatewayRouteTableAssociationsCommand, + GetTransitGatewayRouteTablePropagationsCommand, + GetVerifiedAccessEndpointPolicyCommand, + GetVerifiedAccessGroupPolicyCommand, + GetVpnConnectionDeviceSampleConfigurationCommand, + GetVpnConnectionDeviceTypesCommand, + GetVpnTunnelReplacementStatusCommand, + ImportClientVpnClientCertificateRevocationListCommand, + ImportImageCommand, + ImportInstanceCommand, + ImportKeyPairCommand, + ImportSnapshotCommand, + ImportVolumeCommand, + ListImagesInRecycleBinCommand, + ListSnapshotsInRecycleBinCommand, + LockSnapshotCommand, + ModifyAddressAttributeCommand, + ModifyAvailabilityZoneGroupCommand, + ModifyCapacityReservationCommand, + ModifyCapacityReservationFleetCommand, + ModifyClientVpnEndpointCommand, + ModifyDefaultCreditSpecificationCommand, + ModifyEbsDefaultKmsKeyIdCommand, + ModifyFleetCommand, + ModifyFpgaImageAttributeCommand, + ModifyHostsCommand, + ModifyIdFormatCommand, + ModifyIdentityIdFormatCommand, + ModifyImageAttributeCommand, + ModifyInstanceAttributeCommand, + ModifyInstanceCapacityReservationAttributesCommand, + ModifyInstanceCreditSpecificationCommand, + ModifyInstanceEventStartTimeCommand, + ModifyInstanceEventWindowCommand, + ModifyInstanceMaintenanceOptionsCommand, + ModifyInstanceMetadataDefaultsCommand, + ModifyInstanceMetadataOptionsCommand, + ModifyInstancePlacementCommand, + ModifyIpamCommand, + ModifyIpamPoolCommand, + ModifyIpamResourceCidrCommand, + ModifyIpamResourceDiscoveryCommand, + ModifyIpamScopeCommand, + ModifyLaunchTemplateCommand, + ModifyLocalGatewayRouteCommand, + ModifyManagedPrefixListCommand, + ModifyNetworkInterfaceAttributeCommand, + ModifyPrivateDnsNameOptionsCommand, + ModifyReservedInstancesCommand, + ModifySecurityGroupRulesCommand, + ModifySnapshotAttributeCommand, + ModifySnapshotTierCommand, + ModifySpotFleetRequestCommand, + ModifySubnetAttributeCommand, + ModifyTrafficMirrorFilterNetworkServicesCommand, + ModifyTrafficMirrorFilterRuleCommand, + ModifyTrafficMirrorSessionCommand, + ModifyTransitGatewayCommand, + ModifyTransitGatewayPrefixListReferenceCommand, + ModifyTransitGatewayVpcAttachmentCommand, + ModifyVerifiedAccessEndpointCommand, + ModifyVerifiedAccessEndpointPolicyCommand, + ModifyVerifiedAccessGroupCommand, + ModifyVerifiedAccessGroupPolicyCommand, + ModifyVerifiedAccessInstanceCommand, + ModifyVerifiedAccessInstanceLoggingConfigurationCommand, + ModifyVerifiedAccessTrustProviderCommand, + ModifyVolumeCommand, + ModifyVolumeAttributeCommand, + ModifyVpcAttributeCommand, + ModifyVpcEndpointCommand, + ModifyVpcEndpointConnectionNotificationCommand, + ModifyVpcEndpointServiceConfigurationCommand, + ModifyVpcEndpointServicePayerResponsibilityCommand, + ModifyVpcEndpointServicePermissionsCommand, + ModifyVpcPeeringConnectionOptionsCommand, + ModifyVpcTenancyCommand, + ModifyVpnConnectionCommand, + ModifyVpnConnectionOptionsCommand, + ModifyVpnTunnelCertificateCommand, + ModifyVpnTunnelOptionsCommand, + MonitorInstancesCommand, + MoveAddressToVpcCommand, + MoveByoipCidrToIpamCommand, + ProvisionByoipCidrCommand, + ProvisionIpamByoasnCommand, + ProvisionIpamPoolCidrCommand, + ProvisionPublicIpv4PoolCidrCommand, + PurchaseCapacityBlockCommand, + PurchaseHostReservationCommand, + PurchaseReservedInstancesOfferingCommand, + PurchaseScheduledInstancesCommand, + RebootInstancesCommand, + RegisterImageCommand, + RegisterInstanceEventNotificationAttributesCommand, + RegisterTransitGatewayMulticastGroupMembersCommand, + RegisterTransitGatewayMulticastGroupSourcesCommand, + RejectTransitGatewayMulticastDomainAssociationsCommand, + RejectTransitGatewayPeeringAttachmentCommand, + RejectTransitGatewayVpcAttachmentCommand, + RejectVpcEndpointConnectionsCommand, + RejectVpcPeeringConnectionCommand, + ReleaseAddressCommand, + ReleaseHostsCommand, + ReleaseIpamPoolAllocationCommand, + ReplaceIamInstanceProfileAssociationCommand, + ReplaceNetworkAclAssociationCommand, + ReplaceNetworkAclEntryCommand, + ReplaceRouteCommand, + ReplaceRouteTableAssociationCommand, + ReplaceTransitGatewayRouteCommand, + ReplaceVpnTunnelCommand, + ReportInstanceStatusCommand, + RequestSpotFleetCommand, + RequestSpotInstancesCommand, + ResetAddressAttributeCommand, + ResetEbsDefaultKmsKeyIdCommand, + ResetFpgaImageAttributeCommand, + ResetImageAttributeCommand, + ResetInstanceAttributeCommand, + ResetNetworkInterfaceAttributeCommand, + ResetSnapshotAttributeCommand, + RestoreAddressToClassicCommand, + RestoreImageFromRecycleBinCommand, + RestoreManagedPrefixListVersionCommand, + RestoreSnapshotFromRecycleBinCommand, + RestoreSnapshotTierCommand, + RevokeClientVpnIngressCommand, + RevokeSecurityGroupEgressCommand, + RevokeSecurityGroupIngressCommand, + RunInstancesCommand, + RunScheduledInstancesCommand, + SearchLocalGatewayRoutesCommand, + SearchTransitGatewayMulticastGroupsCommand, + SearchTransitGatewayRoutesCommand, + SendDiagnosticInterruptCommand, + StartInstancesCommand, + StartNetworkInsightsAccessScopeAnalysisCommand, + StartNetworkInsightsAnalysisCommand, + StartVpcEndpointServicePrivateDnsVerificationCommand, + StopInstancesCommand, + TerminateClientVpnConnectionsCommand, + TerminateInstancesCommand, + UnassignIpv6AddressesCommand, + UnassignPrivateIpAddressesCommand, + UnassignPrivateNatGatewayAddressCommand, + UnlockSnapshotCommand, + UnmonitorInstancesCommand, + UpdateSecurityGroupRuleDescriptionsEgressCommand, + UpdateSecurityGroupRuleDescriptionsIngressCommand, + WithdrawByoipCidrCommand, }; /** @@ -2448,10 +2442,7 @@ export interface EC2Service { acceptAddressTransfer( args: AcceptAddressTransferRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AcceptAddressTransferResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AcceptReservedInstancesExchangeQuoteCommand} @@ -2459,10 +2450,7 @@ export interface EC2Service { acceptReservedInstancesExchangeQuote( args: AcceptReservedInstancesExchangeQuoteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AcceptReservedInstancesExchangeQuoteResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AcceptTransitGatewayMulticastDomainAssociationsCommand} @@ -2471,9 +2459,9 @@ export interface EC2Service { args: AcceptTransitGatewayMulticastDomainAssociationsRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - AcceptTransitGatewayMulticastDomainAssociationsResult, - | SdkError - > + AcceptTransitGatewayMulticastDomainAssociationsResult, + SdkError + >; /** * @see {@link AcceptTransitGatewayPeeringAttachmentCommand} @@ -2481,10 +2469,7 @@ export interface EC2Service { acceptTransitGatewayPeeringAttachment( args: AcceptTransitGatewayPeeringAttachmentRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AcceptTransitGatewayPeeringAttachmentResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AcceptTransitGatewayVpcAttachmentCommand} @@ -2492,10 +2477,7 @@ export interface EC2Service { acceptTransitGatewayVpcAttachment( args: AcceptTransitGatewayVpcAttachmentRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AcceptTransitGatewayVpcAttachmentResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AcceptVpcEndpointConnectionsCommand} @@ -2503,10 +2485,7 @@ export interface EC2Service { acceptVpcEndpointConnections( args: AcceptVpcEndpointConnectionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AcceptVpcEndpointConnectionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AcceptVpcPeeringConnectionCommand} @@ -2514,10 +2493,7 @@ export interface EC2Service { acceptVpcPeeringConnection( args: AcceptVpcPeeringConnectionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AcceptVpcPeeringConnectionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AdvertiseByoipCidrCommand} @@ -2525,10 +2501,7 @@ export interface EC2Service { advertiseByoipCidr( args: AdvertiseByoipCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AdvertiseByoipCidrResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AllocateAddressCommand} @@ -2536,10 +2509,7 @@ export interface EC2Service { allocateAddress( args: AllocateAddressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AllocateAddressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AllocateHostsCommand} @@ -2547,10 +2517,7 @@ export interface EC2Service { allocateHosts( args: AllocateHostsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AllocateHostsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AllocateIpamPoolCidrCommand} @@ -2558,10 +2525,7 @@ export interface EC2Service { allocateIpamPoolCidr( args: AllocateIpamPoolCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AllocateIpamPoolCidrResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ApplySecurityGroupsToClientVpnTargetNetworkCommand} @@ -2569,10 +2533,7 @@ export interface EC2Service { applySecurityGroupsToClientVpnTargetNetwork( args: ApplySecurityGroupsToClientVpnTargetNetworkRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ApplySecurityGroupsToClientVpnTargetNetworkResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssignIpv6AddressesCommand} @@ -2580,10 +2541,7 @@ export interface EC2Service { assignIpv6Addresses( args: AssignIpv6AddressesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssignIpv6AddressesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssignPrivateIpAddressesCommand} @@ -2591,10 +2549,7 @@ export interface EC2Service { assignPrivateIpAddresses( args: AssignPrivateIpAddressesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssignPrivateIpAddressesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssignPrivateNatGatewayAddressCommand} @@ -2602,10 +2557,7 @@ export interface EC2Service { assignPrivateNatGatewayAddress( args: AssignPrivateNatGatewayAddressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssignPrivateNatGatewayAddressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateAddressCommand} @@ -2613,10 +2565,7 @@ export interface EC2Service { associateAddress( args: AssociateAddressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateAddressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateClientVpnTargetNetworkCommand} @@ -2624,10 +2573,7 @@ export interface EC2Service { associateClientVpnTargetNetwork( args: AssociateClientVpnTargetNetworkRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateClientVpnTargetNetworkResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateDhcpOptionsCommand} @@ -2635,10 +2581,7 @@ export interface EC2Service { associateDhcpOptions( args: AssociateDhcpOptionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateEnclaveCertificateIamRoleCommand} @@ -2646,10 +2589,7 @@ export interface EC2Service { associateEnclaveCertificateIamRole( args: AssociateEnclaveCertificateIamRoleRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateEnclaveCertificateIamRoleResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateIamInstanceProfileCommand} @@ -2657,10 +2597,7 @@ export interface EC2Service { associateIamInstanceProfile( args: AssociateIamInstanceProfileRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateIamInstanceProfileResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateInstanceEventWindowCommand} @@ -2668,10 +2605,7 @@ export interface EC2Service { associateInstanceEventWindow( args: AssociateInstanceEventWindowRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateInstanceEventWindowResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateIpamByoasnCommand} @@ -2679,10 +2613,7 @@ export interface EC2Service { associateIpamByoasn( args: AssociateIpamByoasnRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateIpamByoasnResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateIpamResourceDiscoveryCommand} @@ -2690,10 +2621,7 @@ export interface EC2Service { associateIpamResourceDiscovery( args: AssociateIpamResourceDiscoveryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateIpamResourceDiscoveryResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateNatGatewayAddressCommand} @@ -2701,10 +2629,7 @@ export interface EC2Service { associateNatGatewayAddress( args: AssociateNatGatewayAddressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateNatGatewayAddressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateRouteTableCommand} @@ -2712,10 +2637,7 @@ export interface EC2Service { associateRouteTable( args: AssociateRouteTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateRouteTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateSubnetCidrBlockCommand} @@ -2723,10 +2645,7 @@ export interface EC2Service { associateSubnetCidrBlock( args: AssociateSubnetCidrBlockRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateSubnetCidrBlockResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateTransitGatewayMulticastDomainCommand} @@ -2734,10 +2653,7 @@ export interface EC2Service { associateTransitGatewayMulticastDomain( args: AssociateTransitGatewayMulticastDomainRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateTransitGatewayMulticastDomainResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateTransitGatewayPolicyTableCommand} @@ -2745,10 +2661,7 @@ export interface EC2Service { associateTransitGatewayPolicyTable( args: AssociateTransitGatewayPolicyTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateTransitGatewayPolicyTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateTransitGatewayRouteTableCommand} @@ -2756,10 +2669,7 @@ export interface EC2Service { associateTransitGatewayRouteTable( args: AssociateTransitGatewayRouteTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateTransitGatewayRouteTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateTrunkInterfaceCommand} @@ -2767,10 +2677,7 @@ export interface EC2Service { associateTrunkInterface( args: AssociateTrunkInterfaceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateTrunkInterfaceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AssociateVpcCidrBlockCommand} @@ -2778,10 +2685,7 @@ export interface EC2Service { associateVpcCidrBlock( args: AssociateVpcCidrBlockRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AssociateVpcCidrBlockResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AttachClassicLinkVpcCommand} @@ -2789,10 +2693,7 @@ export interface EC2Service { attachClassicLinkVpc( args: AttachClassicLinkVpcRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AttachClassicLinkVpcResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AttachInternetGatewayCommand} @@ -2800,10 +2701,7 @@ export interface EC2Service { attachInternetGateway( args: AttachInternetGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link AttachNetworkInterfaceCommand} @@ -2811,10 +2709,7 @@ export interface EC2Service { attachNetworkInterface( args: AttachNetworkInterfaceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AttachNetworkInterfaceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AttachVerifiedAccessTrustProviderCommand} @@ -2822,10 +2717,7 @@ export interface EC2Service { attachVerifiedAccessTrustProvider( args: AttachVerifiedAccessTrustProviderRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AttachVerifiedAccessTrustProviderResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AttachVolumeCommand} @@ -2833,10 +2725,7 @@ export interface EC2Service { attachVolume( args: AttachVolumeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - VolumeAttachment, - | SdkError - > + ): Effect.Effect; /** * @see {@link AttachVpnGatewayCommand} @@ -2844,10 +2733,7 @@ export interface EC2Service { attachVpnGateway( args: AttachVpnGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AttachVpnGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AuthorizeClientVpnIngressCommand} @@ -2855,10 +2741,7 @@ export interface EC2Service { authorizeClientVpnIngress( args: AuthorizeClientVpnIngressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AuthorizeClientVpnIngressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AuthorizeSecurityGroupEgressCommand} @@ -2866,10 +2749,7 @@ export interface EC2Service { authorizeSecurityGroupEgress( args: AuthorizeSecurityGroupEgressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AuthorizeSecurityGroupEgressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link AuthorizeSecurityGroupIngressCommand} @@ -2877,10 +2757,7 @@ export interface EC2Service { authorizeSecurityGroupIngress( args: AuthorizeSecurityGroupIngressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - AuthorizeSecurityGroupIngressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link BundleInstanceCommand} @@ -2888,10 +2765,7 @@ export interface EC2Service { bundleInstance( args: BundleInstanceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - BundleInstanceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CancelBundleTaskCommand} @@ -2899,10 +2773,7 @@ export interface EC2Service { cancelBundleTask( args: CancelBundleTaskRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CancelBundleTaskResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CancelCapacityReservationCommand} @@ -2910,10 +2781,7 @@ export interface EC2Service { cancelCapacityReservation( args: CancelCapacityReservationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CancelCapacityReservationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CancelCapacityReservationFleetsCommand} @@ -2921,10 +2789,7 @@ export interface EC2Service { cancelCapacityReservationFleets( args: CancelCapacityReservationFleetsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CancelCapacityReservationFleetsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CancelConversionTaskCommand} @@ -2932,10 +2797,7 @@ export interface EC2Service { cancelConversionTask( args: CancelConversionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link CancelExportTaskCommand} @@ -2943,10 +2805,7 @@ export interface EC2Service { cancelExportTask( args: CancelExportTaskRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link CancelImageLaunchPermissionCommand} @@ -2954,10 +2813,7 @@ export interface EC2Service { cancelImageLaunchPermission( args: CancelImageLaunchPermissionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CancelImageLaunchPermissionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CancelImportTaskCommand} @@ -2965,10 +2821,7 @@ export interface EC2Service { cancelImportTask( args: CancelImportTaskRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CancelImportTaskResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CancelReservedInstancesListingCommand} @@ -2976,10 +2829,7 @@ export interface EC2Service { cancelReservedInstancesListing( args: CancelReservedInstancesListingRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CancelReservedInstancesListingResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CancelSpotFleetRequestsCommand} @@ -2987,10 +2837,7 @@ export interface EC2Service { cancelSpotFleetRequests( args: CancelSpotFleetRequestsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CancelSpotFleetRequestsResponse, - | SdkError - > + ): Effect.Effect; /** * @see {@link CancelSpotInstanceRequestsCommand} @@ -2998,10 +2845,7 @@ export interface EC2Service { cancelSpotInstanceRequests( args: CancelSpotInstanceRequestsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CancelSpotInstanceRequestsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ConfirmProductInstanceCommand} @@ -3009,10 +2853,7 @@ export interface EC2Service { confirmProductInstance( args: ConfirmProductInstanceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ConfirmProductInstanceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CopyFpgaImageCommand} @@ -3020,10 +2861,7 @@ export interface EC2Service { copyFpgaImage( args: CopyFpgaImageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CopyFpgaImageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CopyImageCommand} @@ -3031,10 +2869,7 @@ export interface EC2Service { copyImage( args: CopyImageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CopyImageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CopySnapshotCommand} @@ -3042,10 +2877,7 @@ export interface EC2Service { copySnapshot( args: CopySnapshotRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CopySnapshotResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateCapacityReservationCommand} @@ -3053,10 +2885,7 @@ export interface EC2Service { createCapacityReservation( args: CreateCapacityReservationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateCapacityReservationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateCapacityReservationFleetCommand} @@ -3064,10 +2893,7 @@ export interface EC2Service { createCapacityReservationFleet( args: CreateCapacityReservationFleetRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateCapacityReservationFleetResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateCarrierGatewayCommand} @@ -3075,10 +2901,7 @@ export interface EC2Service { createCarrierGateway( args: CreateCarrierGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateCarrierGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateClientVpnEndpointCommand} @@ -3086,10 +2909,7 @@ export interface EC2Service { createClientVpnEndpoint( args: CreateClientVpnEndpointRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateClientVpnEndpointResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateClientVpnRouteCommand} @@ -3097,10 +2917,7 @@ export interface EC2Service { createClientVpnRoute( args: CreateClientVpnRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateClientVpnRouteResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateCoipCidrCommand} @@ -3108,10 +2925,7 @@ export interface EC2Service { createCoipCidr( args: CreateCoipCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateCoipCidrResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateCoipPoolCommand} @@ -3119,10 +2933,7 @@ export interface EC2Service { createCoipPool( args: CreateCoipPoolRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateCoipPoolResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateCustomerGatewayCommand} @@ -3130,10 +2941,7 @@ export interface EC2Service { createCustomerGateway( args: CreateCustomerGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateCustomerGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateDefaultSubnetCommand} @@ -3141,10 +2949,7 @@ export interface EC2Service { createDefaultSubnet( args: CreateDefaultSubnetRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateDefaultSubnetResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateDefaultVpcCommand} @@ -3152,10 +2957,7 @@ export interface EC2Service { createDefaultVpc( args: CreateDefaultVpcRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateDefaultVpcResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateDhcpOptionsCommand} @@ -3163,10 +2965,7 @@ export interface EC2Service { createDhcpOptions( args: CreateDhcpOptionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateDhcpOptionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateEgressOnlyInternetGatewayCommand} @@ -3174,10 +2973,7 @@ export interface EC2Service { createEgressOnlyInternetGateway( args: CreateEgressOnlyInternetGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateEgressOnlyInternetGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateFleetCommand} @@ -3185,10 +2981,7 @@ export interface EC2Service { createFleet( args: CreateFleetRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateFleetResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateFlowLogsCommand} @@ -3196,10 +2989,7 @@ export interface EC2Service { createFlowLogs( args: CreateFlowLogsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateFlowLogsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateFpgaImageCommand} @@ -3207,10 +2997,7 @@ export interface EC2Service { createFpgaImage( args: CreateFpgaImageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateFpgaImageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateImageCommand} @@ -3218,10 +3005,7 @@ export interface EC2Service { createImage( args: CreateImageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateImageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateInstanceConnectEndpointCommand} @@ -3229,10 +3013,7 @@ export interface EC2Service { createInstanceConnectEndpoint( args: CreateInstanceConnectEndpointRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateInstanceConnectEndpointResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateInstanceEventWindowCommand} @@ -3240,10 +3021,7 @@ export interface EC2Service { createInstanceEventWindow( args: CreateInstanceEventWindowRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateInstanceEventWindowResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateInstanceExportTaskCommand} @@ -3251,10 +3029,7 @@ export interface EC2Service { createInstanceExportTask( args: CreateInstanceExportTaskRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateInstanceExportTaskResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateInternetGatewayCommand} @@ -3262,10 +3037,7 @@ export interface EC2Service { createInternetGateway( args: CreateInternetGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateInternetGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateIpamCommand} @@ -3273,10 +3045,7 @@ export interface EC2Service { createIpam( args: CreateIpamRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateIpamResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateIpamPoolCommand} @@ -3284,10 +3053,7 @@ export interface EC2Service { createIpamPool( args: CreateIpamPoolRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateIpamPoolResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateIpamResourceDiscoveryCommand} @@ -3295,10 +3061,7 @@ export interface EC2Service { createIpamResourceDiscovery( args: CreateIpamResourceDiscoveryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateIpamResourceDiscoveryResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateIpamScopeCommand} @@ -3306,10 +3069,7 @@ export interface EC2Service { createIpamScope( args: CreateIpamScopeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateIpamScopeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateKeyPairCommand} @@ -3317,10 +3077,7 @@ export interface EC2Service { createKeyPair( args: CreateKeyPairRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - KeyPair, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateLaunchTemplateCommand} @@ -3328,10 +3085,7 @@ export interface EC2Service { createLaunchTemplate( args: CreateLaunchTemplateRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateLaunchTemplateResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateLaunchTemplateVersionCommand} @@ -3339,10 +3093,7 @@ export interface EC2Service { createLaunchTemplateVersion( args: CreateLaunchTemplateVersionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateLaunchTemplateVersionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateLocalGatewayRouteCommand} @@ -3350,10 +3101,7 @@ export interface EC2Service { createLocalGatewayRoute( args: CreateLocalGatewayRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateLocalGatewayRouteResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateLocalGatewayRouteTableCommand} @@ -3361,10 +3109,7 @@ export interface EC2Service { createLocalGatewayRouteTable( args: CreateLocalGatewayRouteTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateLocalGatewayRouteTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand} @@ -3373,9 +3118,9 @@ export interface EC2Service { args: CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, - | SdkError - > + CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, + SdkError + >; /** * @see {@link CreateLocalGatewayRouteTableVpcAssociationCommand} @@ -3383,10 +3128,7 @@ export interface EC2Service { createLocalGatewayRouteTableVpcAssociation( args: CreateLocalGatewayRouteTableVpcAssociationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateLocalGatewayRouteTableVpcAssociationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateManagedPrefixListCommand} @@ -3394,10 +3136,7 @@ export interface EC2Service { createManagedPrefixList( args: CreateManagedPrefixListRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateManagedPrefixListResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateNatGatewayCommand} @@ -3405,10 +3144,7 @@ export interface EC2Service { createNatGateway( args: CreateNatGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateNatGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateNetworkAclCommand} @@ -3416,10 +3152,7 @@ export interface EC2Service { createNetworkAcl( args: CreateNetworkAclRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateNetworkAclResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateNetworkAclEntryCommand} @@ -3427,10 +3160,7 @@ export interface EC2Service { createNetworkAclEntry( args: CreateNetworkAclEntryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateNetworkInsightsAccessScopeCommand} @@ -3438,10 +3168,7 @@ export interface EC2Service { createNetworkInsightsAccessScope( args: CreateNetworkInsightsAccessScopeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateNetworkInsightsAccessScopeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateNetworkInsightsPathCommand} @@ -3449,10 +3176,7 @@ export interface EC2Service { createNetworkInsightsPath( args: CreateNetworkInsightsPathRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateNetworkInsightsPathResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateNetworkInterfaceCommand} @@ -3460,10 +3184,7 @@ export interface EC2Service { createNetworkInterface( args: CreateNetworkInterfaceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateNetworkInterfaceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateNetworkInterfacePermissionCommand} @@ -3471,10 +3192,7 @@ export interface EC2Service { createNetworkInterfacePermission( args: CreateNetworkInterfacePermissionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateNetworkInterfacePermissionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreatePlacementGroupCommand} @@ -3482,10 +3200,7 @@ export interface EC2Service { createPlacementGroup( args: CreatePlacementGroupRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreatePlacementGroupResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreatePublicIpv4PoolCommand} @@ -3493,10 +3208,7 @@ export interface EC2Service { createPublicIpv4Pool( args: CreatePublicIpv4PoolRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreatePublicIpv4PoolResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateReplaceRootVolumeTaskCommand} @@ -3504,10 +3216,7 @@ export interface EC2Service { createReplaceRootVolumeTask( args: CreateReplaceRootVolumeTaskRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateReplaceRootVolumeTaskResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateReservedInstancesListingCommand} @@ -3515,10 +3224,7 @@ export interface EC2Service { createReservedInstancesListing( args: CreateReservedInstancesListingRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateReservedInstancesListingResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateRestoreImageTaskCommand} @@ -3526,10 +3232,7 @@ export interface EC2Service { createRestoreImageTask( args: CreateRestoreImageTaskRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateRestoreImageTaskResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateRouteCommand} @@ -3537,10 +3240,7 @@ export interface EC2Service { createRoute( args: CreateRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateRouteResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateRouteTableCommand} @@ -3548,10 +3248,7 @@ export interface EC2Service { createRouteTable( args: CreateRouteTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateRouteTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateSecurityGroupCommand} @@ -3559,10 +3256,7 @@ export interface EC2Service { createSecurityGroup( args: CreateSecurityGroupRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateSecurityGroupResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateSnapshotCommand} @@ -3570,10 +3264,7 @@ export interface EC2Service { createSnapshot( args: CreateSnapshotRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - Snapshot, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateSnapshotsCommand} @@ -3581,10 +3272,7 @@ export interface EC2Service { createSnapshots( args: CreateSnapshotsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateSnapshotsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateSpotDatafeedSubscriptionCommand} @@ -3592,10 +3280,7 @@ export interface EC2Service { createSpotDatafeedSubscription( args: CreateSpotDatafeedSubscriptionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateSpotDatafeedSubscriptionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateStoreImageTaskCommand} @@ -3603,10 +3288,7 @@ export interface EC2Service { createStoreImageTask( args: CreateStoreImageTaskRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateStoreImageTaskResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateSubnetCommand} @@ -3614,10 +3296,7 @@ export interface EC2Service { createSubnet( args: CreateSubnetRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateSubnetResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateSubnetCidrReservationCommand} @@ -3625,10 +3304,7 @@ export interface EC2Service { createSubnetCidrReservation( args: CreateSubnetCidrReservationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateSubnetCidrReservationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTagsCommand} @@ -3636,10 +3312,7 @@ export interface EC2Service { createTags( args: CreateTagsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTrafficMirrorFilterCommand} @@ -3647,10 +3320,7 @@ export interface EC2Service { createTrafficMirrorFilter( args: CreateTrafficMirrorFilterRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTrafficMirrorFilterResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTrafficMirrorFilterRuleCommand} @@ -3658,10 +3328,7 @@ export interface EC2Service { createTrafficMirrorFilterRule( args: CreateTrafficMirrorFilterRuleRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTrafficMirrorFilterRuleResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTrafficMirrorSessionCommand} @@ -3669,10 +3336,7 @@ export interface EC2Service { createTrafficMirrorSession( args: CreateTrafficMirrorSessionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTrafficMirrorSessionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTrafficMirrorTargetCommand} @@ -3680,10 +3344,7 @@ export interface EC2Service { createTrafficMirrorTarget( args: CreateTrafficMirrorTargetRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTrafficMirrorTargetResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTransitGatewayCommand} @@ -3691,10 +3352,7 @@ export interface EC2Service { createTransitGateway( args: CreateTransitGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTransitGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTransitGatewayConnectCommand} @@ -3702,10 +3360,7 @@ export interface EC2Service { createTransitGatewayConnect( args: CreateTransitGatewayConnectRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTransitGatewayConnectResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTransitGatewayConnectPeerCommand} @@ -3713,10 +3368,7 @@ export interface EC2Service { createTransitGatewayConnectPeer( args: CreateTransitGatewayConnectPeerRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTransitGatewayConnectPeerResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTransitGatewayMulticastDomainCommand} @@ -3724,10 +3376,7 @@ export interface EC2Service { createTransitGatewayMulticastDomain( args: CreateTransitGatewayMulticastDomainRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTransitGatewayMulticastDomainResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTransitGatewayPeeringAttachmentCommand} @@ -3735,10 +3384,7 @@ export interface EC2Service { createTransitGatewayPeeringAttachment( args: CreateTransitGatewayPeeringAttachmentRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTransitGatewayPeeringAttachmentResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTransitGatewayPolicyTableCommand} @@ -3746,10 +3392,7 @@ export interface EC2Service { createTransitGatewayPolicyTable( args: CreateTransitGatewayPolicyTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTransitGatewayPolicyTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTransitGatewayPrefixListReferenceCommand} @@ -3757,10 +3400,7 @@ export interface EC2Service { createTransitGatewayPrefixListReference( args: CreateTransitGatewayPrefixListReferenceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTransitGatewayPrefixListReferenceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTransitGatewayRouteCommand} @@ -3768,10 +3408,7 @@ export interface EC2Service { createTransitGatewayRoute( args: CreateTransitGatewayRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTransitGatewayRouteResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTransitGatewayRouteTableCommand} @@ -3779,10 +3416,7 @@ export interface EC2Service { createTransitGatewayRouteTable( args: CreateTransitGatewayRouteTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTransitGatewayRouteTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTransitGatewayRouteTableAnnouncementCommand} @@ -3790,10 +3424,7 @@ export interface EC2Service { createTransitGatewayRouteTableAnnouncement( args: CreateTransitGatewayRouteTableAnnouncementRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTransitGatewayRouteTableAnnouncementResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateTransitGatewayVpcAttachmentCommand} @@ -3801,10 +3432,7 @@ export interface EC2Service { createTransitGatewayVpcAttachment( args: CreateTransitGatewayVpcAttachmentRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateTransitGatewayVpcAttachmentResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVerifiedAccessEndpointCommand} @@ -3812,10 +3440,7 @@ export interface EC2Service { createVerifiedAccessEndpoint( args: CreateVerifiedAccessEndpointRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateVerifiedAccessEndpointResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVerifiedAccessGroupCommand} @@ -3823,10 +3448,7 @@ export interface EC2Service { createVerifiedAccessGroup( args: CreateVerifiedAccessGroupRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateVerifiedAccessGroupResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVerifiedAccessInstanceCommand} @@ -3834,10 +3456,7 @@ export interface EC2Service { createVerifiedAccessInstance( args: CreateVerifiedAccessInstanceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateVerifiedAccessInstanceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVerifiedAccessTrustProviderCommand} @@ -3845,10 +3464,7 @@ export interface EC2Service { createVerifiedAccessTrustProvider( args: CreateVerifiedAccessTrustProviderRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateVerifiedAccessTrustProviderResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVolumeCommand} @@ -3856,10 +3472,7 @@ export interface EC2Service { createVolume( args: CreateVolumeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - Volume, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVpcCommand} @@ -3867,10 +3480,7 @@ export interface EC2Service { createVpc( args: CreateVpcRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateVpcResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVpcEndpointCommand} @@ -3878,10 +3488,7 @@ export interface EC2Service { createVpcEndpoint( args: CreateVpcEndpointRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateVpcEndpointResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVpcEndpointConnectionNotificationCommand} @@ -3889,10 +3496,7 @@ export interface EC2Service { createVpcEndpointConnectionNotification( args: CreateVpcEndpointConnectionNotificationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateVpcEndpointConnectionNotificationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVpcEndpointServiceConfigurationCommand} @@ -3900,10 +3504,7 @@ export interface EC2Service { createVpcEndpointServiceConfiguration( args: CreateVpcEndpointServiceConfigurationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateVpcEndpointServiceConfigurationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVpcPeeringConnectionCommand} @@ -3911,10 +3512,7 @@ export interface EC2Service { createVpcPeeringConnection( args: CreateVpcPeeringConnectionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateVpcPeeringConnectionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVpnConnectionCommand} @@ -3922,10 +3520,7 @@ export interface EC2Service { createVpnConnection( args: CreateVpnConnectionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateVpnConnectionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVpnConnectionRouteCommand} @@ -3933,10 +3528,7 @@ export interface EC2Service { createVpnConnectionRoute( args: CreateVpnConnectionRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link CreateVpnGatewayCommand} @@ -3944,10 +3536,7 @@ export interface EC2Service { createVpnGateway( args: CreateVpnGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - CreateVpnGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteCarrierGatewayCommand} @@ -3955,10 +3544,7 @@ export interface EC2Service { deleteCarrierGateway( args: DeleteCarrierGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteCarrierGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteClientVpnEndpointCommand} @@ -3966,10 +3552,7 @@ export interface EC2Service { deleteClientVpnEndpoint( args: DeleteClientVpnEndpointRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteClientVpnEndpointResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteClientVpnRouteCommand} @@ -3977,10 +3560,7 @@ export interface EC2Service { deleteClientVpnRoute( args: DeleteClientVpnRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteClientVpnRouteResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteCoipCidrCommand} @@ -3988,10 +3568,7 @@ export interface EC2Service { deleteCoipCidr( args: DeleteCoipCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteCoipCidrResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteCoipPoolCommand} @@ -3999,10 +3576,7 @@ export interface EC2Service { deleteCoipPool( args: DeleteCoipPoolRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteCoipPoolResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteCustomerGatewayCommand} @@ -4010,10 +3584,7 @@ export interface EC2Service { deleteCustomerGateway( args: DeleteCustomerGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteDhcpOptionsCommand} @@ -4021,10 +3592,7 @@ export interface EC2Service { deleteDhcpOptions( args: DeleteDhcpOptionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteEgressOnlyInternetGatewayCommand} @@ -4032,10 +3600,7 @@ export interface EC2Service { deleteEgressOnlyInternetGateway( args: DeleteEgressOnlyInternetGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteEgressOnlyInternetGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteFleetsCommand} @@ -4043,10 +3608,7 @@ export interface EC2Service { deleteFleets( args: DeleteFleetsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteFleetsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteFlowLogsCommand} @@ -4054,10 +3616,7 @@ export interface EC2Service { deleteFlowLogs( args: DeleteFlowLogsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteFlowLogsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteFpgaImageCommand} @@ -4065,10 +3624,7 @@ export interface EC2Service { deleteFpgaImage( args: DeleteFpgaImageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteFpgaImageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteInstanceConnectEndpointCommand} @@ -4076,10 +3632,7 @@ export interface EC2Service { deleteInstanceConnectEndpoint( args: DeleteInstanceConnectEndpointRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteInstanceConnectEndpointResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteInstanceEventWindowCommand} @@ -4087,10 +3640,7 @@ export interface EC2Service { deleteInstanceEventWindow( args: DeleteInstanceEventWindowRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteInstanceEventWindowResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteInternetGatewayCommand} @@ -4098,10 +3648,7 @@ export interface EC2Service { deleteInternetGateway( args: DeleteInternetGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteIpamCommand} @@ -4109,10 +3656,7 @@ export interface EC2Service { deleteIpam( args: DeleteIpamRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteIpamResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteIpamPoolCommand} @@ -4120,10 +3664,7 @@ export interface EC2Service { deleteIpamPool( args: DeleteIpamPoolRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteIpamPoolResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteIpamResourceDiscoveryCommand} @@ -4131,10 +3672,7 @@ export interface EC2Service { deleteIpamResourceDiscovery( args: DeleteIpamResourceDiscoveryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteIpamResourceDiscoveryResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteIpamScopeCommand} @@ -4142,10 +3680,7 @@ export interface EC2Service { deleteIpamScope( args: DeleteIpamScopeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteIpamScopeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteKeyPairCommand} @@ -4153,10 +3688,7 @@ export interface EC2Service { deleteKeyPair( args: DeleteKeyPairRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteKeyPairResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteLaunchTemplateCommand} @@ -4164,10 +3696,7 @@ export interface EC2Service { deleteLaunchTemplate( args: DeleteLaunchTemplateRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteLaunchTemplateResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteLaunchTemplateVersionsCommand} @@ -4175,10 +3704,7 @@ export interface EC2Service { deleteLaunchTemplateVersions( args: DeleteLaunchTemplateVersionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteLaunchTemplateVersionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteLocalGatewayRouteCommand} @@ -4186,10 +3712,7 @@ export interface EC2Service { deleteLocalGatewayRoute( args: DeleteLocalGatewayRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteLocalGatewayRouteResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteLocalGatewayRouteTableCommand} @@ -4197,10 +3720,7 @@ export interface EC2Service { deleteLocalGatewayRouteTable( args: DeleteLocalGatewayRouteTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteLocalGatewayRouteTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand} @@ -4209,9 +3729,9 @@ export interface EC2Service { args: DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, - | SdkError - > + DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, + SdkError + >; /** * @see {@link DeleteLocalGatewayRouteTableVpcAssociationCommand} @@ -4219,10 +3739,7 @@ export interface EC2Service { deleteLocalGatewayRouteTableVpcAssociation( args: DeleteLocalGatewayRouteTableVpcAssociationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteLocalGatewayRouteTableVpcAssociationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteManagedPrefixListCommand} @@ -4230,10 +3747,7 @@ export interface EC2Service { deleteManagedPrefixList( args: DeleteManagedPrefixListRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteManagedPrefixListResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteNatGatewayCommand} @@ -4241,10 +3755,7 @@ export interface EC2Service { deleteNatGateway( args: DeleteNatGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteNatGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteNetworkAclCommand} @@ -4252,10 +3763,7 @@ export interface EC2Service { deleteNetworkAcl( args: DeleteNetworkAclRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteNetworkAclEntryCommand} @@ -4263,10 +3771,7 @@ export interface EC2Service { deleteNetworkAclEntry( args: DeleteNetworkAclEntryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteNetworkInsightsAccessScopeCommand} @@ -4274,10 +3779,7 @@ export interface EC2Service { deleteNetworkInsightsAccessScope( args: DeleteNetworkInsightsAccessScopeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteNetworkInsightsAccessScopeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteNetworkInsightsAccessScopeAnalysisCommand} @@ -4285,10 +3787,7 @@ export interface EC2Service { deleteNetworkInsightsAccessScopeAnalysis( args: DeleteNetworkInsightsAccessScopeAnalysisRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteNetworkInsightsAccessScopeAnalysisResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteNetworkInsightsAnalysisCommand} @@ -4296,10 +3795,7 @@ export interface EC2Service { deleteNetworkInsightsAnalysis( args: DeleteNetworkInsightsAnalysisRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteNetworkInsightsAnalysisResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteNetworkInsightsPathCommand} @@ -4307,10 +3803,7 @@ export interface EC2Service { deleteNetworkInsightsPath( args: DeleteNetworkInsightsPathRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteNetworkInsightsPathResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteNetworkInterfaceCommand} @@ -4318,10 +3811,7 @@ export interface EC2Service { deleteNetworkInterface( args: DeleteNetworkInterfaceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteNetworkInterfacePermissionCommand} @@ -4329,10 +3819,7 @@ export interface EC2Service { deleteNetworkInterfacePermission( args: DeleteNetworkInterfacePermissionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteNetworkInterfacePermissionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeletePlacementGroupCommand} @@ -4340,10 +3827,7 @@ export interface EC2Service { deletePlacementGroup( args: DeletePlacementGroupRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeletePublicIpv4PoolCommand} @@ -4351,10 +3835,7 @@ export interface EC2Service { deletePublicIpv4Pool( args: DeletePublicIpv4PoolRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeletePublicIpv4PoolResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteQueuedReservedInstancesCommand} @@ -4362,10 +3843,7 @@ export interface EC2Service { deleteQueuedReservedInstances( args: DeleteQueuedReservedInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteQueuedReservedInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteRouteCommand} @@ -4373,10 +3851,7 @@ export interface EC2Service { deleteRoute( args: DeleteRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteRouteTableCommand} @@ -4384,10 +3859,7 @@ export interface EC2Service { deleteRouteTable( args: DeleteRouteTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteSecurityGroupCommand} @@ -4395,10 +3867,7 @@ export interface EC2Service { deleteSecurityGroup( args: DeleteSecurityGroupRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteSnapshotCommand} @@ -4406,10 +3875,7 @@ export interface EC2Service { deleteSnapshot( args: DeleteSnapshotRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteSpotDatafeedSubscriptionCommand} @@ -4417,10 +3883,7 @@ export interface EC2Service { deleteSpotDatafeedSubscription( args: DeleteSpotDatafeedSubscriptionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteSubnetCommand} @@ -4428,10 +3891,7 @@ export interface EC2Service { deleteSubnet( args: DeleteSubnetRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteSubnetCidrReservationCommand} @@ -4439,10 +3899,7 @@ export interface EC2Service { deleteSubnetCidrReservation( args: DeleteSubnetCidrReservationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteSubnetCidrReservationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTagsCommand} @@ -4450,10 +3907,7 @@ export interface EC2Service { deleteTags( args: DeleteTagsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTrafficMirrorFilterCommand} @@ -4461,10 +3915,7 @@ export interface EC2Service { deleteTrafficMirrorFilter( args: DeleteTrafficMirrorFilterRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTrafficMirrorFilterResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTrafficMirrorFilterRuleCommand} @@ -4472,10 +3923,7 @@ export interface EC2Service { deleteTrafficMirrorFilterRule( args: DeleteTrafficMirrorFilterRuleRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTrafficMirrorFilterRuleResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTrafficMirrorSessionCommand} @@ -4483,10 +3931,7 @@ export interface EC2Service { deleteTrafficMirrorSession( args: DeleteTrafficMirrorSessionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTrafficMirrorSessionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTrafficMirrorTargetCommand} @@ -4494,10 +3939,7 @@ export interface EC2Service { deleteTrafficMirrorTarget( args: DeleteTrafficMirrorTargetRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTrafficMirrorTargetResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTransitGatewayCommand} @@ -4505,10 +3947,7 @@ export interface EC2Service { deleteTransitGateway( args: DeleteTransitGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTransitGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTransitGatewayConnectCommand} @@ -4516,10 +3955,7 @@ export interface EC2Service { deleteTransitGatewayConnect( args: DeleteTransitGatewayConnectRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTransitGatewayConnectResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTransitGatewayConnectPeerCommand} @@ -4527,10 +3963,7 @@ export interface EC2Service { deleteTransitGatewayConnectPeer( args: DeleteTransitGatewayConnectPeerRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTransitGatewayConnectPeerResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTransitGatewayMulticastDomainCommand} @@ -4538,10 +3971,7 @@ export interface EC2Service { deleteTransitGatewayMulticastDomain( args: DeleteTransitGatewayMulticastDomainRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTransitGatewayMulticastDomainResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTransitGatewayPeeringAttachmentCommand} @@ -4549,10 +3979,7 @@ export interface EC2Service { deleteTransitGatewayPeeringAttachment( args: DeleteTransitGatewayPeeringAttachmentRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTransitGatewayPeeringAttachmentResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTransitGatewayPolicyTableCommand} @@ -4560,10 +3987,7 @@ export interface EC2Service { deleteTransitGatewayPolicyTable( args: DeleteTransitGatewayPolicyTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTransitGatewayPolicyTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTransitGatewayPrefixListReferenceCommand} @@ -4571,10 +3995,7 @@ export interface EC2Service { deleteTransitGatewayPrefixListReference( args: DeleteTransitGatewayPrefixListReferenceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTransitGatewayPrefixListReferenceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTransitGatewayRouteCommand} @@ -4582,10 +4003,7 @@ export interface EC2Service { deleteTransitGatewayRoute( args: DeleteTransitGatewayRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTransitGatewayRouteResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTransitGatewayRouteTableCommand} @@ -4593,10 +4011,7 @@ export interface EC2Service { deleteTransitGatewayRouteTable( args: DeleteTransitGatewayRouteTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTransitGatewayRouteTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTransitGatewayRouteTableAnnouncementCommand} @@ -4604,10 +4019,7 @@ export interface EC2Service { deleteTransitGatewayRouteTableAnnouncement( args: DeleteTransitGatewayRouteTableAnnouncementRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTransitGatewayRouteTableAnnouncementResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteTransitGatewayVpcAttachmentCommand} @@ -4615,10 +4027,7 @@ export interface EC2Service { deleteTransitGatewayVpcAttachment( args: DeleteTransitGatewayVpcAttachmentRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteTransitGatewayVpcAttachmentResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVerifiedAccessEndpointCommand} @@ -4626,10 +4035,7 @@ export interface EC2Service { deleteVerifiedAccessEndpoint( args: DeleteVerifiedAccessEndpointRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteVerifiedAccessEndpointResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVerifiedAccessGroupCommand} @@ -4637,10 +4043,7 @@ export interface EC2Service { deleteVerifiedAccessGroup( args: DeleteVerifiedAccessGroupRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteVerifiedAccessGroupResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVerifiedAccessInstanceCommand} @@ -4648,10 +4051,7 @@ export interface EC2Service { deleteVerifiedAccessInstance( args: DeleteVerifiedAccessInstanceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteVerifiedAccessInstanceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVerifiedAccessTrustProviderCommand} @@ -4659,10 +4059,7 @@ export interface EC2Service { deleteVerifiedAccessTrustProvider( args: DeleteVerifiedAccessTrustProviderRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteVerifiedAccessTrustProviderResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVolumeCommand} @@ -4670,10 +4067,7 @@ export interface EC2Service { deleteVolume( args: DeleteVolumeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVpcCommand} @@ -4681,10 +4075,7 @@ export interface EC2Service { deleteVpc( args: DeleteVpcRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVpcEndpointConnectionNotificationsCommand} @@ -4692,10 +4083,7 @@ export interface EC2Service { deleteVpcEndpointConnectionNotifications( args: DeleteVpcEndpointConnectionNotificationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteVpcEndpointConnectionNotificationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVpcEndpointServiceConfigurationsCommand} @@ -4703,10 +4091,7 @@ export interface EC2Service { deleteVpcEndpointServiceConfigurations( args: DeleteVpcEndpointServiceConfigurationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteVpcEndpointServiceConfigurationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVpcEndpointsCommand} @@ -4714,10 +4099,7 @@ export interface EC2Service { deleteVpcEndpoints( args: DeleteVpcEndpointsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteVpcEndpointsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVpcPeeringConnectionCommand} @@ -4725,10 +4107,7 @@ export interface EC2Service { deleteVpcPeeringConnection( args: DeleteVpcPeeringConnectionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeleteVpcPeeringConnectionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVpnConnectionCommand} @@ -4736,10 +4115,7 @@ export interface EC2Service { deleteVpnConnection( args: DeleteVpnConnectionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVpnConnectionRouteCommand} @@ -4747,10 +4123,7 @@ export interface EC2Service { deleteVpnConnectionRoute( args: DeleteVpnConnectionRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeleteVpnGatewayCommand} @@ -4758,10 +4131,7 @@ export interface EC2Service { deleteVpnGateway( args: DeleteVpnGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeprovisionByoipCidrCommand} @@ -4769,10 +4139,7 @@ export interface EC2Service { deprovisionByoipCidr( args: DeprovisionByoipCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeprovisionByoipCidrResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeprovisionIpamByoasnCommand} @@ -4780,10 +4147,7 @@ export interface EC2Service { deprovisionIpamByoasn( args: DeprovisionIpamByoasnRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeprovisionIpamByoasnResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeprovisionIpamPoolCidrCommand} @@ -4791,10 +4155,7 @@ export interface EC2Service { deprovisionIpamPoolCidr( args: DeprovisionIpamPoolCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeprovisionIpamPoolCidrResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeprovisionPublicIpv4PoolCidrCommand} @@ -4802,10 +4163,7 @@ export interface EC2Service { deprovisionPublicIpv4PoolCidr( args: DeprovisionPublicIpv4PoolCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DeprovisionPublicIpv4PoolCidrResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeregisterImageCommand} @@ -4813,10 +4171,7 @@ export interface EC2Service { deregisterImage( args: DeregisterImageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DeregisterInstanceEventNotificationAttributesCommand} @@ -4825,9 +4180,9 @@ export interface EC2Service { args: DeregisterInstanceEventNotificationAttributesRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - DeregisterInstanceEventNotificationAttributesResult, - | SdkError - > + DeregisterInstanceEventNotificationAttributesResult, + SdkError + >; /** * @see {@link DeregisterTransitGatewayMulticastGroupMembersCommand} @@ -4836,9 +4191,9 @@ export interface EC2Service { args: DeregisterTransitGatewayMulticastGroupMembersRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - DeregisterTransitGatewayMulticastGroupMembersResult, - | SdkError - > + DeregisterTransitGatewayMulticastGroupMembersResult, + SdkError + >; /** * @see {@link DeregisterTransitGatewayMulticastGroupSourcesCommand} @@ -4847,9 +4202,9 @@ export interface EC2Service { args: DeregisterTransitGatewayMulticastGroupSourcesRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - DeregisterTransitGatewayMulticastGroupSourcesResult, - | SdkError - > + DeregisterTransitGatewayMulticastGroupSourcesResult, + SdkError + >; /** * @see {@link DescribeAccountAttributesCommand} @@ -4857,10 +4212,7 @@ export interface EC2Service { describeAccountAttributes( args: DescribeAccountAttributesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeAccountAttributesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeAddressTransfersCommand} @@ -4868,10 +4220,7 @@ export interface EC2Service { describeAddressTransfers( args: DescribeAddressTransfersRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeAddressTransfersResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeAddressesCommand} @@ -4879,10 +4228,7 @@ export interface EC2Service { describeAddresses( args: DescribeAddressesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeAddressesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeAddressesAttributeCommand} @@ -4890,10 +4236,7 @@ export interface EC2Service { describeAddressesAttribute( args: DescribeAddressesAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeAddressesAttributeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeAggregateIdFormatCommand} @@ -4901,10 +4244,7 @@ export interface EC2Service { describeAggregateIdFormat( args: DescribeAggregateIdFormatRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeAggregateIdFormatResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeAvailabilityZonesCommand} @@ -4912,10 +4252,7 @@ export interface EC2Service { describeAvailabilityZones( args: DescribeAvailabilityZonesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeAvailabilityZonesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeAwsNetworkPerformanceMetricSubscriptionsCommand} @@ -4924,9 +4261,9 @@ export interface EC2Service { args: DescribeAwsNetworkPerformanceMetricSubscriptionsRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - DescribeAwsNetworkPerformanceMetricSubscriptionsResult, - | SdkError - > + DescribeAwsNetworkPerformanceMetricSubscriptionsResult, + SdkError + >; /** * @see {@link DescribeBundleTasksCommand} @@ -4934,10 +4271,7 @@ export interface EC2Service { describeBundleTasks( args: DescribeBundleTasksRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeBundleTasksResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeByoipCidrsCommand} @@ -4945,10 +4279,7 @@ export interface EC2Service { describeByoipCidrs( args: DescribeByoipCidrsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeByoipCidrsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeCapacityBlockOfferingsCommand} @@ -4956,10 +4287,7 @@ export interface EC2Service { describeCapacityBlockOfferings( args: DescribeCapacityBlockOfferingsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeCapacityBlockOfferingsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeCapacityReservationFleetsCommand} @@ -4967,10 +4295,7 @@ export interface EC2Service { describeCapacityReservationFleets( args: DescribeCapacityReservationFleetsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeCapacityReservationFleetsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeCapacityReservationsCommand} @@ -4978,10 +4303,7 @@ export interface EC2Service { describeCapacityReservations( args: DescribeCapacityReservationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeCapacityReservationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeCarrierGatewaysCommand} @@ -4989,10 +4311,7 @@ export interface EC2Service { describeCarrierGateways( args: DescribeCarrierGatewaysRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeCarrierGatewaysResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeClassicLinkInstancesCommand} @@ -5000,10 +4319,7 @@ export interface EC2Service { describeClassicLinkInstances( args: DescribeClassicLinkInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeClassicLinkInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeClientVpnAuthorizationRulesCommand} @@ -5011,10 +4327,7 @@ export interface EC2Service { describeClientVpnAuthorizationRules( args: DescribeClientVpnAuthorizationRulesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeClientVpnAuthorizationRulesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeClientVpnConnectionsCommand} @@ -5022,10 +4335,7 @@ export interface EC2Service { describeClientVpnConnections( args: DescribeClientVpnConnectionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeClientVpnConnectionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeClientVpnEndpointsCommand} @@ -5033,10 +4343,7 @@ export interface EC2Service { describeClientVpnEndpoints( args: DescribeClientVpnEndpointsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeClientVpnEndpointsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeClientVpnRoutesCommand} @@ -5044,10 +4351,7 @@ export interface EC2Service { describeClientVpnRoutes( args: DescribeClientVpnRoutesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeClientVpnRoutesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeClientVpnTargetNetworksCommand} @@ -5055,10 +4359,7 @@ export interface EC2Service { describeClientVpnTargetNetworks( args: DescribeClientVpnTargetNetworksRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeClientVpnTargetNetworksResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeCoipPoolsCommand} @@ -5066,10 +4367,7 @@ export interface EC2Service { describeCoipPools( args: DescribeCoipPoolsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeCoipPoolsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeConversionTasksCommand} @@ -5077,10 +4375,7 @@ export interface EC2Service { describeConversionTasks( args: DescribeConversionTasksRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeConversionTasksResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeCustomerGatewaysCommand} @@ -5088,10 +4383,7 @@ export interface EC2Service { describeCustomerGateways( args: DescribeCustomerGatewaysRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeCustomerGatewaysResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeDhcpOptionsCommand} @@ -5099,10 +4391,7 @@ export interface EC2Service { describeDhcpOptions( args: DescribeDhcpOptionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeDhcpOptionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeEgressOnlyInternetGatewaysCommand} @@ -5110,10 +4399,7 @@ export interface EC2Service { describeEgressOnlyInternetGateways( args: DescribeEgressOnlyInternetGatewaysRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeEgressOnlyInternetGatewaysResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeElasticGpusCommand} @@ -5121,10 +4407,7 @@ export interface EC2Service { describeElasticGpus( args: DescribeElasticGpusRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeElasticGpusResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeExportImageTasksCommand} @@ -5132,10 +4415,7 @@ export interface EC2Service { describeExportImageTasks( args: DescribeExportImageTasksRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeExportImageTasksResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeExportTasksCommand} @@ -5143,10 +4423,7 @@ export interface EC2Service { describeExportTasks( args: DescribeExportTasksRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeExportTasksResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeFastLaunchImagesCommand} @@ -5154,10 +4431,7 @@ export interface EC2Service { describeFastLaunchImages( args: DescribeFastLaunchImagesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeFastLaunchImagesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeFastSnapshotRestoresCommand} @@ -5165,10 +4439,7 @@ export interface EC2Service { describeFastSnapshotRestores( args: DescribeFastSnapshotRestoresRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeFastSnapshotRestoresResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeFleetHistoryCommand} @@ -5176,10 +4447,7 @@ export interface EC2Service { describeFleetHistory( args: DescribeFleetHistoryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeFleetHistoryResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeFleetInstancesCommand} @@ -5187,10 +4455,7 @@ export interface EC2Service { describeFleetInstances( args: DescribeFleetInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeFleetInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeFleetsCommand} @@ -5198,10 +4463,7 @@ export interface EC2Service { describeFleets( args: DescribeFleetsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeFleetsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeFlowLogsCommand} @@ -5209,10 +4471,7 @@ export interface EC2Service { describeFlowLogs( args: DescribeFlowLogsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeFlowLogsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeFpgaImageAttributeCommand} @@ -5220,10 +4479,7 @@ export interface EC2Service { describeFpgaImageAttribute( args: DescribeFpgaImageAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeFpgaImageAttributeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeFpgaImagesCommand} @@ -5231,10 +4487,7 @@ export interface EC2Service { describeFpgaImages( args: DescribeFpgaImagesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeFpgaImagesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeHostReservationOfferingsCommand} @@ -5242,10 +4495,7 @@ export interface EC2Service { describeHostReservationOfferings( args: DescribeHostReservationOfferingsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeHostReservationOfferingsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeHostReservationsCommand} @@ -5253,10 +4503,7 @@ export interface EC2Service { describeHostReservations( args: DescribeHostReservationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeHostReservationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeHostsCommand} @@ -5264,10 +4511,7 @@ export interface EC2Service { describeHosts( args: DescribeHostsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeHostsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeIamInstanceProfileAssociationsCommand} @@ -5275,10 +4519,7 @@ export interface EC2Service { describeIamInstanceProfileAssociations( args: DescribeIamInstanceProfileAssociationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeIamInstanceProfileAssociationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeIdFormatCommand} @@ -5286,10 +4527,7 @@ export interface EC2Service { describeIdFormat( args: DescribeIdFormatRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeIdFormatResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeIdentityIdFormatCommand} @@ -5297,10 +4535,7 @@ export interface EC2Service { describeIdentityIdFormat( args: DescribeIdentityIdFormatRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeIdentityIdFormatResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeImageAttributeCommand} @@ -5308,10 +4543,7 @@ export interface EC2Service { describeImageAttribute( args: DescribeImageAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ImageAttribute, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeImagesCommand} @@ -5319,10 +4551,7 @@ export interface EC2Service { describeImages( args: DescribeImagesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeImagesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeImportImageTasksCommand} @@ -5330,10 +4559,7 @@ export interface EC2Service { describeImportImageTasks( args: DescribeImportImageTasksRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeImportImageTasksResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeImportSnapshotTasksCommand} @@ -5341,10 +4567,7 @@ export interface EC2Service { describeImportSnapshotTasks( args: DescribeImportSnapshotTasksRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeImportSnapshotTasksResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeInstanceAttributeCommand} @@ -5352,10 +4575,7 @@ export interface EC2Service { describeInstanceAttribute( args: DescribeInstanceAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - InstanceAttribute, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeInstanceConnectEndpointsCommand} @@ -5363,10 +4583,7 @@ export interface EC2Service { describeInstanceConnectEndpoints( args: DescribeInstanceConnectEndpointsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeInstanceConnectEndpointsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeInstanceCreditSpecificationsCommand} @@ -5374,10 +4591,7 @@ export interface EC2Service { describeInstanceCreditSpecifications( args: DescribeInstanceCreditSpecificationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeInstanceCreditSpecificationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeInstanceEventNotificationAttributesCommand} @@ -5385,10 +4599,7 @@ export interface EC2Service { describeInstanceEventNotificationAttributes( args: DescribeInstanceEventNotificationAttributesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeInstanceEventNotificationAttributesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeInstanceEventWindowsCommand} @@ -5396,10 +4607,7 @@ export interface EC2Service { describeInstanceEventWindows( args: DescribeInstanceEventWindowsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeInstanceEventWindowsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeInstanceStatusCommand} @@ -5407,10 +4615,7 @@ export interface EC2Service { describeInstanceStatus( args: DescribeInstanceStatusRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeInstanceStatusResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeInstanceTopologyCommand} @@ -5418,10 +4623,7 @@ export interface EC2Service { describeInstanceTopology( args: DescribeInstanceTopologyRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeInstanceTopologyResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeInstanceTypeOfferingsCommand} @@ -5429,10 +4631,7 @@ export interface EC2Service { describeInstanceTypeOfferings( args: DescribeInstanceTypeOfferingsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeInstanceTypeOfferingsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeInstanceTypesCommand} @@ -5440,10 +4639,7 @@ export interface EC2Service { describeInstanceTypes( args: DescribeInstanceTypesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeInstanceTypesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeInstancesCommand} @@ -5451,10 +4647,7 @@ export interface EC2Service { describeInstances( args: DescribeInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeInternetGatewaysCommand} @@ -5462,10 +4655,7 @@ export interface EC2Service { describeInternetGateways( args: DescribeInternetGatewaysRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeInternetGatewaysResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeIpamByoasnCommand} @@ -5473,10 +4663,7 @@ export interface EC2Service { describeIpamByoasn( args: DescribeIpamByoasnRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeIpamByoasnResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeIpamPoolsCommand} @@ -5484,10 +4671,7 @@ export interface EC2Service { describeIpamPools( args: DescribeIpamPoolsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeIpamPoolsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeIpamResourceDiscoveriesCommand} @@ -5495,10 +4679,7 @@ export interface EC2Service { describeIpamResourceDiscoveries( args: DescribeIpamResourceDiscoveriesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeIpamResourceDiscoveriesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeIpamResourceDiscoveryAssociationsCommand} @@ -5506,10 +4687,7 @@ export interface EC2Service { describeIpamResourceDiscoveryAssociations( args: DescribeIpamResourceDiscoveryAssociationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeIpamResourceDiscoveryAssociationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeIpamScopesCommand} @@ -5517,10 +4695,7 @@ export interface EC2Service { describeIpamScopes( args: DescribeIpamScopesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeIpamScopesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeIpamsCommand} @@ -5528,10 +4703,7 @@ export interface EC2Service { describeIpams( args: DescribeIpamsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeIpamsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeIpv6PoolsCommand} @@ -5539,10 +4711,7 @@ export interface EC2Service { describeIpv6Pools( args: DescribeIpv6PoolsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeIpv6PoolsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeKeyPairsCommand} @@ -5550,10 +4719,7 @@ export interface EC2Service { describeKeyPairs( args: DescribeKeyPairsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeKeyPairsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeLaunchTemplateVersionsCommand} @@ -5561,10 +4727,7 @@ export interface EC2Service { describeLaunchTemplateVersions( args: DescribeLaunchTemplateVersionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeLaunchTemplateVersionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeLaunchTemplatesCommand} @@ -5572,10 +4735,7 @@ export interface EC2Service { describeLaunchTemplates( args: DescribeLaunchTemplatesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeLaunchTemplatesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand} @@ -5584,9 +4744,9 @@ export interface EC2Service { args: DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult, - | SdkError - > + DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult, + SdkError + >; /** * @see {@link DescribeLocalGatewayRouteTableVpcAssociationsCommand} @@ -5595,9 +4755,9 @@ export interface EC2Service { args: DescribeLocalGatewayRouteTableVpcAssociationsRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - DescribeLocalGatewayRouteTableVpcAssociationsResult, - | SdkError - > + DescribeLocalGatewayRouteTableVpcAssociationsResult, + SdkError + >; /** * @see {@link DescribeLocalGatewayRouteTablesCommand} @@ -5605,10 +4765,7 @@ export interface EC2Service { describeLocalGatewayRouteTables( args: DescribeLocalGatewayRouteTablesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeLocalGatewayRouteTablesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeLocalGatewayVirtualInterfaceGroupsCommand} @@ -5616,10 +4773,7 @@ export interface EC2Service { describeLocalGatewayVirtualInterfaceGroups( args: DescribeLocalGatewayVirtualInterfaceGroupsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeLocalGatewayVirtualInterfaceGroupsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeLocalGatewayVirtualInterfacesCommand} @@ -5627,10 +4781,7 @@ export interface EC2Service { describeLocalGatewayVirtualInterfaces( args: DescribeLocalGatewayVirtualInterfacesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeLocalGatewayVirtualInterfacesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeLocalGatewaysCommand} @@ -5638,10 +4789,7 @@ export interface EC2Service { describeLocalGateways( args: DescribeLocalGatewaysRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeLocalGatewaysResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeLockedSnapshotsCommand} @@ -5649,10 +4797,7 @@ export interface EC2Service { describeLockedSnapshots( args: DescribeLockedSnapshotsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeLockedSnapshotsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeMacHostsCommand} @@ -5660,10 +4805,7 @@ export interface EC2Service { describeMacHosts( args: DescribeMacHostsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeMacHostsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeManagedPrefixListsCommand} @@ -5671,10 +4813,7 @@ export interface EC2Service { describeManagedPrefixLists( args: DescribeManagedPrefixListsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeManagedPrefixListsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeMovingAddressesCommand} @@ -5682,10 +4821,7 @@ export interface EC2Service { describeMovingAddresses( args: DescribeMovingAddressesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeMovingAddressesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeNatGatewaysCommand} @@ -5693,10 +4829,7 @@ export interface EC2Service { describeNatGateways( args: DescribeNatGatewaysRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeNatGatewaysResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeNetworkAclsCommand} @@ -5704,10 +4837,7 @@ export interface EC2Service { describeNetworkAcls( args: DescribeNetworkAclsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeNetworkAclsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeNetworkInsightsAccessScopeAnalysesCommand} @@ -5715,10 +4845,7 @@ export interface EC2Service { describeNetworkInsightsAccessScopeAnalyses( args: DescribeNetworkInsightsAccessScopeAnalysesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeNetworkInsightsAccessScopeAnalysesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeNetworkInsightsAccessScopesCommand} @@ -5726,10 +4853,7 @@ export interface EC2Service { describeNetworkInsightsAccessScopes( args: DescribeNetworkInsightsAccessScopesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeNetworkInsightsAccessScopesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeNetworkInsightsAnalysesCommand} @@ -5737,10 +4861,7 @@ export interface EC2Service { describeNetworkInsightsAnalyses( args: DescribeNetworkInsightsAnalysesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeNetworkInsightsAnalysesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeNetworkInsightsPathsCommand} @@ -5748,10 +4869,7 @@ export interface EC2Service { describeNetworkInsightsPaths( args: DescribeNetworkInsightsPathsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeNetworkInsightsPathsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeNetworkInterfaceAttributeCommand} @@ -5759,10 +4877,7 @@ export interface EC2Service { describeNetworkInterfaceAttribute( args: DescribeNetworkInterfaceAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeNetworkInterfaceAttributeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeNetworkInterfacePermissionsCommand} @@ -5770,10 +4885,7 @@ export interface EC2Service { describeNetworkInterfacePermissions( args: DescribeNetworkInterfacePermissionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeNetworkInterfacePermissionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeNetworkInterfacesCommand} @@ -5781,10 +4893,7 @@ export interface EC2Service { describeNetworkInterfaces( args: DescribeNetworkInterfacesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeNetworkInterfacesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribePlacementGroupsCommand} @@ -5792,10 +4901,7 @@ export interface EC2Service { describePlacementGroups( args: DescribePlacementGroupsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribePlacementGroupsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribePrefixListsCommand} @@ -5803,10 +4909,7 @@ export interface EC2Service { describePrefixLists( args: DescribePrefixListsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribePrefixListsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribePrincipalIdFormatCommand} @@ -5814,10 +4917,7 @@ export interface EC2Service { describePrincipalIdFormat( args: DescribePrincipalIdFormatRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribePrincipalIdFormatResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribePublicIpv4PoolsCommand} @@ -5825,10 +4925,7 @@ export interface EC2Service { describePublicIpv4Pools( args: DescribePublicIpv4PoolsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribePublicIpv4PoolsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeRegionsCommand} @@ -5836,10 +4933,7 @@ export interface EC2Service { describeRegions( args: DescribeRegionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeRegionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeReplaceRootVolumeTasksCommand} @@ -5847,10 +4941,7 @@ export interface EC2Service { describeReplaceRootVolumeTasks( args: DescribeReplaceRootVolumeTasksRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeReplaceRootVolumeTasksResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeReservedInstancesCommand} @@ -5858,10 +4949,7 @@ export interface EC2Service { describeReservedInstances( args: DescribeReservedInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeReservedInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeReservedInstancesListingsCommand} @@ -5869,10 +4957,7 @@ export interface EC2Service { describeReservedInstancesListings( args: DescribeReservedInstancesListingsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeReservedInstancesListingsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeReservedInstancesModificationsCommand} @@ -5880,10 +4965,7 @@ export interface EC2Service { describeReservedInstancesModifications( args: DescribeReservedInstancesModificationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeReservedInstancesModificationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeReservedInstancesOfferingsCommand} @@ -5891,10 +4973,7 @@ export interface EC2Service { describeReservedInstancesOfferings( args: DescribeReservedInstancesOfferingsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeReservedInstancesOfferingsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeRouteTablesCommand} @@ -5902,10 +4981,7 @@ export interface EC2Service { describeRouteTables( args: DescribeRouteTablesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeRouteTablesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeScheduledInstanceAvailabilityCommand} @@ -5913,10 +4989,7 @@ export interface EC2Service { describeScheduledInstanceAvailability( args: DescribeScheduledInstanceAvailabilityRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeScheduledInstanceAvailabilityResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeScheduledInstancesCommand} @@ -5924,10 +4997,7 @@ export interface EC2Service { describeScheduledInstances( args: DescribeScheduledInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeScheduledInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSecurityGroupReferencesCommand} @@ -5935,10 +5005,7 @@ export interface EC2Service { describeSecurityGroupReferences( args: DescribeSecurityGroupReferencesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSecurityGroupReferencesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSecurityGroupRulesCommand} @@ -5946,10 +5013,7 @@ export interface EC2Service { describeSecurityGroupRules( args: DescribeSecurityGroupRulesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSecurityGroupRulesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSecurityGroupsCommand} @@ -5957,10 +5021,7 @@ export interface EC2Service { describeSecurityGroups( args: DescribeSecurityGroupsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSecurityGroupsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSnapshotAttributeCommand} @@ -5968,10 +5029,7 @@ export interface EC2Service { describeSnapshotAttribute( args: DescribeSnapshotAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSnapshotAttributeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSnapshotTierStatusCommand} @@ -5979,10 +5037,7 @@ export interface EC2Service { describeSnapshotTierStatus( args: DescribeSnapshotTierStatusRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSnapshotTierStatusResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSnapshotsCommand} @@ -5990,10 +5045,7 @@ export interface EC2Service { describeSnapshots( args: DescribeSnapshotsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSnapshotsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSpotDatafeedSubscriptionCommand} @@ -6001,10 +5053,7 @@ export interface EC2Service { describeSpotDatafeedSubscription( args: DescribeSpotDatafeedSubscriptionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSpotDatafeedSubscriptionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSpotFleetInstancesCommand} @@ -6012,10 +5061,7 @@ export interface EC2Service { describeSpotFleetInstances( args: DescribeSpotFleetInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSpotFleetInstancesResponse, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSpotFleetRequestHistoryCommand} @@ -6023,10 +5069,7 @@ export interface EC2Service { describeSpotFleetRequestHistory( args: DescribeSpotFleetRequestHistoryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSpotFleetRequestHistoryResponse, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSpotFleetRequestsCommand} @@ -6034,10 +5077,7 @@ export interface EC2Service { describeSpotFleetRequests( args: DescribeSpotFleetRequestsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSpotFleetRequestsResponse, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSpotInstanceRequestsCommand} @@ -6045,10 +5085,7 @@ export interface EC2Service { describeSpotInstanceRequests( args: DescribeSpotInstanceRequestsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSpotInstanceRequestsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSpotPriceHistoryCommand} @@ -6056,10 +5093,7 @@ export interface EC2Service { describeSpotPriceHistory( args: DescribeSpotPriceHistoryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSpotPriceHistoryResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeStaleSecurityGroupsCommand} @@ -6067,10 +5101,7 @@ export interface EC2Service { describeStaleSecurityGroups( args: DescribeStaleSecurityGroupsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeStaleSecurityGroupsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeStoreImageTasksCommand} @@ -6078,10 +5109,7 @@ export interface EC2Service { describeStoreImageTasks( args: DescribeStoreImageTasksRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeStoreImageTasksResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeSubnetsCommand} @@ -6089,10 +5117,7 @@ export interface EC2Service { describeSubnets( args: DescribeSubnetsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeSubnetsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTagsCommand} @@ -6100,10 +5125,7 @@ export interface EC2Service { describeTags( args: DescribeTagsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTagsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTrafficMirrorFiltersCommand} @@ -6111,10 +5133,7 @@ export interface EC2Service { describeTrafficMirrorFilters( args: DescribeTrafficMirrorFiltersRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTrafficMirrorFiltersResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTrafficMirrorSessionsCommand} @@ -6122,10 +5141,7 @@ export interface EC2Service { describeTrafficMirrorSessions( args: DescribeTrafficMirrorSessionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTrafficMirrorSessionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTrafficMirrorTargetsCommand} @@ -6133,10 +5149,7 @@ export interface EC2Service { describeTrafficMirrorTargets( args: DescribeTrafficMirrorTargetsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTrafficMirrorTargetsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTransitGatewayAttachmentsCommand} @@ -6144,10 +5157,7 @@ export interface EC2Service { describeTransitGatewayAttachments( args: DescribeTransitGatewayAttachmentsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTransitGatewayAttachmentsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTransitGatewayConnectPeersCommand} @@ -6155,10 +5165,7 @@ export interface EC2Service { describeTransitGatewayConnectPeers( args: DescribeTransitGatewayConnectPeersRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTransitGatewayConnectPeersResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTransitGatewayConnectsCommand} @@ -6166,10 +5173,7 @@ export interface EC2Service { describeTransitGatewayConnects( args: DescribeTransitGatewayConnectsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTransitGatewayConnectsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTransitGatewayMulticastDomainsCommand} @@ -6177,10 +5181,7 @@ export interface EC2Service { describeTransitGatewayMulticastDomains( args: DescribeTransitGatewayMulticastDomainsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTransitGatewayMulticastDomainsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTransitGatewayPeeringAttachmentsCommand} @@ -6188,10 +5189,7 @@ export interface EC2Service { describeTransitGatewayPeeringAttachments( args: DescribeTransitGatewayPeeringAttachmentsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTransitGatewayPeeringAttachmentsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTransitGatewayPolicyTablesCommand} @@ -6199,10 +5197,7 @@ export interface EC2Service { describeTransitGatewayPolicyTables( args: DescribeTransitGatewayPolicyTablesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTransitGatewayPolicyTablesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTransitGatewayRouteTableAnnouncementsCommand} @@ -6211,9 +5206,9 @@ export interface EC2Service { args: DescribeTransitGatewayRouteTableAnnouncementsRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - DescribeTransitGatewayRouteTableAnnouncementsResult, - | SdkError - > + DescribeTransitGatewayRouteTableAnnouncementsResult, + SdkError + >; /** * @see {@link DescribeTransitGatewayRouteTablesCommand} @@ -6221,10 +5216,7 @@ export interface EC2Service { describeTransitGatewayRouteTables( args: DescribeTransitGatewayRouteTablesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTransitGatewayRouteTablesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTransitGatewayVpcAttachmentsCommand} @@ -6232,10 +5224,7 @@ export interface EC2Service { describeTransitGatewayVpcAttachments( args: DescribeTransitGatewayVpcAttachmentsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTransitGatewayVpcAttachmentsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTransitGatewaysCommand} @@ -6243,10 +5232,7 @@ export interface EC2Service { describeTransitGateways( args: DescribeTransitGatewaysRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTransitGatewaysResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeTrunkInterfaceAssociationsCommand} @@ -6254,10 +5240,7 @@ export interface EC2Service { describeTrunkInterfaceAssociations( args: DescribeTrunkInterfaceAssociationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeTrunkInterfaceAssociationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVerifiedAccessEndpointsCommand} @@ -6265,10 +5248,7 @@ export interface EC2Service { describeVerifiedAccessEndpoints( args: DescribeVerifiedAccessEndpointsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVerifiedAccessEndpointsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVerifiedAccessGroupsCommand} @@ -6276,10 +5256,7 @@ export interface EC2Service { describeVerifiedAccessGroups( args: DescribeVerifiedAccessGroupsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVerifiedAccessGroupsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVerifiedAccessInstanceLoggingConfigurationsCommand} @@ -6288,9 +5265,9 @@ export interface EC2Service { args: DescribeVerifiedAccessInstanceLoggingConfigurationsRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - DescribeVerifiedAccessInstanceLoggingConfigurationsResult, - | SdkError - > + DescribeVerifiedAccessInstanceLoggingConfigurationsResult, + SdkError + >; /** * @see {@link DescribeVerifiedAccessInstancesCommand} @@ -6298,10 +5275,7 @@ export interface EC2Service { describeVerifiedAccessInstances( args: DescribeVerifiedAccessInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVerifiedAccessInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVerifiedAccessTrustProvidersCommand} @@ -6309,10 +5283,7 @@ export interface EC2Service { describeVerifiedAccessTrustProviders( args: DescribeVerifiedAccessTrustProvidersRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVerifiedAccessTrustProvidersResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVolumeAttributeCommand} @@ -6320,10 +5291,7 @@ export interface EC2Service { describeVolumeAttribute( args: DescribeVolumeAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVolumeAttributeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVolumeStatusCommand} @@ -6331,10 +5299,7 @@ export interface EC2Service { describeVolumeStatus( args: DescribeVolumeStatusRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVolumeStatusResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVolumesCommand} @@ -6342,10 +5307,7 @@ export interface EC2Service { describeVolumes( args: DescribeVolumesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVolumesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVolumesModificationsCommand} @@ -6353,10 +5315,7 @@ export interface EC2Service { describeVolumesModifications( args: DescribeVolumesModificationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVolumesModificationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpcAttributeCommand} @@ -6364,10 +5323,7 @@ export interface EC2Service { describeVpcAttribute( args: DescribeVpcAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpcAttributeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpcClassicLinkCommand} @@ -6375,10 +5331,7 @@ export interface EC2Service { describeVpcClassicLink( args: DescribeVpcClassicLinkRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpcClassicLinkResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpcClassicLinkDnsSupportCommand} @@ -6386,10 +5339,7 @@ export interface EC2Service { describeVpcClassicLinkDnsSupport( args: DescribeVpcClassicLinkDnsSupportRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpcClassicLinkDnsSupportResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpcEndpointConnectionNotificationsCommand} @@ -6397,10 +5347,7 @@ export interface EC2Service { describeVpcEndpointConnectionNotifications( args: DescribeVpcEndpointConnectionNotificationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpcEndpointConnectionNotificationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpcEndpointConnectionsCommand} @@ -6408,10 +5355,7 @@ export interface EC2Service { describeVpcEndpointConnections( args: DescribeVpcEndpointConnectionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpcEndpointConnectionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpcEndpointServiceConfigurationsCommand} @@ -6419,10 +5363,7 @@ export interface EC2Service { describeVpcEndpointServiceConfigurations( args: DescribeVpcEndpointServiceConfigurationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpcEndpointServiceConfigurationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpcEndpointServicePermissionsCommand} @@ -6430,10 +5371,7 @@ export interface EC2Service { describeVpcEndpointServicePermissions( args: DescribeVpcEndpointServicePermissionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpcEndpointServicePermissionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpcEndpointServicesCommand} @@ -6441,10 +5379,7 @@ export interface EC2Service { describeVpcEndpointServices( args: DescribeVpcEndpointServicesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpcEndpointServicesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpcEndpointsCommand} @@ -6452,10 +5387,7 @@ export interface EC2Service { describeVpcEndpoints( args: DescribeVpcEndpointsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpcEndpointsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpcPeeringConnectionsCommand} @@ -6463,10 +5395,7 @@ export interface EC2Service { describeVpcPeeringConnections( args: DescribeVpcPeeringConnectionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpcPeeringConnectionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpcsCommand} @@ -6474,10 +5403,7 @@ export interface EC2Service { describeVpcs( args: DescribeVpcsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpcsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpnConnectionsCommand} @@ -6485,10 +5411,7 @@ export interface EC2Service { describeVpnConnections( args: DescribeVpnConnectionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpnConnectionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DescribeVpnGatewaysCommand} @@ -6496,10 +5419,7 @@ export interface EC2Service { describeVpnGateways( args: DescribeVpnGatewaysRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DescribeVpnGatewaysResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DetachClassicLinkVpcCommand} @@ -6507,10 +5427,7 @@ export interface EC2Service { detachClassicLinkVpc( args: DetachClassicLinkVpcRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DetachClassicLinkVpcResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DetachInternetGatewayCommand} @@ -6518,10 +5435,7 @@ export interface EC2Service { detachInternetGateway( args: DetachInternetGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DetachNetworkInterfaceCommand} @@ -6529,10 +5443,7 @@ export interface EC2Service { detachNetworkInterface( args: DetachNetworkInterfaceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DetachVerifiedAccessTrustProviderCommand} @@ -6540,10 +5451,7 @@ export interface EC2Service { detachVerifiedAccessTrustProvider( args: DetachVerifiedAccessTrustProviderRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DetachVerifiedAccessTrustProviderResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DetachVolumeCommand} @@ -6551,10 +5459,7 @@ export interface EC2Service { detachVolume( args: DetachVolumeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - VolumeAttachment, - | SdkError - > + ): Effect.Effect; /** * @see {@link DetachVpnGatewayCommand} @@ -6562,10 +5467,7 @@ export interface EC2Service { detachVpnGateway( args: DetachVpnGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableAddressTransferCommand} @@ -6573,10 +5475,7 @@ export interface EC2Service { disableAddressTransfer( args: DisableAddressTransferRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableAddressTransferResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableAwsNetworkPerformanceMetricSubscriptionCommand} @@ -6585,9 +5484,9 @@ export interface EC2Service { args: DisableAwsNetworkPerformanceMetricSubscriptionRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - DisableAwsNetworkPerformanceMetricSubscriptionResult, - | SdkError - > + DisableAwsNetworkPerformanceMetricSubscriptionResult, + SdkError + >; /** * @see {@link DisableEbsEncryptionByDefaultCommand} @@ -6595,10 +5494,7 @@ export interface EC2Service { disableEbsEncryptionByDefault( args: DisableEbsEncryptionByDefaultRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableEbsEncryptionByDefaultResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableFastLaunchCommand} @@ -6606,10 +5502,7 @@ export interface EC2Service { disableFastLaunch( args: DisableFastLaunchRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableFastLaunchResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableFastSnapshotRestoresCommand} @@ -6617,10 +5510,7 @@ export interface EC2Service { disableFastSnapshotRestores( args: DisableFastSnapshotRestoresRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableFastSnapshotRestoresResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableImageCommand} @@ -6628,10 +5518,7 @@ export interface EC2Service { disableImage( args: DisableImageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableImageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableImageBlockPublicAccessCommand} @@ -6639,10 +5526,7 @@ export interface EC2Service { disableImageBlockPublicAccess( args: DisableImageBlockPublicAccessRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableImageBlockPublicAccessResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableImageDeprecationCommand} @@ -6650,10 +5534,7 @@ export interface EC2Service { disableImageDeprecation( args: DisableImageDeprecationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableImageDeprecationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableIpamOrganizationAdminAccountCommand} @@ -6661,10 +5542,7 @@ export interface EC2Service { disableIpamOrganizationAdminAccount( args: DisableIpamOrganizationAdminAccountRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableIpamOrganizationAdminAccountResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableSerialConsoleAccessCommand} @@ -6672,10 +5550,7 @@ export interface EC2Service { disableSerialConsoleAccess( args: DisableSerialConsoleAccessRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableSerialConsoleAccessResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableSnapshotBlockPublicAccessCommand} @@ -6683,10 +5558,7 @@ export interface EC2Service { disableSnapshotBlockPublicAccess( args: DisableSnapshotBlockPublicAccessRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableSnapshotBlockPublicAccessResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableTransitGatewayRouteTablePropagationCommand} @@ -6694,10 +5566,7 @@ export interface EC2Service { disableTransitGatewayRouteTablePropagation( args: DisableTransitGatewayRouteTablePropagationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableTransitGatewayRouteTablePropagationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableVgwRoutePropagationCommand} @@ -6705,10 +5574,7 @@ export interface EC2Service { disableVgwRoutePropagation( args: DisableVgwRoutePropagationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableVpcClassicLinkCommand} @@ -6716,10 +5582,7 @@ export interface EC2Service { disableVpcClassicLink( args: DisableVpcClassicLinkRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableVpcClassicLinkResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisableVpcClassicLinkDnsSupportCommand} @@ -6727,10 +5590,7 @@ export interface EC2Service { disableVpcClassicLinkDnsSupport( args: DisableVpcClassicLinkDnsSupportRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisableVpcClassicLinkDnsSupportResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateAddressCommand} @@ -6738,10 +5598,7 @@ export interface EC2Service { disassociateAddress( args: DisassociateAddressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateClientVpnTargetNetworkCommand} @@ -6749,10 +5606,7 @@ export interface EC2Service { disassociateClientVpnTargetNetwork( args: DisassociateClientVpnTargetNetworkRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateClientVpnTargetNetworkResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateEnclaveCertificateIamRoleCommand} @@ -6760,10 +5614,7 @@ export interface EC2Service { disassociateEnclaveCertificateIamRole( args: DisassociateEnclaveCertificateIamRoleRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateEnclaveCertificateIamRoleResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateIamInstanceProfileCommand} @@ -6771,10 +5622,7 @@ export interface EC2Service { disassociateIamInstanceProfile( args: DisassociateIamInstanceProfileRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateIamInstanceProfileResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateInstanceEventWindowCommand} @@ -6782,10 +5630,7 @@ export interface EC2Service { disassociateInstanceEventWindow( args: DisassociateInstanceEventWindowRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateInstanceEventWindowResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateIpamByoasnCommand} @@ -6793,10 +5638,7 @@ export interface EC2Service { disassociateIpamByoasn( args: DisassociateIpamByoasnRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateIpamByoasnResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateIpamResourceDiscoveryCommand} @@ -6804,10 +5646,7 @@ export interface EC2Service { disassociateIpamResourceDiscovery( args: DisassociateIpamResourceDiscoveryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateIpamResourceDiscoveryResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateNatGatewayAddressCommand} @@ -6815,10 +5654,7 @@ export interface EC2Service { disassociateNatGatewayAddress( args: DisassociateNatGatewayAddressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateNatGatewayAddressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateRouteTableCommand} @@ -6826,10 +5662,7 @@ export interface EC2Service { disassociateRouteTable( args: DisassociateRouteTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateSubnetCidrBlockCommand} @@ -6837,10 +5670,7 @@ export interface EC2Service { disassociateSubnetCidrBlock( args: DisassociateSubnetCidrBlockRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateSubnetCidrBlockResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateTransitGatewayMulticastDomainCommand} @@ -6848,10 +5678,7 @@ export interface EC2Service { disassociateTransitGatewayMulticastDomain( args: DisassociateTransitGatewayMulticastDomainRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateTransitGatewayMulticastDomainResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateTransitGatewayPolicyTableCommand} @@ -6859,10 +5686,7 @@ export interface EC2Service { disassociateTransitGatewayPolicyTable( args: DisassociateTransitGatewayPolicyTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateTransitGatewayPolicyTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateTransitGatewayRouteTableCommand} @@ -6870,10 +5694,7 @@ export interface EC2Service { disassociateTransitGatewayRouteTable( args: DisassociateTransitGatewayRouteTableRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateTransitGatewayRouteTableResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateTrunkInterfaceCommand} @@ -6881,10 +5702,7 @@ export interface EC2Service { disassociateTrunkInterface( args: DisassociateTrunkInterfaceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateTrunkInterfaceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link DisassociateVpcCidrBlockCommand} @@ -6892,10 +5710,7 @@ export interface EC2Service { disassociateVpcCidrBlock( args: DisassociateVpcCidrBlockRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - DisassociateVpcCidrBlockResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableAddressTransferCommand} @@ -6903,10 +5718,7 @@ export interface EC2Service { enableAddressTransfer( args: EnableAddressTransferRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableAddressTransferResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableAwsNetworkPerformanceMetricSubscriptionCommand} @@ -6915,9 +5727,9 @@ export interface EC2Service { args: EnableAwsNetworkPerformanceMetricSubscriptionRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - EnableAwsNetworkPerformanceMetricSubscriptionResult, - | SdkError - > + EnableAwsNetworkPerformanceMetricSubscriptionResult, + SdkError + >; /** * @see {@link EnableEbsEncryptionByDefaultCommand} @@ -6925,10 +5737,7 @@ export interface EC2Service { enableEbsEncryptionByDefault( args: EnableEbsEncryptionByDefaultRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableEbsEncryptionByDefaultResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableFastLaunchCommand} @@ -6936,10 +5745,7 @@ export interface EC2Service { enableFastLaunch( args: EnableFastLaunchRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableFastLaunchResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableFastSnapshotRestoresCommand} @@ -6947,10 +5753,7 @@ export interface EC2Service { enableFastSnapshotRestores( args: EnableFastSnapshotRestoresRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableFastSnapshotRestoresResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableImageCommand} @@ -6958,10 +5761,7 @@ export interface EC2Service { enableImage( args: EnableImageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableImageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableImageBlockPublicAccessCommand} @@ -6969,10 +5769,7 @@ export interface EC2Service { enableImageBlockPublicAccess( args: EnableImageBlockPublicAccessRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableImageBlockPublicAccessResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableImageDeprecationCommand} @@ -6980,10 +5777,7 @@ export interface EC2Service { enableImageDeprecation( args: EnableImageDeprecationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableImageDeprecationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableIpamOrganizationAdminAccountCommand} @@ -6991,10 +5785,7 @@ export interface EC2Service { enableIpamOrganizationAdminAccount( args: EnableIpamOrganizationAdminAccountRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableIpamOrganizationAdminAccountResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableReachabilityAnalyzerOrganizationSharingCommand} @@ -7003,9 +5794,9 @@ export interface EC2Service { args: EnableReachabilityAnalyzerOrganizationSharingRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - EnableReachabilityAnalyzerOrganizationSharingResult, - | SdkError - > + EnableReachabilityAnalyzerOrganizationSharingResult, + SdkError + >; /** * @see {@link EnableSerialConsoleAccessCommand} @@ -7013,10 +5804,7 @@ export interface EC2Service { enableSerialConsoleAccess( args: EnableSerialConsoleAccessRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableSerialConsoleAccessResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableSnapshotBlockPublicAccessCommand} @@ -7024,10 +5812,7 @@ export interface EC2Service { enableSnapshotBlockPublicAccess( args: EnableSnapshotBlockPublicAccessRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableSnapshotBlockPublicAccessResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableTransitGatewayRouteTablePropagationCommand} @@ -7035,10 +5820,7 @@ export interface EC2Service { enableTransitGatewayRouteTablePropagation( args: EnableTransitGatewayRouteTablePropagationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableTransitGatewayRouteTablePropagationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableVgwRoutePropagationCommand} @@ -7046,10 +5828,7 @@ export interface EC2Service { enableVgwRoutePropagation( args: EnableVgwRoutePropagationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableVolumeIOCommand} @@ -7057,10 +5836,7 @@ export interface EC2Service { enableVolumeIO( args: EnableVolumeIORequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableVpcClassicLinkCommand} @@ -7068,10 +5844,7 @@ export interface EC2Service { enableVpcClassicLink( args: EnableVpcClassicLinkRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableVpcClassicLinkResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link EnableVpcClassicLinkDnsSupportCommand} @@ -7079,10 +5852,7 @@ export interface EC2Service { enableVpcClassicLinkDnsSupport( args: EnableVpcClassicLinkDnsSupportRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - EnableVpcClassicLinkDnsSupportResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ExportClientVpnClientCertificateRevocationListCommand} @@ -7091,9 +5861,9 @@ export interface EC2Service { args: ExportClientVpnClientCertificateRevocationListRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - ExportClientVpnClientCertificateRevocationListResult, - | SdkError - > + ExportClientVpnClientCertificateRevocationListResult, + SdkError + >; /** * @see {@link ExportClientVpnClientConfigurationCommand} @@ -7101,10 +5871,7 @@ export interface EC2Service { exportClientVpnClientConfiguration( args: ExportClientVpnClientConfigurationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ExportClientVpnClientConfigurationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ExportImageCommand} @@ -7112,10 +5879,7 @@ export interface EC2Service { exportImage( args: ExportImageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ExportImageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ExportTransitGatewayRoutesCommand} @@ -7123,10 +5887,7 @@ export interface EC2Service { exportTransitGatewayRoutes( args: ExportTransitGatewayRoutesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ExportTransitGatewayRoutesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetAssociatedEnclaveCertificateIamRolesCommand} @@ -7134,10 +5895,7 @@ export interface EC2Service { getAssociatedEnclaveCertificateIamRoles( args: GetAssociatedEnclaveCertificateIamRolesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetAssociatedEnclaveCertificateIamRolesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetAssociatedIpv6PoolCidrsCommand} @@ -7145,10 +5903,7 @@ export interface EC2Service { getAssociatedIpv6PoolCidrs( args: GetAssociatedIpv6PoolCidrsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetAssociatedIpv6PoolCidrsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetAwsNetworkPerformanceDataCommand} @@ -7156,10 +5911,7 @@ export interface EC2Service { getAwsNetworkPerformanceData( args: GetAwsNetworkPerformanceDataRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetAwsNetworkPerformanceDataResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetCapacityReservationUsageCommand} @@ -7167,10 +5919,7 @@ export interface EC2Service { getCapacityReservationUsage( args: GetCapacityReservationUsageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetCapacityReservationUsageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetCoipPoolUsageCommand} @@ -7178,10 +5927,7 @@ export interface EC2Service { getCoipPoolUsage( args: GetCoipPoolUsageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetCoipPoolUsageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetConsoleOutputCommand} @@ -7189,10 +5935,7 @@ export interface EC2Service { getConsoleOutput( args: GetConsoleOutputRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetConsoleOutputResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetConsoleScreenshotCommand} @@ -7200,10 +5943,7 @@ export interface EC2Service { getConsoleScreenshot( args: GetConsoleScreenshotRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetConsoleScreenshotResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetDefaultCreditSpecificationCommand} @@ -7211,10 +5951,7 @@ export interface EC2Service { getDefaultCreditSpecification( args: GetDefaultCreditSpecificationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetDefaultCreditSpecificationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetEbsDefaultKmsKeyIdCommand} @@ -7222,10 +5959,7 @@ export interface EC2Service { getEbsDefaultKmsKeyId( args: GetEbsDefaultKmsKeyIdRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetEbsDefaultKmsKeyIdResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetEbsEncryptionByDefaultCommand} @@ -7233,10 +5967,7 @@ export interface EC2Service { getEbsEncryptionByDefault( args: GetEbsEncryptionByDefaultRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetEbsEncryptionByDefaultResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetFlowLogsIntegrationTemplateCommand} @@ -7244,10 +5975,7 @@ export interface EC2Service { getFlowLogsIntegrationTemplate( args: GetFlowLogsIntegrationTemplateRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetFlowLogsIntegrationTemplateResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetGroupsForCapacityReservationCommand} @@ -7255,10 +5983,7 @@ export interface EC2Service { getGroupsForCapacityReservation( args: GetGroupsForCapacityReservationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetGroupsForCapacityReservationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetHostReservationPurchasePreviewCommand} @@ -7266,10 +5991,7 @@ export interface EC2Service { getHostReservationPurchasePreview( args: GetHostReservationPurchasePreviewRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetHostReservationPurchasePreviewResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetImageBlockPublicAccessStateCommand} @@ -7277,10 +5999,7 @@ export interface EC2Service { getImageBlockPublicAccessState( args: GetImageBlockPublicAccessStateRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetImageBlockPublicAccessStateResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetInstanceMetadataDefaultsCommand} @@ -7288,10 +6007,7 @@ export interface EC2Service { getInstanceMetadataDefaults( args: GetInstanceMetadataDefaultsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetInstanceMetadataDefaultsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetInstanceTypesFromInstanceRequirementsCommand} @@ -7299,10 +6015,7 @@ export interface EC2Service { getInstanceTypesFromInstanceRequirements( args: GetInstanceTypesFromInstanceRequirementsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetInstanceTypesFromInstanceRequirementsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetInstanceUefiDataCommand} @@ -7310,10 +6023,7 @@ export interface EC2Service { getInstanceUefiData( args: GetInstanceUefiDataRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetInstanceUefiDataResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetIpamAddressHistoryCommand} @@ -7321,10 +6031,7 @@ export interface EC2Service { getIpamAddressHistory( args: GetIpamAddressHistoryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetIpamAddressHistoryResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetIpamDiscoveredAccountsCommand} @@ -7332,10 +6039,7 @@ export interface EC2Service { getIpamDiscoveredAccounts( args: GetIpamDiscoveredAccountsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetIpamDiscoveredAccountsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetIpamDiscoveredPublicAddressesCommand} @@ -7343,10 +6047,7 @@ export interface EC2Service { getIpamDiscoveredPublicAddresses( args: GetIpamDiscoveredPublicAddressesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetIpamDiscoveredPublicAddressesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetIpamDiscoveredResourceCidrsCommand} @@ -7354,10 +6055,7 @@ export interface EC2Service { getIpamDiscoveredResourceCidrs( args: GetIpamDiscoveredResourceCidrsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetIpamDiscoveredResourceCidrsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetIpamPoolAllocationsCommand} @@ -7365,10 +6063,7 @@ export interface EC2Service { getIpamPoolAllocations( args: GetIpamPoolAllocationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetIpamPoolAllocationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetIpamPoolCidrsCommand} @@ -7376,10 +6071,7 @@ export interface EC2Service { getIpamPoolCidrs( args: GetIpamPoolCidrsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetIpamPoolCidrsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetIpamResourceCidrsCommand} @@ -7387,10 +6079,7 @@ export interface EC2Service { getIpamResourceCidrs( args: GetIpamResourceCidrsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetIpamResourceCidrsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetLaunchTemplateDataCommand} @@ -7398,10 +6087,7 @@ export interface EC2Service { getLaunchTemplateData( args: GetLaunchTemplateDataRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetLaunchTemplateDataResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetManagedPrefixListAssociationsCommand} @@ -7409,10 +6095,7 @@ export interface EC2Service { getManagedPrefixListAssociations( args: GetManagedPrefixListAssociationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetManagedPrefixListAssociationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetManagedPrefixListEntriesCommand} @@ -7420,10 +6103,7 @@ export interface EC2Service { getManagedPrefixListEntries( args: GetManagedPrefixListEntriesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetManagedPrefixListEntriesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetNetworkInsightsAccessScopeAnalysisFindingsCommand} @@ -7432,9 +6112,9 @@ export interface EC2Service { args: GetNetworkInsightsAccessScopeAnalysisFindingsRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - GetNetworkInsightsAccessScopeAnalysisFindingsResult, - | SdkError - > + GetNetworkInsightsAccessScopeAnalysisFindingsResult, + SdkError + >; /** * @see {@link GetNetworkInsightsAccessScopeContentCommand} @@ -7442,10 +6122,7 @@ export interface EC2Service { getNetworkInsightsAccessScopeContent( args: GetNetworkInsightsAccessScopeContentRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetNetworkInsightsAccessScopeContentResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetPasswordDataCommand} @@ -7453,10 +6130,7 @@ export interface EC2Service { getPasswordData( args: GetPasswordDataRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetPasswordDataResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetReservedInstancesExchangeQuoteCommand} @@ -7464,10 +6138,7 @@ export interface EC2Service { getReservedInstancesExchangeQuote( args: GetReservedInstancesExchangeQuoteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetReservedInstancesExchangeQuoteResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetSecurityGroupsForVpcCommand} @@ -7475,10 +6146,7 @@ export interface EC2Service { getSecurityGroupsForVpc( args: GetSecurityGroupsForVpcRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetSecurityGroupsForVpcResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetSerialConsoleAccessStatusCommand} @@ -7486,10 +6154,7 @@ export interface EC2Service { getSerialConsoleAccessStatus( args: GetSerialConsoleAccessStatusRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetSerialConsoleAccessStatusResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetSnapshotBlockPublicAccessStateCommand} @@ -7497,10 +6162,7 @@ export interface EC2Service { getSnapshotBlockPublicAccessState( args: GetSnapshotBlockPublicAccessStateRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetSnapshotBlockPublicAccessStateResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetSpotPlacementScoresCommand} @@ -7508,10 +6170,7 @@ export interface EC2Service { getSpotPlacementScores( args: GetSpotPlacementScoresRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetSpotPlacementScoresResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetSubnetCidrReservationsCommand} @@ -7519,10 +6178,7 @@ export interface EC2Service { getSubnetCidrReservations( args: GetSubnetCidrReservationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetSubnetCidrReservationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetTransitGatewayAttachmentPropagationsCommand} @@ -7530,10 +6186,7 @@ export interface EC2Service { getTransitGatewayAttachmentPropagations( args: GetTransitGatewayAttachmentPropagationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetTransitGatewayAttachmentPropagationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetTransitGatewayMulticastDomainAssociationsCommand} @@ -7542,9 +6195,9 @@ export interface EC2Service { args: GetTransitGatewayMulticastDomainAssociationsRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - GetTransitGatewayMulticastDomainAssociationsResult, - | SdkError - > + GetTransitGatewayMulticastDomainAssociationsResult, + SdkError + >; /** * @see {@link GetTransitGatewayPolicyTableAssociationsCommand} @@ -7552,10 +6205,7 @@ export interface EC2Service { getTransitGatewayPolicyTableAssociations( args: GetTransitGatewayPolicyTableAssociationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetTransitGatewayPolicyTableAssociationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetTransitGatewayPolicyTableEntriesCommand} @@ -7563,10 +6213,7 @@ export interface EC2Service { getTransitGatewayPolicyTableEntries( args: GetTransitGatewayPolicyTableEntriesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetTransitGatewayPolicyTableEntriesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetTransitGatewayPrefixListReferencesCommand} @@ -7574,10 +6221,7 @@ export interface EC2Service { getTransitGatewayPrefixListReferences( args: GetTransitGatewayPrefixListReferencesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetTransitGatewayPrefixListReferencesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetTransitGatewayRouteTableAssociationsCommand} @@ -7585,10 +6229,7 @@ export interface EC2Service { getTransitGatewayRouteTableAssociations( args: GetTransitGatewayRouteTableAssociationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetTransitGatewayRouteTableAssociationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetTransitGatewayRouteTablePropagationsCommand} @@ -7596,10 +6237,7 @@ export interface EC2Service { getTransitGatewayRouteTablePropagations( args: GetTransitGatewayRouteTablePropagationsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetTransitGatewayRouteTablePropagationsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetVerifiedAccessEndpointPolicyCommand} @@ -7607,10 +6245,7 @@ export interface EC2Service { getVerifiedAccessEndpointPolicy( args: GetVerifiedAccessEndpointPolicyRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetVerifiedAccessEndpointPolicyResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetVerifiedAccessGroupPolicyCommand} @@ -7618,10 +6253,7 @@ export interface EC2Service { getVerifiedAccessGroupPolicy( args: GetVerifiedAccessGroupPolicyRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetVerifiedAccessGroupPolicyResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetVpnConnectionDeviceSampleConfigurationCommand} @@ -7629,10 +6261,7 @@ export interface EC2Service { getVpnConnectionDeviceSampleConfiguration( args: GetVpnConnectionDeviceSampleConfigurationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetVpnConnectionDeviceSampleConfigurationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetVpnConnectionDeviceTypesCommand} @@ -7640,10 +6269,7 @@ export interface EC2Service { getVpnConnectionDeviceTypes( args: GetVpnConnectionDeviceTypesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetVpnConnectionDeviceTypesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link GetVpnTunnelReplacementStatusCommand} @@ -7651,10 +6277,7 @@ export interface EC2Service { getVpnTunnelReplacementStatus( args: GetVpnTunnelReplacementStatusRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - GetVpnTunnelReplacementStatusResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ImportClientVpnClientCertificateRevocationListCommand} @@ -7663,9 +6286,9 @@ export interface EC2Service { args: ImportClientVpnClientCertificateRevocationListRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - ImportClientVpnClientCertificateRevocationListResult, - | SdkError - > + ImportClientVpnClientCertificateRevocationListResult, + SdkError + >; /** * @see {@link ImportImageCommand} @@ -7673,10 +6296,7 @@ export interface EC2Service { importImage( args: ImportImageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ImportImageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ImportInstanceCommand} @@ -7684,10 +6304,7 @@ export interface EC2Service { importInstance( args: ImportInstanceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ImportInstanceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ImportKeyPairCommand} @@ -7695,10 +6312,7 @@ export interface EC2Service { importKeyPair( args: ImportKeyPairRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ImportKeyPairResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ImportSnapshotCommand} @@ -7706,10 +6320,7 @@ export interface EC2Service { importSnapshot( args: ImportSnapshotRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ImportSnapshotResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ImportVolumeCommand} @@ -7717,10 +6328,7 @@ export interface EC2Service { importVolume( args: ImportVolumeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ImportVolumeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ListImagesInRecycleBinCommand} @@ -7728,10 +6336,7 @@ export interface EC2Service { listImagesInRecycleBin( args: ListImagesInRecycleBinRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ListImagesInRecycleBinResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ListSnapshotsInRecycleBinCommand} @@ -7739,10 +6344,7 @@ export interface EC2Service { listSnapshotsInRecycleBin( args: ListSnapshotsInRecycleBinRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ListSnapshotsInRecycleBinResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link LockSnapshotCommand} @@ -7750,10 +6352,7 @@ export interface EC2Service { lockSnapshot( args: LockSnapshotRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - LockSnapshotResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyAddressAttributeCommand} @@ -7761,10 +6360,7 @@ export interface EC2Service { modifyAddressAttribute( args: ModifyAddressAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyAddressAttributeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyAvailabilityZoneGroupCommand} @@ -7772,10 +6368,7 @@ export interface EC2Service { modifyAvailabilityZoneGroup( args: ModifyAvailabilityZoneGroupRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyAvailabilityZoneGroupResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyCapacityReservationCommand} @@ -7783,10 +6376,7 @@ export interface EC2Service { modifyCapacityReservation( args: ModifyCapacityReservationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyCapacityReservationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyCapacityReservationFleetCommand} @@ -7794,10 +6384,7 @@ export interface EC2Service { modifyCapacityReservationFleet( args: ModifyCapacityReservationFleetRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyCapacityReservationFleetResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyClientVpnEndpointCommand} @@ -7805,10 +6392,7 @@ export interface EC2Service { modifyClientVpnEndpoint( args: ModifyClientVpnEndpointRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyClientVpnEndpointResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyDefaultCreditSpecificationCommand} @@ -7816,10 +6400,7 @@ export interface EC2Service { modifyDefaultCreditSpecification( args: ModifyDefaultCreditSpecificationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyDefaultCreditSpecificationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyEbsDefaultKmsKeyIdCommand} @@ -7827,10 +6408,7 @@ export interface EC2Service { modifyEbsDefaultKmsKeyId( args: ModifyEbsDefaultKmsKeyIdRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyEbsDefaultKmsKeyIdResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyFleetCommand} @@ -7838,10 +6416,7 @@ export interface EC2Service { modifyFleet( args: ModifyFleetRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyFleetResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyFpgaImageAttributeCommand} @@ -7849,10 +6424,7 @@ export interface EC2Service { modifyFpgaImageAttribute( args: ModifyFpgaImageAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyFpgaImageAttributeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyHostsCommand} @@ -7860,10 +6432,7 @@ export interface EC2Service { modifyHosts( args: ModifyHostsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyHostsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyIdFormatCommand} @@ -7871,10 +6440,7 @@ export interface EC2Service { modifyIdFormat( args: ModifyIdFormatRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyIdentityIdFormatCommand} @@ -7882,10 +6448,7 @@ export interface EC2Service { modifyIdentityIdFormat( args: ModifyIdentityIdFormatRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyImageAttributeCommand} @@ -7893,10 +6456,7 @@ export interface EC2Service { modifyImageAttribute( args: ModifyImageAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyInstanceAttributeCommand} @@ -7904,10 +6464,7 @@ export interface EC2Service { modifyInstanceAttribute( args: ModifyInstanceAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyInstanceCapacityReservationAttributesCommand} @@ -7915,10 +6472,7 @@ export interface EC2Service { modifyInstanceCapacityReservationAttributes( args: ModifyInstanceCapacityReservationAttributesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyInstanceCapacityReservationAttributesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyInstanceCreditSpecificationCommand} @@ -7926,10 +6480,7 @@ export interface EC2Service { modifyInstanceCreditSpecification( args: ModifyInstanceCreditSpecificationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyInstanceCreditSpecificationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyInstanceEventStartTimeCommand} @@ -7937,10 +6488,7 @@ export interface EC2Service { modifyInstanceEventStartTime( args: ModifyInstanceEventStartTimeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyInstanceEventStartTimeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyInstanceEventWindowCommand} @@ -7948,10 +6496,7 @@ export interface EC2Service { modifyInstanceEventWindow( args: ModifyInstanceEventWindowRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyInstanceEventWindowResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyInstanceMaintenanceOptionsCommand} @@ -7959,10 +6504,7 @@ export interface EC2Service { modifyInstanceMaintenanceOptions( args: ModifyInstanceMaintenanceOptionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyInstanceMaintenanceOptionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyInstanceMetadataDefaultsCommand} @@ -7970,10 +6512,7 @@ export interface EC2Service { modifyInstanceMetadataDefaults( args: ModifyInstanceMetadataDefaultsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyInstanceMetadataDefaultsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyInstanceMetadataOptionsCommand} @@ -7981,10 +6520,7 @@ export interface EC2Service { modifyInstanceMetadataOptions( args: ModifyInstanceMetadataOptionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyInstanceMetadataOptionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyInstancePlacementCommand} @@ -7992,10 +6528,7 @@ export interface EC2Service { modifyInstancePlacement( args: ModifyInstancePlacementRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyInstancePlacementResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyIpamCommand} @@ -8003,10 +6536,7 @@ export interface EC2Service { modifyIpam( args: ModifyIpamRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyIpamResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyIpamPoolCommand} @@ -8014,10 +6544,7 @@ export interface EC2Service { modifyIpamPool( args: ModifyIpamPoolRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyIpamPoolResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyIpamResourceCidrCommand} @@ -8025,10 +6552,7 @@ export interface EC2Service { modifyIpamResourceCidr( args: ModifyIpamResourceCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyIpamResourceCidrResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyIpamResourceDiscoveryCommand} @@ -8036,10 +6560,7 @@ export interface EC2Service { modifyIpamResourceDiscovery( args: ModifyIpamResourceDiscoveryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyIpamResourceDiscoveryResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyIpamScopeCommand} @@ -8047,10 +6568,7 @@ export interface EC2Service { modifyIpamScope( args: ModifyIpamScopeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyIpamScopeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyLaunchTemplateCommand} @@ -8058,10 +6576,7 @@ export interface EC2Service { modifyLaunchTemplate( args: ModifyLaunchTemplateRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyLaunchTemplateResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyLocalGatewayRouteCommand} @@ -8069,10 +6584,7 @@ export interface EC2Service { modifyLocalGatewayRoute( args: ModifyLocalGatewayRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyLocalGatewayRouteResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyManagedPrefixListCommand} @@ -8080,10 +6592,7 @@ export interface EC2Service { modifyManagedPrefixList( args: ModifyManagedPrefixListRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyManagedPrefixListResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyNetworkInterfaceAttributeCommand} @@ -8091,10 +6600,7 @@ export interface EC2Service { modifyNetworkInterfaceAttribute( args: ModifyNetworkInterfaceAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyPrivateDnsNameOptionsCommand} @@ -8102,10 +6608,7 @@ export interface EC2Service { modifyPrivateDnsNameOptions( args: ModifyPrivateDnsNameOptionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyPrivateDnsNameOptionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyReservedInstancesCommand} @@ -8113,10 +6616,7 @@ export interface EC2Service { modifyReservedInstances( args: ModifyReservedInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyReservedInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifySecurityGroupRulesCommand} @@ -8124,10 +6624,7 @@ export interface EC2Service { modifySecurityGroupRules( args: ModifySecurityGroupRulesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifySecurityGroupRulesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifySnapshotAttributeCommand} @@ -8135,10 +6632,7 @@ export interface EC2Service { modifySnapshotAttribute( args: ModifySnapshotAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifySnapshotTierCommand} @@ -8146,10 +6640,7 @@ export interface EC2Service { modifySnapshotTier( args: ModifySnapshotTierRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifySnapshotTierResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifySpotFleetRequestCommand} @@ -8157,10 +6648,7 @@ export interface EC2Service { modifySpotFleetRequest( args: ModifySpotFleetRequestRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifySpotFleetRequestResponse, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifySubnetAttributeCommand} @@ -8168,10 +6656,7 @@ export interface EC2Service { modifySubnetAttribute( args: ModifySubnetAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyTrafficMirrorFilterNetworkServicesCommand} @@ -8179,10 +6664,7 @@ export interface EC2Service { modifyTrafficMirrorFilterNetworkServices( args: ModifyTrafficMirrorFilterNetworkServicesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyTrafficMirrorFilterNetworkServicesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyTrafficMirrorFilterRuleCommand} @@ -8190,10 +6672,7 @@ export interface EC2Service { modifyTrafficMirrorFilterRule( args: ModifyTrafficMirrorFilterRuleRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyTrafficMirrorFilterRuleResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyTrafficMirrorSessionCommand} @@ -8201,10 +6680,7 @@ export interface EC2Service { modifyTrafficMirrorSession( args: ModifyTrafficMirrorSessionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyTrafficMirrorSessionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyTransitGatewayCommand} @@ -8212,10 +6688,7 @@ export interface EC2Service { modifyTransitGateway( args: ModifyTransitGatewayRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyTransitGatewayResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyTransitGatewayPrefixListReferenceCommand} @@ -8223,10 +6696,7 @@ export interface EC2Service { modifyTransitGatewayPrefixListReference( args: ModifyTransitGatewayPrefixListReferenceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyTransitGatewayPrefixListReferenceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyTransitGatewayVpcAttachmentCommand} @@ -8234,10 +6704,7 @@ export interface EC2Service { modifyTransitGatewayVpcAttachment( args: ModifyTransitGatewayVpcAttachmentRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyTransitGatewayVpcAttachmentResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVerifiedAccessEndpointCommand} @@ -8245,10 +6712,7 @@ export interface EC2Service { modifyVerifiedAccessEndpoint( args: ModifyVerifiedAccessEndpointRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVerifiedAccessEndpointResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVerifiedAccessEndpointPolicyCommand} @@ -8256,10 +6720,7 @@ export interface EC2Service { modifyVerifiedAccessEndpointPolicy( args: ModifyVerifiedAccessEndpointPolicyRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVerifiedAccessEndpointPolicyResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVerifiedAccessGroupCommand} @@ -8267,10 +6728,7 @@ export interface EC2Service { modifyVerifiedAccessGroup( args: ModifyVerifiedAccessGroupRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVerifiedAccessGroupResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVerifiedAccessGroupPolicyCommand} @@ -8278,10 +6736,7 @@ export interface EC2Service { modifyVerifiedAccessGroupPolicy( args: ModifyVerifiedAccessGroupPolicyRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVerifiedAccessGroupPolicyResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVerifiedAccessInstanceCommand} @@ -8289,10 +6744,7 @@ export interface EC2Service { modifyVerifiedAccessInstance( args: ModifyVerifiedAccessInstanceRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVerifiedAccessInstanceResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVerifiedAccessInstanceLoggingConfigurationCommand} @@ -8301,9 +6753,9 @@ export interface EC2Service { args: ModifyVerifiedAccessInstanceLoggingConfigurationRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - ModifyVerifiedAccessInstanceLoggingConfigurationResult, - | SdkError - > + ModifyVerifiedAccessInstanceLoggingConfigurationResult, + SdkError + >; /** * @see {@link ModifyVerifiedAccessTrustProviderCommand} @@ -8311,10 +6763,7 @@ export interface EC2Service { modifyVerifiedAccessTrustProvider( args: ModifyVerifiedAccessTrustProviderRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVerifiedAccessTrustProviderResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVolumeCommand} @@ -8322,10 +6771,7 @@ export interface EC2Service { modifyVolume( args: ModifyVolumeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVolumeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVolumeAttributeCommand} @@ -8333,10 +6779,7 @@ export interface EC2Service { modifyVolumeAttribute( args: ModifyVolumeAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpcAttributeCommand} @@ -8344,10 +6787,7 @@ export interface EC2Service { modifyVpcAttribute( args: ModifyVpcAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpcEndpointCommand} @@ -8355,10 +6795,7 @@ export interface EC2Service { modifyVpcEndpoint( args: ModifyVpcEndpointRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVpcEndpointResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpcEndpointConnectionNotificationCommand} @@ -8366,10 +6803,7 @@ export interface EC2Service { modifyVpcEndpointConnectionNotification( args: ModifyVpcEndpointConnectionNotificationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVpcEndpointConnectionNotificationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpcEndpointServiceConfigurationCommand} @@ -8377,10 +6811,7 @@ export interface EC2Service { modifyVpcEndpointServiceConfiguration( args: ModifyVpcEndpointServiceConfigurationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVpcEndpointServiceConfigurationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpcEndpointServicePayerResponsibilityCommand} @@ -8388,10 +6819,7 @@ export interface EC2Service { modifyVpcEndpointServicePayerResponsibility( args: ModifyVpcEndpointServicePayerResponsibilityRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVpcEndpointServicePayerResponsibilityResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpcEndpointServicePermissionsCommand} @@ -8399,10 +6827,7 @@ export interface EC2Service { modifyVpcEndpointServicePermissions( args: ModifyVpcEndpointServicePermissionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVpcEndpointServicePermissionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpcPeeringConnectionOptionsCommand} @@ -8410,10 +6835,7 @@ export interface EC2Service { modifyVpcPeeringConnectionOptions( args: ModifyVpcPeeringConnectionOptionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVpcPeeringConnectionOptionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpcTenancyCommand} @@ -8421,10 +6843,7 @@ export interface EC2Service { modifyVpcTenancy( args: ModifyVpcTenancyRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVpcTenancyResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpnConnectionCommand} @@ -8432,10 +6851,7 @@ export interface EC2Service { modifyVpnConnection( args: ModifyVpnConnectionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVpnConnectionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpnConnectionOptionsCommand} @@ -8443,10 +6859,7 @@ export interface EC2Service { modifyVpnConnectionOptions( args: ModifyVpnConnectionOptionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVpnConnectionOptionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpnTunnelCertificateCommand} @@ -8454,10 +6867,7 @@ export interface EC2Service { modifyVpnTunnelCertificate( args: ModifyVpnTunnelCertificateRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVpnTunnelCertificateResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ModifyVpnTunnelOptionsCommand} @@ -8465,10 +6875,7 @@ export interface EC2Service { modifyVpnTunnelOptions( args: ModifyVpnTunnelOptionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ModifyVpnTunnelOptionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link MonitorInstancesCommand} @@ -8476,10 +6883,7 @@ export interface EC2Service { monitorInstances( args: MonitorInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - MonitorInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link MoveAddressToVpcCommand} @@ -8487,10 +6891,7 @@ export interface EC2Service { moveAddressToVpc( args: MoveAddressToVpcRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - MoveAddressToVpcResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link MoveByoipCidrToIpamCommand} @@ -8498,10 +6899,7 @@ export interface EC2Service { moveByoipCidrToIpam( args: MoveByoipCidrToIpamRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - MoveByoipCidrToIpamResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ProvisionByoipCidrCommand} @@ -8509,10 +6907,7 @@ export interface EC2Service { provisionByoipCidr( args: ProvisionByoipCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ProvisionByoipCidrResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ProvisionIpamByoasnCommand} @@ -8520,10 +6915,7 @@ export interface EC2Service { provisionIpamByoasn( args: ProvisionIpamByoasnRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ProvisionIpamByoasnResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ProvisionIpamPoolCidrCommand} @@ -8531,10 +6923,7 @@ export interface EC2Service { provisionIpamPoolCidr( args: ProvisionIpamPoolCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ProvisionIpamPoolCidrResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ProvisionPublicIpv4PoolCidrCommand} @@ -8542,10 +6931,7 @@ export interface EC2Service { provisionPublicIpv4PoolCidr( args: ProvisionPublicIpv4PoolCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ProvisionPublicIpv4PoolCidrResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link PurchaseCapacityBlockCommand} @@ -8553,10 +6939,7 @@ export interface EC2Service { purchaseCapacityBlock( args: PurchaseCapacityBlockRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - PurchaseCapacityBlockResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link PurchaseHostReservationCommand} @@ -8564,10 +6947,7 @@ export interface EC2Service { purchaseHostReservation( args: PurchaseHostReservationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - PurchaseHostReservationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link PurchaseReservedInstancesOfferingCommand} @@ -8575,10 +6955,7 @@ export interface EC2Service { purchaseReservedInstancesOffering( args: PurchaseReservedInstancesOfferingRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - PurchaseReservedInstancesOfferingResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link PurchaseScheduledInstancesCommand} @@ -8586,10 +6963,7 @@ export interface EC2Service { purchaseScheduledInstances( args: PurchaseScheduledInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - PurchaseScheduledInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RebootInstancesCommand} @@ -8597,10 +6971,7 @@ export interface EC2Service { rebootInstances( args: RebootInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link RegisterImageCommand} @@ -8608,10 +6979,7 @@ export interface EC2Service { registerImage( args: RegisterImageRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RegisterImageResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RegisterInstanceEventNotificationAttributesCommand} @@ -8619,10 +6987,7 @@ export interface EC2Service { registerInstanceEventNotificationAttributes( args: RegisterInstanceEventNotificationAttributesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RegisterInstanceEventNotificationAttributesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RegisterTransitGatewayMulticastGroupMembersCommand} @@ -8630,10 +6995,7 @@ export interface EC2Service { registerTransitGatewayMulticastGroupMembers( args: RegisterTransitGatewayMulticastGroupMembersRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RegisterTransitGatewayMulticastGroupMembersResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RegisterTransitGatewayMulticastGroupSourcesCommand} @@ -8641,10 +7003,7 @@ export interface EC2Service { registerTransitGatewayMulticastGroupSources( args: RegisterTransitGatewayMulticastGroupSourcesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RegisterTransitGatewayMulticastGroupSourcesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RejectTransitGatewayMulticastDomainAssociationsCommand} @@ -8653,9 +7012,9 @@ export interface EC2Service { args: RejectTransitGatewayMulticastDomainAssociationsRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - RejectTransitGatewayMulticastDomainAssociationsResult, - | SdkError - > + RejectTransitGatewayMulticastDomainAssociationsResult, + SdkError + >; /** * @see {@link RejectTransitGatewayPeeringAttachmentCommand} @@ -8663,10 +7022,7 @@ export interface EC2Service { rejectTransitGatewayPeeringAttachment( args: RejectTransitGatewayPeeringAttachmentRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RejectTransitGatewayPeeringAttachmentResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RejectTransitGatewayVpcAttachmentCommand} @@ -8674,10 +7030,7 @@ export interface EC2Service { rejectTransitGatewayVpcAttachment( args: RejectTransitGatewayVpcAttachmentRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RejectTransitGatewayVpcAttachmentResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RejectVpcEndpointConnectionsCommand} @@ -8685,10 +7038,7 @@ export interface EC2Service { rejectVpcEndpointConnections( args: RejectVpcEndpointConnectionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RejectVpcEndpointConnectionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RejectVpcPeeringConnectionCommand} @@ -8696,10 +7046,7 @@ export interface EC2Service { rejectVpcPeeringConnection( args: RejectVpcPeeringConnectionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RejectVpcPeeringConnectionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ReleaseAddressCommand} @@ -8707,10 +7054,7 @@ export interface EC2Service { releaseAddress( args: ReleaseAddressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ReleaseHostsCommand} @@ -8718,10 +7062,7 @@ export interface EC2Service { releaseHosts( args: ReleaseHostsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ReleaseHostsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ReleaseIpamPoolAllocationCommand} @@ -8729,10 +7070,7 @@ export interface EC2Service { releaseIpamPoolAllocation( args: ReleaseIpamPoolAllocationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ReleaseIpamPoolAllocationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ReplaceIamInstanceProfileAssociationCommand} @@ -8740,10 +7078,7 @@ export interface EC2Service { replaceIamInstanceProfileAssociation( args: ReplaceIamInstanceProfileAssociationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ReplaceIamInstanceProfileAssociationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ReplaceNetworkAclAssociationCommand} @@ -8751,10 +7086,7 @@ export interface EC2Service { replaceNetworkAclAssociation( args: ReplaceNetworkAclAssociationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ReplaceNetworkAclAssociationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ReplaceNetworkAclEntryCommand} @@ -8762,10 +7094,7 @@ export interface EC2Service { replaceNetworkAclEntry( args: ReplaceNetworkAclEntryRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ReplaceRouteCommand} @@ -8773,10 +7102,7 @@ export interface EC2Service { replaceRoute( args: ReplaceRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ReplaceRouteTableAssociationCommand} @@ -8784,10 +7110,7 @@ export interface EC2Service { replaceRouteTableAssociation( args: ReplaceRouteTableAssociationRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ReplaceRouteTableAssociationResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ReplaceTransitGatewayRouteCommand} @@ -8795,10 +7118,7 @@ export interface EC2Service { replaceTransitGatewayRoute( args: ReplaceTransitGatewayRouteRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ReplaceTransitGatewayRouteResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ReplaceVpnTunnelCommand} @@ -8806,10 +7126,7 @@ export interface EC2Service { replaceVpnTunnel( args: ReplaceVpnTunnelRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ReplaceVpnTunnelResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ReportInstanceStatusCommand} @@ -8817,10 +7134,7 @@ export interface EC2Service { reportInstanceStatus( args: ReportInstanceStatusRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link RequestSpotFleetCommand} @@ -8828,10 +7142,7 @@ export interface EC2Service { requestSpotFleet( args: RequestSpotFleetRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RequestSpotFleetResponse, - | SdkError - > + ): Effect.Effect; /** * @see {@link RequestSpotInstancesCommand} @@ -8839,10 +7150,7 @@ export interface EC2Service { requestSpotInstances( args: RequestSpotInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RequestSpotInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ResetAddressAttributeCommand} @@ -8850,10 +7158,7 @@ export interface EC2Service { resetAddressAttribute( args: ResetAddressAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ResetAddressAttributeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ResetEbsDefaultKmsKeyIdCommand} @@ -8861,10 +7166,7 @@ export interface EC2Service { resetEbsDefaultKmsKeyId( args: ResetEbsDefaultKmsKeyIdRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ResetEbsDefaultKmsKeyIdResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ResetFpgaImageAttributeCommand} @@ -8872,10 +7174,7 @@ export interface EC2Service { resetFpgaImageAttribute( args: ResetFpgaImageAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - ResetFpgaImageAttributeResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link ResetImageAttributeCommand} @@ -8883,10 +7182,7 @@ export interface EC2Service { resetImageAttribute( args: ResetImageAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ResetInstanceAttributeCommand} @@ -8894,10 +7190,7 @@ export interface EC2Service { resetInstanceAttribute( args: ResetInstanceAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ResetNetworkInterfaceAttributeCommand} @@ -8905,10 +7198,7 @@ export interface EC2Service { resetNetworkInterfaceAttribute( args: ResetNetworkInterfaceAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link ResetSnapshotAttributeCommand} @@ -8916,10 +7206,7 @@ export interface EC2Service { resetSnapshotAttribute( args: ResetSnapshotAttributeRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link RestoreAddressToClassicCommand} @@ -8927,10 +7214,7 @@ export interface EC2Service { restoreAddressToClassic( args: RestoreAddressToClassicRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RestoreAddressToClassicResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RestoreImageFromRecycleBinCommand} @@ -8938,10 +7222,7 @@ export interface EC2Service { restoreImageFromRecycleBin( args: RestoreImageFromRecycleBinRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RestoreImageFromRecycleBinResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RestoreManagedPrefixListVersionCommand} @@ -8949,10 +7230,7 @@ export interface EC2Service { restoreManagedPrefixListVersion( args: RestoreManagedPrefixListVersionRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RestoreManagedPrefixListVersionResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RestoreSnapshotFromRecycleBinCommand} @@ -8960,10 +7238,7 @@ export interface EC2Service { restoreSnapshotFromRecycleBin( args: RestoreSnapshotFromRecycleBinRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RestoreSnapshotFromRecycleBinResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RestoreSnapshotTierCommand} @@ -8971,10 +7246,7 @@ export interface EC2Service { restoreSnapshotTier( args: RestoreSnapshotTierRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RestoreSnapshotTierResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RevokeClientVpnIngressCommand} @@ -8982,10 +7254,7 @@ export interface EC2Service { revokeClientVpnIngress( args: RevokeClientVpnIngressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RevokeClientVpnIngressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RevokeSecurityGroupEgressCommand} @@ -8993,10 +7262,7 @@ export interface EC2Service { revokeSecurityGroupEgress( args: RevokeSecurityGroupEgressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RevokeSecurityGroupEgressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RevokeSecurityGroupIngressCommand} @@ -9004,10 +7270,7 @@ export interface EC2Service { revokeSecurityGroupIngress( args: RevokeSecurityGroupIngressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RevokeSecurityGroupIngressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link RunInstancesCommand} @@ -9015,10 +7278,7 @@ export interface EC2Service { runInstances( args: RunInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - Reservation, - | SdkError - > + ): Effect.Effect; /** * @see {@link RunScheduledInstancesCommand} @@ -9026,10 +7286,7 @@ export interface EC2Service { runScheduledInstances( args: RunScheduledInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - RunScheduledInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link SearchLocalGatewayRoutesCommand} @@ -9037,10 +7294,7 @@ export interface EC2Service { searchLocalGatewayRoutes( args: SearchLocalGatewayRoutesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - SearchLocalGatewayRoutesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link SearchTransitGatewayMulticastGroupsCommand} @@ -9048,10 +7302,7 @@ export interface EC2Service { searchTransitGatewayMulticastGroups( args: SearchTransitGatewayMulticastGroupsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - SearchTransitGatewayMulticastGroupsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link SearchTransitGatewayRoutesCommand} @@ -9059,10 +7310,7 @@ export interface EC2Service { searchTransitGatewayRoutes( args: SearchTransitGatewayRoutesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - SearchTransitGatewayRoutesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link SendDiagnosticInterruptCommand} @@ -9070,10 +7318,7 @@ export interface EC2Service { sendDiagnosticInterrupt( args: SendDiagnosticInterruptRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link StartInstancesCommand} @@ -9081,10 +7326,7 @@ export interface EC2Service { startInstances( args: StartInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - StartInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link StartNetworkInsightsAccessScopeAnalysisCommand} @@ -9092,10 +7334,7 @@ export interface EC2Service { startNetworkInsightsAccessScopeAnalysis( args: StartNetworkInsightsAccessScopeAnalysisRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - StartNetworkInsightsAccessScopeAnalysisResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link StartNetworkInsightsAnalysisCommand} @@ -9103,10 +7342,7 @@ export interface EC2Service { startNetworkInsightsAnalysis( args: StartNetworkInsightsAnalysisRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - StartNetworkInsightsAnalysisResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link StartVpcEndpointServicePrivateDnsVerificationCommand} @@ -9115,9 +7351,9 @@ export interface EC2Service { args: StartVpcEndpointServicePrivateDnsVerificationRequest, options?: __HttpHandlerOptions, ): Effect.Effect< - StartVpcEndpointServicePrivateDnsVerificationResult, - | SdkError - > + StartVpcEndpointServicePrivateDnsVerificationResult, + SdkError + >; /** * @see {@link StopInstancesCommand} @@ -9125,10 +7361,7 @@ export interface EC2Service { stopInstances( args: StopInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - StopInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link TerminateClientVpnConnectionsCommand} @@ -9136,10 +7369,7 @@ export interface EC2Service { terminateClientVpnConnections( args: TerminateClientVpnConnectionsRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - TerminateClientVpnConnectionsResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link TerminateInstancesCommand} @@ -9147,10 +7377,7 @@ export interface EC2Service { terminateInstances( args: TerminateInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - TerminateInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link UnassignIpv6AddressesCommand} @@ -9158,10 +7385,7 @@ export interface EC2Service { unassignIpv6Addresses( args: UnassignIpv6AddressesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - UnassignIpv6AddressesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link UnassignPrivateIpAddressesCommand} @@ -9169,10 +7393,7 @@ export interface EC2Service { unassignPrivateIpAddresses( args: UnassignPrivateIpAddressesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - void, - | SdkError - > + ): Effect.Effect; /** * @see {@link UnassignPrivateNatGatewayAddressCommand} @@ -9180,10 +7401,7 @@ export interface EC2Service { unassignPrivateNatGatewayAddress( args: UnassignPrivateNatGatewayAddressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - UnassignPrivateNatGatewayAddressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link UnlockSnapshotCommand} @@ -9191,10 +7409,7 @@ export interface EC2Service { unlockSnapshot( args: UnlockSnapshotRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - UnlockSnapshotResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link UnmonitorInstancesCommand} @@ -9202,10 +7417,7 @@ export interface EC2Service { unmonitorInstances( args: UnmonitorInstancesRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - UnmonitorInstancesResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link UpdateSecurityGroupRuleDescriptionsEgressCommand} @@ -9213,10 +7425,7 @@ export interface EC2Service { updateSecurityGroupRuleDescriptionsEgress( args: UpdateSecurityGroupRuleDescriptionsEgressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - UpdateSecurityGroupRuleDescriptionsEgressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link UpdateSecurityGroupRuleDescriptionsIngressCommand} @@ -9224,10 +7433,7 @@ export interface EC2Service { updateSecurityGroupRuleDescriptionsIngress( args: UpdateSecurityGroupRuleDescriptionsIngressRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - UpdateSecurityGroupRuleDescriptionsIngressResult, - | SdkError - > + ): Effect.Effect; /** * @see {@link WithdrawByoipCidrCommand} @@ -9235,10 +7441,7 @@ export interface EC2Service { withdrawByoipCidr( args: WithdrawByoipCidrRequest, options?: __HttpHandlerOptions, - ): Effect.Effect< - WithdrawByoipCidrResult, - | SdkError - > + ): Effect.Effect; } /** @@ -9296,10 +7499,7 @@ export const makeEC2Service = Effect.gen(function* (_) { * @since 1.0.0 * @category layers */ -export const BaseEC2ServiceLayer = Layer.effect( - EC2Service, - makeEC2Service, -); +export const BaseEC2ServiceLayer = Layer.effect(EC2Service, makeEC2Service); /** * @since 1.0.0 diff --git a/packages/client-ec2/src/Errors.ts b/packages/client-ec2/src/Errors.ts index fc93d83..6b8ed28 100644 --- a/packages/client-ec2/src/Errors.ts +++ b/packages/client-ec2/src/Errors.ts @@ -1,13 +1,9 @@ -import type { - -} from "@aws-sdk/client-ec2"; +import type {} from "@aws-sdk/client-ec2"; import * as Data from "effect/Data"; export type TaggedException = T & { readonly _tag: T["name"]; }; - - export type SdkError = TaggedException; export const SdkError = Data.tagged("SdkError"); diff --git a/packages/client-ec2/test/EC2.test.ts b/packages/client-ec2/test/EC2.test.ts index 4bfacff..32fa82a 100644 --- a/packages/client-ec2/test/EC2.test.ts +++ b/packages/client-ec2/test/EC2.test.ts @@ -27,9 +27,13 @@ describe("EC2ClientImpl", () => { it("default", async () => { clientMock.reset().on(DescribeInstancesCommand).resolves({}); - const args : DescribeInstancesCommandInput = {"InstanceIds": ["i-1234567890abcdef0"]}; + const args: DescribeInstancesCommandInput = { + InstanceIds: ["i-1234567890abcdef0"], + }; - const program = Effect.flatMap(EC2Service, (service) => service.describeInstances(args)); + const program = Effect.flatMap(EC2Service, (service) => + service.describeInstances(args), + ); const result = await pipe( program, @@ -39,15 +43,22 @@ describe("EC2ClientImpl", () => { expect(result).toEqual(Exit.succeed({})); expect(clientMock).toHaveReceivedCommandTimes(DescribeInstancesCommand, 1); - expect(clientMock).toHaveReceivedCommandWith(DescribeInstancesCommand, args); + expect(clientMock).toHaveReceivedCommandWith( + DescribeInstancesCommand, + args, + ); }); it("configurable", async () => { clientMock.reset().on(DescribeInstancesCommand).resolves({}); - const args : DescribeInstancesCommandInput = {"InstanceIds": ["i-1234567890abcdef0"]}; + const args: DescribeInstancesCommandInput = { + InstanceIds: ["i-1234567890abcdef0"], + }; - const program = Effect.flatMap(EC2Service, (service) => service.describeInstances(args)); + const program = Effect.flatMap(EC2Service, (service) => + service.describeInstances(args), + ); const EC2ClientConfigLayer = Layer.succeed(EC2ClientInstanceConfig, { region: "eu-central-1", @@ -64,15 +75,22 @@ describe("EC2ClientImpl", () => { expect(result).toEqual(Exit.succeed({})); expect(clientMock).toHaveReceivedCommandTimes(DescribeInstancesCommand, 1); - expect(clientMock).toHaveReceivedCommandWith(DescribeInstancesCommand, args); + expect(clientMock).toHaveReceivedCommandWith( + DescribeInstancesCommand, + args, + ); }); it("base", async () => { clientMock.reset().on(DescribeInstancesCommand).resolves({}); - const args : DescribeInstancesCommandInput = {"InstanceIds": ["i-1234567890abcdef0"]}; + const args: DescribeInstancesCommandInput = { + InstanceIds: ["i-1234567890abcdef0"], + }; - const program = Effect.flatMap(EC2Service, (service) => service.describeInstances(args)); + const program = Effect.flatMap(EC2Service, (service) => + service.describeInstances(args), + ); const EC2ClientInstanceLayer = Layer.succeed( EC2ClientInstance, @@ -90,15 +108,22 @@ describe("EC2ClientImpl", () => { expect(result).toEqual(Exit.succeed({})); expect(clientMock).toHaveReceivedCommandTimes(DescribeInstancesCommand, 1); - expect(clientMock).toHaveReceivedCommandWith(DescribeInstancesCommand, args); + expect(clientMock).toHaveReceivedCommandWith( + DescribeInstancesCommand, + args, + ); }); it("extended", async () => { clientMock.reset().on(DescribeInstancesCommand).resolves({}); - const args : DescribeInstancesCommandInput = {"InstanceIds": ["i-1234567890abcdef0"]}; + const args: DescribeInstancesCommandInput = { + InstanceIds: ["i-1234567890abcdef0"], + }; - const program = Effect.flatMap(EC2Service, (service) => service.describeInstances(args)); + const program = Effect.flatMap(EC2Service, (service) => + service.describeInstances(args), + ); const EC2ClientInstanceLayer = Layer.effect( EC2ClientInstance, @@ -120,15 +145,22 @@ describe("EC2ClientImpl", () => { expect(result).toEqual(Exit.succeed({})); expect(clientMock).toHaveReceivedCommandTimes(DescribeInstancesCommand, 1); - expect(clientMock).toHaveReceivedCommandWith(DescribeInstancesCommand, args); + expect(clientMock).toHaveReceivedCommandWith( + DescribeInstancesCommand, + args, + ); }); it("fail", async () => { clientMock.reset().on(DescribeInstancesCommand).rejects(new Error("test")); - const args : DescribeInstancesCommandInput = {"InstanceIds": ["i-1234567890abcdef0"]}; + const args: DescribeInstancesCommandInput = { + InstanceIds: ["i-1234567890abcdef0"], + }; - const program = Effect.flatMap(EC2Service, (service) => service.describeInstances(args)); + const program = Effect.flatMap(EC2Service, (service) => + service.describeInstances(args), + ); const result = await pipe( program, @@ -147,6 +179,9 @@ describe("EC2ClientImpl", () => { ), ); expect(clientMock).toHaveReceivedCommandTimes(DescribeInstancesCommand, 1); - expect(clientMock).toHaveReceivedCommandWith(DescribeInstancesCommand, args); + expect(clientMock).toHaveReceivedCommandWith( + DescribeInstancesCommand, + args, + ); }); }); diff --git a/packages/client-elasticache/.projen/deps.json b/packages/client-elasticache/.projen/deps.json index e3625df..c8434b1 100644 --- a/packages/client-elasticache/.projen/deps.json +++ b/packages/client-elasticache/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-elasticache", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-elasticache/package.json b/packages/client-elasticache/package.json index 5e67e7f..2b5f95d 100644 --- a/packages/client-elasticache/package.json +++ b/packages/client-elasticache/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-elasticache": "^3", + "@aws-sdk/client-elasticache": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-eventbridge/.projen/deps.json b/packages/client-eventbridge/.projen/deps.json index 1afdf86..ece07ed 100644 --- a/packages/client-eventbridge/.projen/deps.json +++ b/packages/client-eventbridge/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-eventbridge", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-eventbridge/package.json b/packages/client-eventbridge/package.json index fde311a..d2c75e2 100644 --- a/packages/client-eventbridge/package.json +++ b/packages/client-eventbridge/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-eventbridge": "^3", + "@aws-sdk/client-eventbridge": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-iam/.projen/deps.json b/packages/client-iam/.projen/deps.json index 7b37c29..1eb0e37 100644 --- a/packages/client-iam/.projen/deps.json +++ b/packages/client-iam/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-iam", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-iam/package.json b/packages/client-iam/package.json index ed9d8eb..305ada1 100644 --- a/packages/client-iam/package.json +++ b/packages/client-iam/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-iam": "^3", + "@aws-sdk/client-iam": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-kinesis/.projen/deps.json b/packages/client-kinesis/.projen/deps.json index a789010..10427d7 100644 --- a/packages/client-kinesis/.projen/deps.json +++ b/packages/client-kinesis/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-kinesis", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-kinesis/package.json b/packages/client-kinesis/package.json index fc0de45..948910e 100644 --- a/packages/client-kinesis/package.json +++ b/packages/client-kinesis/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-kinesis": "^3", + "@aws-sdk/client-kinesis": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-lambda/.projen/deps.json b/packages/client-lambda/.projen/deps.json index 959c9ae..c91fe6c 100644 --- a/packages/client-lambda/.projen/deps.json +++ b/packages/client-lambda/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-lambda", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-lambda/package.json b/packages/client-lambda/package.json index e0a9bd7..cbaeab5 100644 --- a/packages/client-lambda/package.json +++ b/packages/client-lambda/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-lambda": "^3", + "@aws-sdk/client-lambda": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-mq/.projen/deps.json b/packages/client-mq/.projen/deps.json index 532e3ef..19996af 100644 --- a/packages/client-mq/.projen/deps.json +++ b/packages/client-mq/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-mq", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-mq/package.json b/packages/client-mq/package.json index 2995b8e..1cc356f 100644 --- a/packages/client-mq/package.json +++ b/packages/client-mq/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-mq": "^3", + "@aws-sdk/client-mq": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-opensearch/.projen/deps.json b/packages/client-opensearch/.projen/deps.json index 078f2a2..f5b11d5 100644 --- a/packages/client-opensearch/.projen/deps.json +++ b/packages/client-opensearch/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-opensearch", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-opensearch/package.json b/packages/client-opensearch/package.json index 36536a9..14f1a01 100644 --- a/packages/client-opensearch/package.json +++ b/packages/client-opensearch/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-opensearch": "^3", + "@aws-sdk/client-opensearch": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-opensearchserverless/.projen/deps.json b/packages/client-opensearchserverless/.projen/deps.json index 442fe02..ebf8ff2 100644 --- a/packages/client-opensearchserverless/.projen/deps.json +++ b/packages/client-opensearchserverless/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-opensearchserverless", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-opensearchserverless/package.json b/packages/client-opensearchserverless/package.json index 8e25ed9..e67e7a4 100644 --- a/packages/client-opensearchserverless/package.json +++ b/packages/client-opensearchserverless/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-opensearchserverless": "^3", + "@aws-sdk/client-opensearchserverless": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-rds/.projen/deps.json b/packages/client-rds/.projen/deps.json index c11781d..e412468 100644 --- a/packages/client-rds/.projen/deps.json +++ b/packages/client-rds/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-rds", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-rds/package.json b/packages/client-rds/package.json index e9c4a6f..71c8883 100644 --- a/packages/client-rds/package.json +++ b/packages/client-rds/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-rds": "^3", + "@aws-sdk/client-rds": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-s3/.projen/deps.json b/packages/client-s3/.projen/deps.json index 02dd53f..658debe 100644 --- a/packages/client-s3/.projen/deps.json +++ b/packages/client-s3/.projen/deps.json @@ -70,12 +70,12 @@ }, { "name": "@aws-sdk/client-s3", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { "name": "@aws-sdk/s3-request-presigner", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-s3/package.json b/packages/client-s3/package.json index 17e868c..3c48218 100644 --- a/packages/client-s3/package.json +++ b/packages/client-s3/package.json @@ -39,8 +39,8 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-s3": "^3", - "@aws-sdk/s3-request-presigner": "^3", + "@aws-sdk/client-s3": "^3.556.0", + "@aws-sdk/s3-request-presigner": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-sfn/.projen/deps.json b/packages/client-sfn/.projen/deps.json index 8f2b947..6a61787 100644 --- a/packages/client-sfn/.projen/deps.json +++ b/packages/client-sfn/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-sfn", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-sfn/package.json b/packages/client-sfn/package.json index c302c8b..95df21a 100644 --- a/packages/client-sfn/package.json +++ b/packages/client-sfn/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-sfn": "^3", + "@aws-sdk/client-sfn": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-sns/.projen/deps.json b/packages/client-sns/.projen/deps.json index b705d20..fec04b1 100644 --- a/packages/client-sns/.projen/deps.json +++ b/packages/client-sns/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-sns", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-sns/package.json b/packages/client-sns/package.json index 41dbed8..3eeb902 100644 --- a/packages/client-sns/package.json +++ b/packages/client-sns/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-sns": "^3", + "@aws-sdk/client-sns": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/client-sqs/.projen/deps.json b/packages/client-sqs/.projen/deps.json index 061dc37..9d42634 100644 --- a/packages/client-sqs/.projen/deps.json +++ b/packages/client-sqs/.projen/deps.json @@ -70,7 +70,7 @@ }, { "name": "@aws-sdk/client-sqs", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/client-sqs/package.json b/packages/client-sqs/package.json index 5558769..89988fe 100644 --- a/packages/client-sqs/package.json +++ b/packages/client-sqs/package.json @@ -39,7 +39,7 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-sqs": "^3", + "@aws-sdk/client-sqs": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/packages/lib-dynamodb/.projen/deps.json b/packages/lib-dynamodb/.projen/deps.json index 4a2ecb4..7c91592 100644 --- a/packages/lib-dynamodb/.projen/deps.json +++ b/packages/lib-dynamodb/.projen/deps.json @@ -74,12 +74,12 @@ }, { "name": "@aws-sdk/client-dynamodb", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { "name": "@aws-sdk/lib-dynamodb", - "version": "^3", + "version": "^3.556.0", "type": "runtime" }, { diff --git a/packages/lib-dynamodb/package.json b/packages/lib-dynamodb/package.json index 7b9dc7b..804c833 100644 --- a/packages/lib-dynamodb/package.json +++ b/packages/lib-dynamodb/package.json @@ -41,8 +41,8 @@ "effect": ">=3.0.0 <4.0.0" }, "dependencies": { - "@aws-sdk/client-dynamodb": "^3", - "@aws-sdk/lib-dynamodb": "^3", + "@aws-sdk/client-dynamodb": "^3.556.0", + "@aws-sdk/lib-dynamodb": "^3.556.0", "@aws-sdk/types": "^3" }, "main": "lib/index.js", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 82f169d..08c619a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -93,7 +93,7 @@ importers: packages/client-api-gateway-management-api: dependencies: '@aws-sdk/client-apigatewaymanagementapi': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -148,7 +148,7 @@ importers: packages/client-cloudtrail: dependencies: '@aws-sdk/client-cloudtrail': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -203,7 +203,7 @@ importers: packages/client-cloudwatch: dependencies: '@aws-sdk/client-cloudwatch': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -258,7 +258,7 @@ importers: packages/client-cloudwatch-events: dependencies: '@aws-sdk/client-cloudwatch-events': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -313,7 +313,7 @@ importers: packages/client-cloudwatch-logs: dependencies: '@aws-sdk/client-cloudwatch-logs': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -368,7 +368,7 @@ importers: packages/client-cognito-identity-provider: dependencies: '@aws-sdk/client-cognito-identity-provider': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -423,7 +423,7 @@ importers: packages/client-dynamodb: dependencies: '@aws-sdk/client-dynamodb': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -478,7 +478,7 @@ importers: packages/client-ec2: dependencies: '@aws-sdk/client-ec2': - specifier: ^3 + specifier: ^3.556.0 version: 3.557.0 '@aws-sdk/types': specifier: ^3 @@ -533,7 +533,7 @@ importers: packages/client-elasticache: dependencies: '@aws-sdk/client-elasticache': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -588,7 +588,7 @@ importers: packages/client-eventbridge: dependencies: '@aws-sdk/client-eventbridge': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -643,7 +643,7 @@ importers: packages/client-iam: dependencies: '@aws-sdk/client-iam': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -698,7 +698,7 @@ importers: packages/client-kinesis: dependencies: '@aws-sdk/client-kinesis': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -753,7 +753,7 @@ importers: packages/client-lambda: dependencies: '@aws-sdk/client-lambda': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -808,7 +808,7 @@ importers: packages/client-mq: dependencies: '@aws-sdk/client-mq': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -863,7 +863,7 @@ importers: packages/client-opensearch: dependencies: '@aws-sdk/client-opensearch': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -918,7 +918,7 @@ importers: packages/client-opensearchserverless: dependencies: '@aws-sdk/client-opensearchserverless': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -973,7 +973,7 @@ importers: packages/client-rds: dependencies: '@aws-sdk/client-rds': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -1028,10 +1028,10 @@ importers: packages/client-s3: dependencies: '@aws-sdk/client-s3': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/s3-request-presigner': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -1086,7 +1086,7 @@ importers: packages/client-sfn: dependencies: '@aws-sdk/client-sfn': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -1141,7 +1141,7 @@ importers: packages/client-sns: dependencies: '@aws-sdk/client-sns': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -1196,7 +1196,7 @@ importers: packages/client-sqs: dependencies: '@aws-sdk/client-sqs': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/types': specifier: ^3 @@ -1296,10 +1296,10 @@ importers: packages/lib-dynamodb: dependencies: '@aws-sdk/client-dynamodb': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0 '@aws-sdk/lib-dynamodb': - specifier: ^3 + specifier: ^3.556.0 version: 3.556.0(@aws-sdk/client-dynamodb@3.556.0) '@aws-sdk/types': specifier: ^3