localstack-core 4.10.1.dev42__py3-none-any.whl → 4.11.2.dev14__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of localstack-core might be problematic. Click here for more details.
- localstack/aws/api/apigateway/__init__.py +42 -0
- localstack/aws/api/cloudformation/__init__.py +161 -0
- localstack/aws/api/ec2/__init__.py +1165 -12
- localstack/aws/api/iam/__init__.py +227 -0
- localstack/aws/api/kms/__init__.py +1 -0
- localstack/aws/api/lambda_/__init__.py +418 -66
- localstack/aws/api/logs/__init__.py +312 -0
- localstack/aws/api/opensearch/__init__.py +89 -0
- localstack/aws/api/redshift/__init__.py +69 -0
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +36 -0
- localstack/aws/api/route53/__init__.py +42 -0
- localstack/aws/api/route53resolver/__init__.py +1 -0
- localstack/aws/api/s3/__init__.py +62 -0
- localstack/aws/api/secretsmanager/__init__.py +28 -23
- localstack/aws/api/stepfunctions/__init__.py +52 -10
- localstack/aws/api/sts/__init__.py +52 -0
- localstack/aws/handlers/logging.py +8 -4
- localstack/aws/handlers/service.py +11 -2
- localstack/aws/protocol/serializer.py +1 -1
- localstack/deprecations.py +0 -6
- localstack/services/acm/provider.py +4 -0
- localstack/services/apigateway/legacy/provider.py +28 -15
- localstack/services/cloudformation/engine/template_preparer.py +6 -2
- localstack/services/cloudformation/engine/v2/change_set_model_preproc.py +12 -0
- localstack/services/cloudwatch/provider.py +10 -3
- localstack/services/cloudwatch/provider_v2.py +6 -3
- localstack/services/configservice/provider.py +5 -1
- localstack/services/dynamodb/provider.py +1 -0
- localstack/services/dynamodb/v2/provider.py +1 -0
- localstack/services/dynamodbstreams/provider.py +6 -0
- localstack/services/dynamodbstreams/v2/provider.py +6 -0
- localstack/services/ec2/provider.py +6 -0
- localstack/services/es/provider.py +6 -0
- localstack/services/events/provider.py +4 -0
- localstack/services/events/v1/provider.py +9 -0
- localstack/services/firehose/provider.py +5 -0
- localstack/services/iam/provider.py +4 -0
- localstack/services/kms/models.py +10 -20
- localstack/services/kms/provider.py +4 -0
- localstack/services/lambda_/api_utils.py +37 -20
- localstack/services/lambda_/event_source_mapping/pollers/stream_poller.py +1 -1
- localstack/services/lambda_/invocation/assignment.py +4 -1
- localstack/services/lambda_/invocation/execution_environment.py +21 -2
- localstack/services/lambda_/invocation/lambda_models.py +27 -2
- localstack/services/lambda_/invocation/lambda_service.py +51 -3
- localstack/services/lambda_/invocation/models.py +9 -1
- localstack/services/lambda_/invocation/version_manager.py +18 -3
- localstack/services/lambda_/provider.py +239 -95
- localstack/services/lambda_/resource_providers/aws_lambda_function.py +33 -1
- localstack/services/lambda_/runtimes.py +3 -1
- localstack/services/logs/provider.py +9 -0
- localstack/services/opensearch/provider.py +53 -3
- localstack/services/resource_groups/provider.py +5 -1
- localstack/services/resourcegroupstaggingapi/provider.py +6 -1
- localstack/services/s3/provider.py +28 -15
- localstack/services/s3/utils.py +35 -14
- localstack/services/s3control/provider.py +101 -2
- localstack/services/s3control/validation.py +50 -0
- localstack/services/sns/constants.py +3 -1
- localstack/services/sns/publisher.py +15 -6
- localstack/services/sns/v2/models.py +6 -0
- localstack/services/sns/v2/provider.py +650 -19
- localstack/services/sns/v2/utils.py +12 -0
- localstack/services/stepfunctions/asl/component/common/path/result_path.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/execute_state.py +0 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_map/state_map.py +0 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/lambda_eval_utils.py +8 -8
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/{mock_eval_utils.py → local_mock_eval_utils.py} +13 -9
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service.py +6 -6
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_callback.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_fail/state_fail.py +4 -0
- localstack/services/stepfunctions/asl/component/test_state/state/base_mock.py +118 -0
- localstack/services/stepfunctions/asl/component/test_state/state/common.py +82 -0
- localstack/services/stepfunctions/asl/component/test_state/state/execution.py +139 -0
- localstack/services/stepfunctions/asl/component/test_state/state/map.py +77 -0
- localstack/services/stepfunctions/asl/component/test_state/state/task.py +44 -0
- localstack/services/stepfunctions/asl/eval/environment.py +30 -22
- localstack/services/stepfunctions/asl/eval/states.py +1 -1
- localstack/services/stepfunctions/asl/eval/test_state/environment.py +49 -9
- localstack/services/stepfunctions/asl/eval/test_state/program_state.py +22 -0
- localstack/services/stepfunctions/asl/jsonata/jsonata.py +5 -1
- localstack/services/stepfunctions/asl/parse/preprocessor.py +67 -24
- localstack/services/stepfunctions/asl/parse/test_state/asl_parser.py +5 -4
- localstack/services/stepfunctions/asl/parse/test_state/preprocessor.py +222 -31
- localstack/services/stepfunctions/asl/static_analyser/test_state/test_state_analyser.py +170 -22
- localstack/services/stepfunctions/backend/execution.py +6 -6
- localstack/services/stepfunctions/backend/execution_worker.py +5 -5
- localstack/services/stepfunctions/backend/test_state/execution.py +36 -0
- localstack/services/stepfunctions/backend/test_state/execution_worker.py +33 -1
- localstack/services/stepfunctions/backend/test_state/test_state_mock.py +127 -0
- localstack/services/stepfunctions/local_mocking/__init__.py +9 -0
- localstack/services/stepfunctions/{mocking → local_mocking}/mock_config.py +24 -17
- localstack/services/stepfunctions/provider.py +78 -27
- localstack/services/stepfunctions/test_state/mock_config.py +47 -0
- localstack/testing/pytest/fixtures.py +28 -0
- localstack/testing/snapshots/transformer_utility.py +5 -0
- localstack/utils/analytics/publisher.py +37 -155
- localstack/utils/analytics/service_request_aggregator.py +6 -4
- localstack/utils/aws/arns.py +7 -0
- localstack/utils/batching.py +258 -0
- localstack/utils/collections.py +23 -11
- localstack/version.py +2 -2
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.11.2.dev14.dist-info}/METADATA +5 -5
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.11.2.dev14.dist-info}/RECORD +113 -105
- localstack_core-4.11.2.dev14.dist-info/plux.json +1 -0
- localstack/services/stepfunctions/mocking/__init__.py +0 -0
- localstack/utils/batch_policy.py +0 -124
- localstack_core-4.10.1.dev42.dist-info/plux.json +0 -1
- /localstack/services/stepfunctions/{mocking → local_mocking}/mock_config_file.py +0 -0
- {localstack_core-4.10.1.dev42.data → localstack_core-4.11.2.dev14.data}/scripts/localstack +0 -0
- {localstack_core-4.10.1.dev42.data → localstack_core-4.11.2.dev14.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.10.1.dev42.data → localstack_core-4.11.2.dev14.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.11.2.dev14.dist-info}/WHEEL +0 -0
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.11.2.dev14.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.11.2.dev14.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.11.2.dev14.dist-info}/top_level.txt +0 -0
|
@@ -92,6 +92,7 @@ DescribeImageUsageReportEntriesMaxResults = int
|
|
|
92
92
|
DescribeImageUsageReportsMaxResults = int
|
|
93
93
|
DescribeInstanceCreditSpecificationsMaxResults = int
|
|
94
94
|
DescribeInstanceImageMetadataMaxResults = int
|
|
95
|
+
DescribeInstanceSqlHaStatesRequestMaxResultsInteger = int
|
|
95
96
|
DescribeInstanceTopologyMaxResults = int
|
|
96
97
|
DescribeInternetGatewaysMaxResults = int
|
|
97
98
|
DescribeIpamByoasnMaxResults = int
|
|
@@ -127,6 +128,7 @@ DescribeVerifiedAccessTrustProvidersMaxResults = int
|
|
|
127
128
|
DescribeVpcBlockPublicAccessExclusionsMaxResults = int
|
|
128
129
|
DescribeVpcClassicLinkDnsSupportMaxResults = int
|
|
129
130
|
DescribeVpcClassicLinkDnsSupportNextToken = str
|
|
131
|
+
DescribeVpcEncryptionControlsMaxResults = int
|
|
130
132
|
DescribeVpcPeeringConnectionsMaxResults = int
|
|
131
133
|
DescribeVpcsMaxResults = int
|
|
132
134
|
DhcpOptionsId = str
|
|
@@ -166,6 +168,7 @@ GetNetworkInsightsAccessScopeAnalysisFindingsMaxResults = int
|
|
|
166
168
|
GetSecurityGroupsForVpcRequestMaxResults = int
|
|
167
169
|
GetSubnetCidrReservationsMaxResults = int
|
|
168
170
|
GetVerifiedAccessEndpointTargetsMaxResults = int
|
|
171
|
+
GetVpcResourcesBlockingEncryptionEnforcementMaxResults = int
|
|
169
172
|
GpuDeviceCount = int
|
|
170
173
|
GpuDeviceManufacturerName = str
|
|
171
174
|
GpuDeviceMemorySize = int
|
|
@@ -210,6 +213,7 @@ IpamExternalResourceVerificationTokenId = str
|
|
|
210
213
|
IpamId = str
|
|
211
214
|
IpamMaxResults = int
|
|
212
215
|
IpamNetmaskLength = int
|
|
216
|
+
IpamPolicyId = str
|
|
213
217
|
IpamPoolAllocationId = str
|
|
214
218
|
IpamPoolCidrId = str
|
|
215
219
|
IpamPoolId = str
|
|
@@ -337,6 +341,7 @@ RunInstancesUserData = str
|
|
|
337
341
|
S3StorageUploadPolicy = str
|
|
338
342
|
S3StorageUploadPolicySignature = str
|
|
339
343
|
ScheduledInstanceId = str
|
|
344
|
+
SecretArn = str
|
|
340
345
|
SecurityGroupId = str
|
|
341
346
|
SecurityGroupName = str
|
|
342
347
|
SecurityGroupRuleId = str
|
|
@@ -372,6 +377,7 @@ TransitGatewayAttachmentId = str
|
|
|
372
377
|
TransitGatewayConnectPeerId = str
|
|
373
378
|
TransitGatewayId = str
|
|
374
379
|
TransitGatewayMaxResults = int
|
|
380
|
+
TransitGatewayMeteringPolicyId = str
|
|
375
381
|
TransitGatewayMulticastDomainId = str
|
|
376
382
|
TransitGatewayPolicyTableId = str
|
|
377
383
|
TransitGatewayRouteTableAnnouncementId = str
|
|
@@ -395,6 +401,7 @@ VpcFlowLogId = str
|
|
|
395
401
|
VpcId = str
|
|
396
402
|
VpcPeeringConnectionId = str
|
|
397
403
|
VpcPeeringConnectionIdWithResolver = str
|
|
404
|
+
VpnConcentratorId = str
|
|
398
405
|
VpnConnectionDeviceSampleConfiguration = str
|
|
399
406
|
VpnConnectionDeviceTypeId = str
|
|
400
407
|
VpnConnectionId = str
|
|
@@ -601,6 +608,21 @@ class AutoPlacement(StrEnum):
|
|
|
601
608
|
off = "off"
|
|
602
609
|
|
|
603
610
|
|
|
611
|
+
class AutoProvisionZonesState(StrEnum):
|
|
612
|
+
enabled = "enabled"
|
|
613
|
+
disabled = "disabled"
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
class AutoScalingIpsState(StrEnum):
|
|
617
|
+
enabled = "enabled"
|
|
618
|
+
disabled = "disabled"
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
class AvailabilityMode(StrEnum):
|
|
622
|
+
zonal = "zonal"
|
|
623
|
+
regional = "regional"
|
|
624
|
+
|
|
625
|
+
|
|
604
626
|
class AvailabilityZoneOptInStatus(StrEnum):
|
|
605
627
|
opt_in_not_required = "opt-in-not-required"
|
|
606
628
|
opted_in = "opted-in"
|
|
@@ -680,8 +702,10 @@ class ByoipCidrState(StrEnum):
|
|
|
680
702
|
deprovisioned = "deprovisioned"
|
|
681
703
|
failed_deprovision = "failed-deprovision"
|
|
682
704
|
failed_provision = "failed-provision"
|
|
705
|
+
pending_advertising = "pending-advertising"
|
|
683
706
|
pending_deprovision = "pending-deprovision"
|
|
684
707
|
pending_provision = "pending-provision"
|
|
708
|
+
pending_withdrawal = "pending-withdrawal"
|
|
685
709
|
provisioned = "provisioned"
|
|
686
710
|
provisioned_not_publicly_advertisable = "provisioned-not-publicly-advertisable"
|
|
687
711
|
|
|
@@ -1075,6 +1099,18 @@ class EnaSupport(StrEnum):
|
|
|
1075
1099
|
required = "required"
|
|
1076
1100
|
|
|
1077
1101
|
|
|
1102
|
+
class EncryptionStateValue(StrEnum):
|
|
1103
|
+
enabling = "enabling"
|
|
1104
|
+
enabled = "enabled"
|
|
1105
|
+
disabling = "disabling"
|
|
1106
|
+
disabled = "disabled"
|
|
1107
|
+
|
|
1108
|
+
|
|
1109
|
+
class EncryptionSupportOptionValue(StrEnum):
|
|
1110
|
+
enable = "enable"
|
|
1111
|
+
disable = "disable"
|
|
1112
|
+
|
|
1113
|
+
|
|
1078
1114
|
class EndDateType(StrEnum):
|
|
1079
1115
|
unlimited = "unlimited"
|
|
1080
1116
|
limited = "limited"
|
|
@@ -1239,6 +1275,7 @@ class FlowLogsResourceType(StrEnum):
|
|
|
1239
1275
|
NetworkInterface = "NetworkInterface"
|
|
1240
1276
|
TransitGateway = "TransitGateway"
|
|
1241
1277
|
TransitGatewayAttachment = "TransitGatewayAttachment"
|
|
1278
|
+
RegionalNatGateway = "RegionalNatGateway"
|
|
1242
1279
|
|
|
1243
1280
|
|
|
1244
1281
|
class FpgaImageAttributeName(StrEnum):
|
|
@@ -1286,6 +1323,13 @@ class GroupBy(StrEnum):
|
|
|
1286
1323
|
reservation_unused_financial_owner = "reservation-unused-financial-owner"
|
|
1287
1324
|
|
|
1288
1325
|
|
|
1326
|
+
class HaStatus(StrEnum):
|
|
1327
|
+
processing = "processing"
|
|
1328
|
+
active = "active"
|
|
1329
|
+
standby = "standby"
|
|
1330
|
+
invalid = "invalid"
|
|
1331
|
+
|
|
1332
|
+
|
|
1289
1333
|
class HostMaintenance(StrEnum):
|
|
1290
1334
|
on = "on"
|
|
1291
1335
|
off = "off"
|
|
@@ -1466,6 +1510,7 @@ class InstanceLifecycleType(StrEnum):
|
|
|
1466
1510
|
spot = "spot"
|
|
1467
1511
|
scheduled = "scheduled"
|
|
1468
1512
|
capacity_block = "capacity-block"
|
|
1513
|
+
interruptible_capacity_reservation = "interruptible-capacity-reservation"
|
|
1469
1514
|
|
|
1470
1515
|
|
|
1471
1516
|
class InstanceMatchCriteria(StrEnum):
|
|
@@ -2626,6 +2671,19 @@ class InternetGatewayExclusionMode(StrEnum):
|
|
|
2626
2671
|
allow_egress = "allow-egress"
|
|
2627
2672
|
|
|
2628
2673
|
|
|
2674
|
+
class InterruptibleCapacityReservationAllocationStatus(StrEnum):
|
|
2675
|
+
pending = "pending"
|
|
2676
|
+
active = "active"
|
|
2677
|
+
updating = "updating"
|
|
2678
|
+
canceling = "canceling"
|
|
2679
|
+
canceled = "canceled"
|
|
2680
|
+
failed = "failed"
|
|
2681
|
+
|
|
2682
|
+
|
|
2683
|
+
class InterruptionType(StrEnum):
|
|
2684
|
+
adhoc = "adhoc"
|
|
2685
|
+
|
|
2686
|
+
|
|
2629
2687
|
class IpAddressType(StrEnum):
|
|
2630
2688
|
ipv4 = "ipv4"
|
|
2631
2689
|
dualstack = "dualstack"
|
|
@@ -2695,6 +2753,33 @@ class IpamOverlapStatus(StrEnum):
|
|
|
2695
2753
|
ignored = "ignored"
|
|
2696
2754
|
|
|
2697
2755
|
|
|
2756
|
+
class IpamPolicyManagedBy(StrEnum):
|
|
2757
|
+
account = "account"
|
|
2758
|
+
delegated_administrator_for_ipam = "delegated-administrator-for-ipam"
|
|
2759
|
+
|
|
2760
|
+
|
|
2761
|
+
class IpamPolicyResourceType(StrEnum):
|
|
2762
|
+
alb = "alb"
|
|
2763
|
+
eip = "eip"
|
|
2764
|
+
rds = "rds"
|
|
2765
|
+
rnat = "rnat"
|
|
2766
|
+
|
|
2767
|
+
|
|
2768
|
+
class IpamPolicyState(StrEnum):
|
|
2769
|
+
create_in_progress = "create-in-progress"
|
|
2770
|
+
create_complete = "create-complete"
|
|
2771
|
+
create_failed = "create-failed"
|
|
2772
|
+
modify_in_progress = "modify-in-progress"
|
|
2773
|
+
modify_complete = "modify-complete"
|
|
2774
|
+
modify_failed = "modify-failed"
|
|
2775
|
+
delete_in_progress = "delete-in-progress"
|
|
2776
|
+
delete_complete = "delete-complete"
|
|
2777
|
+
delete_failed = "delete-failed"
|
|
2778
|
+
isolate_in_progress = "isolate-in-progress"
|
|
2779
|
+
isolate_complete = "isolate-complete"
|
|
2780
|
+
restore_in_progress = "restore-in-progress"
|
|
2781
|
+
|
|
2782
|
+
|
|
2698
2783
|
class IpamPoolAllocationResourceType(StrEnum):
|
|
2699
2784
|
ipam_pool = "ipam-pool"
|
|
2700
2785
|
vpc = "vpc"
|
|
@@ -2702,10 +2787,12 @@ class IpamPoolAllocationResourceType(StrEnum):
|
|
|
2702
2787
|
custom = "custom"
|
|
2703
2788
|
subnet = "subnet"
|
|
2704
2789
|
eip = "eip"
|
|
2790
|
+
anycast_ip_list = "anycast-ip-list"
|
|
2705
2791
|
|
|
2706
2792
|
|
|
2707
2793
|
class IpamPoolAwsService(StrEnum):
|
|
2708
2794
|
ec2 = "ec2"
|
|
2795
|
+
global_services = "global-services"
|
|
2709
2796
|
|
|
2710
2797
|
|
|
2711
2798
|
class IpamPoolCidrFailureCode(StrEnum):
|
|
@@ -2813,6 +2900,7 @@ class IpamPublicAddressAwsService(StrEnum):
|
|
|
2813
2900
|
site_to_site_vpn = "site-to-site-vpn"
|
|
2814
2901
|
load_balancer = "load-balancer"
|
|
2815
2902
|
global_accelerator = "global-accelerator"
|
|
2903
|
+
cloudfront = "cloudfront"
|
|
2816
2904
|
other = "other"
|
|
2817
2905
|
|
|
2818
2906
|
|
|
@@ -2823,6 +2911,7 @@ class IpamPublicAddressType(StrEnum):
|
|
|
2823
2911
|
amazon_owned_contig = "amazon-owned-contig"
|
|
2824
2912
|
byoip = "byoip"
|
|
2825
2913
|
ec2_public_ip = "ec2-public-ip"
|
|
2914
|
+
anycast_ip_list_ip = "anycast-ip-list-ip"
|
|
2826
2915
|
|
|
2827
2916
|
|
|
2828
2917
|
class IpamResourceCidrIpSource(StrEnum):
|
|
@@ -2865,6 +2954,7 @@ class IpamResourceType(StrEnum):
|
|
|
2865
2954
|
public_ipv4_pool = "public-ipv4-pool"
|
|
2866
2955
|
ipv6_pool = "ipv6-pool"
|
|
2867
2956
|
eni = "eni"
|
|
2957
|
+
anycast_ip_list = "anycast-ip-list"
|
|
2868
2958
|
|
|
2869
2959
|
|
|
2870
2960
|
class IpamScopeExternalAuthorityType(StrEnum):
|
|
@@ -3078,6 +3168,7 @@ class ManagedBy(StrEnum):
|
|
|
3078
3168
|
class MarketType(StrEnum):
|
|
3079
3169
|
spot = "spot"
|
|
3080
3170
|
capacity_block = "capacity-block"
|
|
3171
|
+
interruptible_capacity_reservation = "interruptible-capacity-reservation"
|
|
3081
3172
|
|
|
3082
3173
|
|
|
3083
3174
|
class MembershipType(StrEnum):
|
|
@@ -3172,6 +3263,25 @@ class NatGatewayAddressStatus(StrEnum):
|
|
|
3172
3263
|
failed = "failed"
|
|
3173
3264
|
|
|
3174
3265
|
|
|
3266
|
+
class NatGatewayApplianceModifyState(StrEnum):
|
|
3267
|
+
modifying = "modifying"
|
|
3268
|
+
completed = "completed"
|
|
3269
|
+
failed = "failed"
|
|
3270
|
+
|
|
3271
|
+
|
|
3272
|
+
class NatGatewayApplianceState(StrEnum):
|
|
3273
|
+
attaching = "attaching"
|
|
3274
|
+
attached = "attached"
|
|
3275
|
+
detaching = "detaching"
|
|
3276
|
+
detached = "detached"
|
|
3277
|
+
attach_failed = "attach-failed"
|
|
3278
|
+
detach_failed = "detach-failed"
|
|
3279
|
+
|
|
3280
|
+
|
|
3281
|
+
class NatGatewayApplianceType(StrEnum):
|
|
3282
|
+
network_firewall_proxy = "network-firewall-proxy"
|
|
3283
|
+
|
|
3284
|
+
|
|
3175
3285
|
class NatGatewayState(StrEnum):
|
|
3176
3286
|
pending = "pending"
|
|
3177
3287
|
failed = "failed"
|
|
@@ -3535,6 +3645,7 @@ class ResourceType(StrEnum):
|
|
|
3535
3645
|
transit_gateway_connect_peer = "transit-gateway-connect-peer"
|
|
3536
3646
|
transit_gateway_multicast_domain = "transit-gateway-multicast-domain"
|
|
3537
3647
|
transit_gateway_policy_table = "transit-gateway-policy-table"
|
|
3648
|
+
transit_gateway_metering_policy = "transit-gateway-metering-policy"
|
|
3538
3649
|
transit_gateway_route_table = "transit-gateway-route-table"
|
|
3539
3650
|
transit_gateway_route_table_announcement = "transit-gateway-route-table-announcement"
|
|
3540
3651
|
volume = "volume"
|
|
@@ -3557,6 +3668,7 @@ class ResourceType(StrEnum):
|
|
|
3557
3668
|
verified_access_trust_provider = "verified-access-trust-provider"
|
|
3558
3669
|
vpn_connection_device_type = "vpn-connection-device-type"
|
|
3559
3670
|
vpc_block_public_access_exclusion = "vpc-block-public-access-exclusion"
|
|
3671
|
+
vpc_encryption_control = "vpc-encryption-control"
|
|
3560
3672
|
route_server = "route-server"
|
|
3561
3673
|
route_server_endpoint = "route-server-endpoint"
|
|
3562
3674
|
route_server_peer = "route-server-peer"
|
|
@@ -3568,8 +3680,10 @@ class ResourceType(StrEnum):
|
|
|
3568
3680
|
capacity_block = "capacity-block"
|
|
3569
3681
|
mac_modification_task = "mac-modification-task"
|
|
3570
3682
|
ipam_prefix_list_resolver = "ipam-prefix-list-resolver"
|
|
3683
|
+
ipam_policy = "ipam-policy"
|
|
3571
3684
|
ipam_prefix_list_resolver_target = "ipam-prefix-list-resolver-target"
|
|
3572
3685
|
capacity_manager_data_export = "capacity-manager-data-export"
|
|
3686
|
+
vpn_concentrator = "vpn-concentrator"
|
|
3573
3687
|
|
|
3574
3688
|
|
|
3575
3689
|
class RootDeviceType(StrEnum):
|
|
@@ -3727,6 +3841,7 @@ class ServiceManaged(StrEnum):
|
|
|
3727
3841
|
alb = "alb"
|
|
3728
3842
|
nlb = "nlb"
|
|
3729
3843
|
rnat = "rnat"
|
|
3844
|
+
rds = "rds"
|
|
3730
3845
|
|
|
3731
3846
|
|
|
3732
3847
|
class ServiceState(StrEnum):
|
|
@@ -3813,6 +3928,11 @@ class SpreadLevel(StrEnum):
|
|
|
3813
3928
|
rack = "rack"
|
|
3814
3929
|
|
|
3815
3930
|
|
|
3931
|
+
class SqlServerLicenseUsage(StrEnum):
|
|
3932
|
+
full = "full"
|
|
3933
|
+
waived = "waived"
|
|
3934
|
+
|
|
3935
|
+
|
|
3816
3936
|
class State(StrEnum):
|
|
3817
3937
|
PendingAcceptance = "PendingAcceptance"
|
|
3818
3938
|
Pending = "Pending"
|
|
@@ -3992,6 +4112,7 @@ class TransitGatewayAssociationState(StrEnum):
|
|
|
3992
4112
|
class TransitGatewayAttachmentResourceType(StrEnum):
|
|
3993
4113
|
vpc = "vpc"
|
|
3994
4114
|
vpn = "vpn"
|
|
4115
|
+
vpn_concentrator = "vpn-concentrator"
|
|
3995
4116
|
direct_connect_gateway = "direct-connect-gateway"
|
|
3996
4117
|
connect = "connect"
|
|
3997
4118
|
peering = "peering"
|
|
@@ -4022,6 +4143,25 @@ class TransitGatewayConnectPeerState(StrEnum):
|
|
|
4022
4143
|
deleted = "deleted"
|
|
4023
4144
|
|
|
4024
4145
|
|
|
4146
|
+
class TransitGatewayMeteringPayerType(StrEnum):
|
|
4147
|
+
source_attachment_owner = "source-attachment-owner"
|
|
4148
|
+
destination_attachment_owner = "destination-attachment-owner"
|
|
4149
|
+
transit_gateway_owner = "transit-gateway-owner"
|
|
4150
|
+
|
|
4151
|
+
|
|
4152
|
+
class TransitGatewayMeteringPolicyEntryState(StrEnum):
|
|
4153
|
+
available = "available"
|
|
4154
|
+
deleted = "deleted"
|
|
4155
|
+
|
|
4156
|
+
|
|
4157
|
+
class TransitGatewayMeteringPolicyState(StrEnum):
|
|
4158
|
+
available = "available"
|
|
4159
|
+
deleted = "deleted"
|
|
4160
|
+
pending = "pending"
|
|
4161
|
+
modifying = "modifying"
|
|
4162
|
+
deleting = "deleting"
|
|
4163
|
+
|
|
4164
|
+
|
|
4025
4165
|
class TransitGatewayMulitcastDomainAssociationState(StrEnum):
|
|
4026
4166
|
pendingAcceptance = "pendingAcceptance"
|
|
4027
4167
|
associating = "associating"
|
|
@@ -4280,6 +4420,11 @@ class VpcEncryptionControlExclusionState(StrEnum):
|
|
|
4280
4420
|
disabled = "disabled"
|
|
4281
4421
|
|
|
4282
4422
|
|
|
4423
|
+
class VpcEncryptionControlExclusionStateInput(StrEnum):
|
|
4424
|
+
enable = "enable"
|
|
4425
|
+
disable = "disable"
|
|
4426
|
+
|
|
4427
|
+
|
|
4283
4428
|
class VpcEncryptionControlMode(StrEnum):
|
|
4284
4429
|
monitor = "monitor"
|
|
4285
4430
|
enforce = "enforce"
|
|
@@ -4326,6 +4471,10 @@ class VpcTenancy(StrEnum):
|
|
|
4326
4471
|
default = "default"
|
|
4327
4472
|
|
|
4328
4473
|
|
|
4474
|
+
class VpnConcentratorType(StrEnum):
|
|
4475
|
+
ipsec_1 = "ipsec.1"
|
|
4476
|
+
|
|
4477
|
+
|
|
4329
4478
|
class VpnEcmpSupportValue(StrEnum):
|
|
4330
4479
|
enable = "enable"
|
|
4331
4480
|
disable = "disable"
|
|
@@ -5095,6 +5244,7 @@ class ByoipCidr(TypedDict, total=False):
|
|
|
5095
5244
|
StatusMessage: String | None
|
|
5096
5245
|
State: ByoipCidrState | None
|
|
5097
5246
|
NetworkBorderGroup: String | None
|
|
5247
|
+
AdvertisementType: String | None
|
|
5098
5248
|
|
|
5099
5249
|
|
|
5100
5250
|
class AdvertiseByoipCidrResult(TypedDict, total=False):
|
|
@@ -5294,6 +5444,8 @@ class NatGatewayAddress(TypedDict, total=False):
|
|
|
5294
5444
|
IsPrimary: Boolean | None
|
|
5295
5445
|
FailureMessage: String | None
|
|
5296
5446
|
Status: NatGatewayAddressStatus | None
|
|
5447
|
+
AvailabilityZone: AvailabilityZoneName | None
|
|
5448
|
+
AvailabilityZoneId: AvailabilityZoneId | None
|
|
5297
5449
|
|
|
5298
5450
|
|
|
5299
5451
|
NatGatewayAddressList = list[NatGatewayAddress]
|
|
@@ -5477,6 +5629,8 @@ class AssociateNatGatewayAddressRequest(ServiceRequest):
|
|
|
5477
5629
|
AllocationIds: AllocationIdList
|
|
5478
5630
|
PrivateIpAddresses: IpList | None
|
|
5479
5631
|
DryRun: Boolean | None
|
|
5632
|
+
AvailabilityZone: AvailabilityZoneName | None
|
|
5633
|
+
AvailabilityZoneId: AvailabilityZoneId | None
|
|
5480
5634
|
|
|
5481
5635
|
|
|
5482
5636
|
class AssociateNatGatewayAddressResult(TypedDict, total=False):
|
|
@@ -6051,6 +6205,13 @@ class AvailabilityZone(TypedDict, total=False):
|
|
|
6051
6205
|
State: AvailabilityZoneState | None
|
|
6052
6206
|
|
|
6053
6207
|
|
|
6208
|
+
class AvailabilityZoneAddress(TypedDict, total=False):
|
|
6209
|
+
AvailabilityZone: AvailabilityZoneName | None
|
|
6210
|
+
AvailabilityZoneId: AvailabilityZoneId | None
|
|
6211
|
+
AllocationIds: AllocationIdList | None
|
|
6212
|
+
|
|
6213
|
+
|
|
6214
|
+
AvailabilityZoneAddresses = list[AvailabilityZoneAddress]
|
|
6054
6215
|
AvailabilityZoneIdStringList = list[String]
|
|
6055
6216
|
AvailabilityZoneList = list[AvailabilityZone]
|
|
6056
6217
|
AvailabilityZoneStringList = list[String]
|
|
@@ -6575,6 +6736,19 @@ class CapacityManagerDimension(TypedDict, total=False):
|
|
|
6575
6736
|
ReservationUnusedFinancialOwner: String | None
|
|
6576
6737
|
|
|
6577
6738
|
|
|
6739
|
+
class InterruptionInfo(TypedDict, total=False):
|
|
6740
|
+
SourceCapacityReservationId: String | None
|
|
6741
|
+
InterruptionType: InterruptionType | None
|
|
6742
|
+
|
|
6743
|
+
|
|
6744
|
+
class InterruptibleCapacityAllocation(TypedDict, total=False):
|
|
6745
|
+
InstanceCount: Integer | None
|
|
6746
|
+
TargetInstanceCount: Integer | None
|
|
6747
|
+
Status: InterruptibleCapacityReservationAllocationStatus | None
|
|
6748
|
+
InterruptibleCapacityReservationId: String | None
|
|
6749
|
+
InterruptionType: InterruptionType | None
|
|
6750
|
+
|
|
6751
|
+
|
|
6578
6752
|
class CapacityReservationCommitmentInfo(TypedDict, total=False):
|
|
6579
6753
|
CommittedInstanceCount: Integer | None
|
|
6580
6754
|
CommitmentEndDate: MillisecondDateTime | None
|
|
@@ -6609,6 +6783,9 @@ class CapacityReservation(TypedDict, total=False):
|
|
|
6609
6783
|
CommitmentInfo: CapacityReservationCommitmentInfo | None
|
|
6610
6784
|
DeliveryPreference: CapacityReservationDeliveryPreference | None
|
|
6611
6785
|
CapacityBlockId: CapacityBlockId | None
|
|
6786
|
+
Interruptible: BoxedBoolean | None
|
|
6787
|
+
InterruptibleCapacityAllocation: InterruptibleCapacityAllocation | None
|
|
6788
|
+
InterruptionInfo: InterruptionInfo | None
|
|
6612
6789
|
|
|
6613
6790
|
|
|
6614
6791
|
class CapacityReservationInfo(TypedDict, total=False):
|
|
@@ -6961,12 +7138,18 @@ class CloudWatchLogOptions(TypedDict, total=False):
|
|
|
6961
7138
|
LogEnabled: Boolean | None
|
|
6962
7139
|
LogGroupArn: String | None
|
|
6963
7140
|
LogOutputFormat: String | None
|
|
7141
|
+
BgpLogEnabled: Boolean | None
|
|
7142
|
+
BgpLogGroupArn: String | None
|
|
7143
|
+
BgpLogOutputFormat: String | None
|
|
6964
7144
|
|
|
6965
7145
|
|
|
6966
7146
|
class CloudWatchLogOptionsSpecification(TypedDict, total=False):
|
|
6967
7147
|
LogEnabled: Boolean | None
|
|
6968
7148
|
LogGroupArn: CloudWatchLogGroupArn | None
|
|
6969
7149
|
LogOutputFormat: String | None
|
|
7150
|
+
BgpLogEnabled: Boolean | None
|
|
7151
|
+
BgpLogGroupArn: CloudWatchLogGroupArn | None
|
|
7152
|
+
BgpLogOutputFormat: String | None
|
|
6970
7153
|
|
|
6971
7154
|
|
|
6972
7155
|
class CoipAddressUsage(TypedDict, total=False):
|
|
@@ -8161,6 +8344,21 @@ class CreateInternetGatewayResult(TypedDict, total=False):
|
|
|
8161
8344
|
InternetGateway: InternetGateway | None
|
|
8162
8345
|
|
|
8163
8346
|
|
|
8347
|
+
class CreateInterruptibleCapacityReservationAllocationRequest(ServiceRequest):
|
|
8348
|
+
CapacityReservationId: CapacityReservationId
|
|
8349
|
+
InstanceCount: Integer
|
|
8350
|
+
ClientToken: String | None
|
|
8351
|
+
DryRun: Boolean | None
|
|
8352
|
+
TagSpecifications: TagSpecificationList | None
|
|
8353
|
+
|
|
8354
|
+
|
|
8355
|
+
class CreateInterruptibleCapacityReservationAllocationResult(TypedDict, total=False):
|
|
8356
|
+
SourceCapacityReservationId: CapacityReservationId | None
|
|
8357
|
+
TargetInstanceCount: Integer | None
|
|
8358
|
+
Status: InterruptibleCapacityReservationAllocationStatus | None
|
|
8359
|
+
InterruptionType: InterruptionType | None
|
|
8360
|
+
|
|
8361
|
+
|
|
8164
8362
|
class CreateIpamExternalResourceVerificationTokenRequest(ServiceRequest):
|
|
8165
8363
|
DryRun: Boolean | None
|
|
8166
8364
|
IpamId: IpamId
|
|
@@ -8186,6 +8384,28 @@ class CreateIpamExternalResourceVerificationTokenResult(TypedDict, total=False):
|
|
|
8186
8384
|
IpamExternalResourceVerificationToken: IpamExternalResourceVerificationToken | None
|
|
8187
8385
|
|
|
8188
8386
|
|
|
8387
|
+
class CreateIpamPolicyRequest(ServiceRequest):
|
|
8388
|
+
DryRun: Boolean | None
|
|
8389
|
+
TagSpecifications: TagSpecificationList | None
|
|
8390
|
+
ClientToken: String | None
|
|
8391
|
+
IpamId: IpamId
|
|
8392
|
+
|
|
8393
|
+
|
|
8394
|
+
class IpamPolicy(TypedDict, total=False):
|
|
8395
|
+
OwnerId: String | None
|
|
8396
|
+
IpamPolicyId: IpamPolicyId | None
|
|
8397
|
+
IpamPolicyArn: ResourceArn | None
|
|
8398
|
+
IpamPolicyRegion: String | None
|
|
8399
|
+
State: IpamPolicyState | None
|
|
8400
|
+
StateMessage: String | None
|
|
8401
|
+
Tags: TagList | None
|
|
8402
|
+
IpamId: IpamId | None
|
|
8403
|
+
|
|
8404
|
+
|
|
8405
|
+
class CreateIpamPolicyResult(TypedDict, total=False):
|
|
8406
|
+
IpamPolicy: IpamPolicy | None
|
|
8407
|
+
|
|
8408
|
+
|
|
8189
8409
|
class IpamPoolSourceResourceRequest(TypedDict, total=False):
|
|
8190
8410
|
ResourceId: String | None
|
|
8191
8411
|
ResourceType: IpamPoolSourceResourceType | None
|
|
@@ -9233,10 +9453,13 @@ class CreateManagedPrefixListResult(TypedDict, total=False):
|
|
|
9233
9453
|
|
|
9234
9454
|
|
|
9235
9455
|
class CreateNatGatewayRequest(ServiceRequest):
|
|
9456
|
+
AvailabilityMode: AvailabilityMode | None
|
|
9236
9457
|
AllocationId: AllocationId | None
|
|
9237
9458
|
ClientToken: String | None
|
|
9238
9459
|
DryRun: Boolean | None
|
|
9239
|
-
SubnetId: SubnetId
|
|
9460
|
+
SubnetId: SubnetId | None
|
|
9461
|
+
VpcId: VpcId | None
|
|
9462
|
+
AvailabilityZoneAddresses: AvailabilityZoneAddresses | None
|
|
9240
9463
|
TagSpecifications: TagSpecificationList | None
|
|
9241
9464
|
ConnectivityType: ConnectivityType | None
|
|
9242
9465
|
PrivateIpAddress: String | None
|
|
@@ -9245,6 +9468,19 @@ class CreateNatGatewayRequest(ServiceRequest):
|
|
|
9245
9468
|
SecondaryPrivateIpAddressCount: PrivateIpAddressCount | None
|
|
9246
9469
|
|
|
9247
9470
|
|
|
9471
|
+
class NatGatewayAttachedAppliance(TypedDict, total=False):
|
|
9472
|
+
Type: NatGatewayApplianceType | None
|
|
9473
|
+
ApplianceArn: String | None
|
|
9474
|
+
VpcEndpointId: String | None
|
|
9475
|
+
AttachmentState: NatGatewayApplianceState | None
|
|
9476
|
+
ModificationState: NatGatewayApplianceModifyState | None
|
|
9477
|
+
FailureCode: String | None
|
|
9478
|
+
FailureMessage: String | None
|
|
9479
|
+
|
|
9480
|
+
|
|
9481
|
+
NatGatewayAttachedApplianceList = list[NatGatewayAttachedAppliance]
|
|
9482
|
+
|
|
9483
|
+
|
|
9248
9484
|
class ProvisionedBandwidth(TypedDict, total=False):
|
|
9249
9485
|
ProvisionTime: DateTime | None
|
|
9250
9486
|
Provisioned: String | None
|
|
@@ -9266,6 +9502,11 @@ class NatGateway(TypedDict, total=False):
|
|
|
9266
9502
|
VpcId: String | None
|
|
9267
9503
|
Tags: TagList | None
|
|
9268
9504
|
ConnectivityType: ConnectivityType | None
|
|
9505
|
+
AvailabilityMode: AvailabilityMode | None
|
|
9506
|
+
AutoScalingIps: AutoScalingIpsState | None
|
|
9507
|
+
AutoProvisionZones: AutoProvisionZonesState | None
|
|
9508
|
+
AttachedAppliances: NatGatewayAttachedApplianceList | None
|
|
9509
|
+
RouteTableId: String | None
|
|
9269
9510
|
|
|
9270
9511
|
|
|
9271
9512
|
class CreateNatGatewayResult(TypedDict, total=False):
|
|
@@ -10212,6 +10453,70 @@ class CreateTransitGatewayConnectResult(TypedDict, total=False):
|
|
|
10212
10453
|
TransitGatewayConnect: TransitGatewayConnect | None
|
|
10213
10454
|
|
|
10214
10455
|
|
|
10456
|
+
class CreateTransitGatewayMeteringPolicyEntryRequest(ServiceRequest):
|
|
10457
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId
|
|
10458
|
+
PolicyRuleNumber: Integer
|
|
10459
|
+
SourceTransitGatewayAttachmentId: TransitGatewayAttachmentId | None
|
|
10460
|
+
SourceTransitGatewayAttachmentType: TransitGatewayAttachmentResourceType | None
|
|
10461
|
+
SourceCidrBlock: String | None
|
|
10462
|
+
SourcePortRange: String | None
|
|
10463
|
+
DestinationTransitGatewayAttachmentId: TransitGatewayAttachmentId | None
|
|
10464
|
+
DestinationTransitGatewayAttachmentType: TransitGatewayAttachmentResourceType | None
|
|
10465
|
+
DestinationCidrBlock: String | None
|
|
10466
|
+
DestinationPortRange: String | None
|
|
10467
|
+
Protocol: String | None
|
|
10468
|
+
MeteredAccount: TransitGatewayMeteringPayerType
|
|
10469
|
+
DryRun: Boolean | None
|
|
10470
|
+
|
|
10471
|
+
|
|
10472
|
+
class TransitGatewayMeteringPolicyRule(TypedDict, total=False):
|
|
10473
|
+
SourceTransitGatewayAttachmentId: TransitGatewayAttachmentId | None
|
|
10474
|
+
SourceTransitGatewayAttachmentType: TransitGatewayAttachmentResourceType | None
|
|
10475
|
+
SourceCidrBlock: String | None
|
|
10476
|
+
SourcePortRange: String | None
|
|
10477
|
+
DestinationTransitGatewayAttachmentId: TransitGatewayAttachmentId | None
|
|
10478
|
+
DestinationTransitGatewayAttachmentType: TransitGatewayAttachmentResourceType | None
|
|
10479
|
+
DestinationCidrBlock: String | None
|
|
10480
|
+
DestinationPortRange: String | None
|
|
10481
|
+
Protocol: String | None
|
|
10482
|
+
|
|
10483
|
+
|
|
10484
|
+
class TransitGatewayMeteringPolicyEntry(TypedDict, total=False):
|
|
10485
|
+
PolicyRuleNumber: String | None
|
|
10486
|
+
MeteredAccount: TransitGatewayMeteringPayerType | None
|
|
10487
|
+
State: TransitGatewayMeteringPolicyEntryState | None
|
|
10488
|
+
UpdatedAt: MillisecondDateTime | None
|
|
10489
|
+
UpdateEffectiveAt: MillisecondDateTime | None
|
|
10490
|
+
MeteringPolicyRule: TransitGatewayMeteringPolicyRule | None
|
|
10491
|
+
|
|
10492
|
+
|
|
10493
|
+
class CreateTransitGatewayMeteringPolicyEntryResult(TypedDict, total=False):
|
|
10494
|
+
TransitGatewayMeteringPolicyEntry: TransitGatewayMeteringPolicyEntry | None
|
|
10495
|
+
|
|
10496
|
+
|
|
10497
|
+
TransitGatewayAttachmentIdStringList = list[TransitGatewayAttachmentId]
|
|
10498
|
+
|
|
10499
|
+
|
|
10500
|
+
class CreateTransitGatewayMeteringPolicyRequest(ServiceRequest):
|
|
10501
|
+
TransitGatewayId: TransitGatewayId
|
|
10502
|
+
MiddleboxAttachmentIds: TransitGatewayAttachmentIdStringList | None
|
|
10503
|
+
TagSpecifications: TagSpecificationList | None
|
|
10504
|
+
DryRun: Boolean | None
|
|
10505
|
+
|
|
10506
|
+
|
|
10507
|
+
class TransitGatewayMeteringPolicy(TypedDict, total=False):
|
|
10508
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId | None
|
|
10509
|
+
TransitGatewayId: TransitGatewayId | None
|
|
10510
|
+
MiddleboxAttachmentIds: ValueStringList | None
|
|
10511
|
+
State: TransitGatewayMeteringPolicyState | None
|
|
10512
|
+
UpdateEffectiveAt: MillisecondDateTime | None
|
|
10513
|
+
Tags: TagList | None
|
|
10514
|
+
|
|
10515
|
+
|
|
10516
|
+
class CreateTransitGatewayMeteringPolicyResult(TypedDict, total=False):
|
|
10517
|
+
TransitGatewayMeteringPolicy: TransitGatewayMeteringPolicy | None
|
|
10518
|
+
|
|
10519
|
+
|
|
10215
10520
|
class CreateTransitGatewayMulticastDomainRequestOptions(TypedDict, total=False):
|
|
10216
10521
|
Igmpv2Support: Igmpv2SupportValue | None
|
|
10217
10522
|
StaticSourcesSupport: StaticSourcesSupportValue | None
|
|
@@ -10331,6 +10636,11 @@ class CreateTransitGatewayRequest(ServiceRequest):
|
|
|
10331
10636
|
DryRun: Boolean | None
|
|
10332
10637
|
|
|
10333
10638
|
|
|
10639
|
+
class EncryptionSupport(TypedDict, total=False):
|
|
10640
|
+
EncryptionState: EncryptionStateValue | None
|
|
10641
|
+
StateMessage: String | None
|
|
10642
|
+
|
|
10643
|
+
|
|
10334
10644
|
class TransitGatewayOptions(TypedDict, total=False):
|
|
10335
10645
|
AmazonSideAsn: Long | None
|
|
10336
10646
|
TransitGatewayCidrBlocks: ValueStringList | None
|
|
@@ -10343,6 +10653,7 @@ class TransitGatewayOptions(TypedDict, total=False):
|
|
|
10343
10653
|
DnsSupport: DnsSupportValue | None
|
|
10344
10654
|
SecurityGroupReferencingSupport: SecurityGroupReferencingSupportValue | None
|
|
10345
10655
|
MulticastSupport: MulticastSupportValue | None
|
|
10656
|
+
EncryptionSupport: EncryptionSupport | None
|
|
10346
10657
|
|
|
10347
10658
|
|
|
10348
10659
|
class TransitGateway(TypedDict, total=False):
|
|
@@ -10741,6 +11052,16 @@ class CreateVpcBlockPublicAccessExclusionResult(TypedDict, total=False):
|
|
|
10741
11052
|
VpcBlockPublicAccessExclusion: VpcBlockPublicAccessExclusion | None
|
|
10742
11053
|
|
|
10743
11054
|
|
|
11055
|
+
class CreateVpcEncryptionControlRequest(ServiceRequest):
|
|
11056
|
+
DryRun: Boolean | None
|
|
11057
|
+
VpcId: VpcId
|
|
11058
|
+
TagSpecifications: TagSpecificationList | None
|
|
11059
|
+
|
|
11060
|
+
|
|
11061
|
+
class CreateVpcEncryptionControlResult(TypedDict, total=False):
|
|
11062
|
+
VpcEncryptionControl: VpcEncryptionControl | None
|
|
11063
|
+
|
|
11064
|
+
|
|
10744
11065
|
class CreateVpcEndpointConnectionNotificationRequest(ServiceRequest):
|
|
10745
11066
|
DryRun: Boolean | None
|
|
10746
11067
|
ServiceId: VpcEndpointServiceId | None
|
|
@@ -10942,6 +11263,18 @@ class CreateVpcPeeringConnectionResult(TypedDict, total=False):
|
|
|
10942
11263
|
VpcPeeringConnection: VpcPeeringConnection | None
|
|
10943
11264
|
|
|
10944
11265
|
|
|
11266
|
+
class VpcEncryptionControlConfiguration(TypedDict, total=False):
|
|
11267
|
+
Mode: VpcEncryptionControlMode
|
|
11268
|
+
InternetGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11269
|
+
EgressOnlyInternetGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11270
|
+
NatGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11271
|
+
VirtualPrivateGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11272
|
+
VpcPeeringExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11273
|
+
LambdaExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11274
|
+
VpcLatticeExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11275
|
+
ElasticFileSystemExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11276
|
+
|
|
11277
|
+
|
|
10945
11278
|
class CreateVpcRequest(ServiceRequest):
|
|
10946
11279
|
CidrBlock: String | None
|
|
10947
11280
|
Ipv6Pool: Ipv6PoolEc2Id | None
|
|
@@ -10951,6 +11284,7 @@ class CreateVpcRequest(ServiceRequest):
|
|
|
10951
11284
|
Ipv6IpamPoolId: IpamPoolId | None
|
|
10952
11285
|
Ipv6NetmaskLength: NetmaskLength | None
|
|
10953
11286
|
Ipv6CidrBlockNetworkBorderGroup: String | None
|
|
11287
|
+
VpcEncryptionControl: VpcEncryptionControlConfiguration | None
|
|
10954
11288
|
TagSpecifications: TagSpecificationList | None
|
|
10955
11289
|
DryRun: Boolean | None
|
|
10956
11290
|
InstanceTenancy: Tenancy | None
|
|
@@ -10961,6 +11295,26 @@ class CreateVpcResult(TypedDict, total=False):
|
|
|
10961
11295
|
Vpc: Vpc | None
|
|
10962
11296
|
|
|
10963
11297
|
|
|
11298
|
+
class CreateVpnConcentratorRequest(ServiceRequest):
|
|
11299
|
+
Type: VpnConcentratorType
|
|
11300
|
+
TransitGatewayId: TransitGatewayId | None
|
|
11301
|
+
TagSpecifications: TagSpecificationList | None
|
|
11302
|
+
DryRun: Boolean | None
|
|
11303
|
+
|
|
11304
|
+
|
|
11305
|
+
class VpnConcentrator(TypedDict, total=False):
|
|
11306
|
+
VpnConcentratorId: String | None
|
|
11307
|
+
State: String | None
|
|
11308
|
+
TransitGatewayId: String | None
|
|
11309
|
+
TransitGatewayAttachmentId: String | None
|
|
11310
|
+
Type: String | None
|
|
11311
|
+
Tags: TagList | None
|
|
11312
|
+
|
|
11313
|
+
|
|
11314
|
+
class CreateVpnConcentratorResult(TypedDict, total=False):
|
|
11315
|
+
VpnConcentrator: VpnConcentrator | None
|
|
11316
|
+
|
|
11317
|
+
|
|
10964
11318
|
class VpnTunnelLogOptionsSpecification(TypedDict, total=False):
|
|
10965
11319
|
CloudWatchLogOptions: CloudWatchLogOptionsSpecification | None
|
|
10966
11320
|
|
|
@@ -11059,6 +11413,7 @@ class CreateVpnConnectionRequest(ServiceRequest):
|
|
|
11059
11413
|
Type: String
|
|
11060
11414
|
VpnGatewayId: VpnGatewayId | None
|
|
11061
11415
|
TransitGatewayId: TransitGatewayId | None
|
|
11416
|
+
VpnConcentratorId: VpnConcentratorId | None
|
|
11062
11417
|
TagSpecifications: TagSpecificationList | None
|
|
11063
11418
|
PreSharedKeyStorage: String | None
|
|
11064
11419
|
DryRun: Boolean | None
|
|
@@ -11183,6 +11538,7 @@ class VpnConnectionOptions(TypedDict, total=False):
|
|
|
11183
11538
|
class VpnConnection(TypedDict, total=False):
|
|
11184
11539
|
Category: String | None
|
|
11185
11540
|
TransitGatewayId: String | None
|
|
11541
|
+
VpnConcentratorId: String | None
|
|
11186
11542
|
CoreNetworkArn: String | None
|
|
11187
11543
|
CoreNetworkAttachmentArn: String | None
|
|
11188
11544
|
GatewayAssociationState: GatewayAssociationState | None
|
|
@@ -11472,6 +11828,15 @@ class DeleteIpamExternalResourceVerificationTokenResult(TypedDict, total=False):
|
|
|
11472
11828
|
IpamExternalResourceVerificationToken: IpamExternalResourceVerificationToken | None
|
|
11473
11829
|
|
|
11474
11830
|
|
|
11831
|
+
class DeleteIpamPolicyRequest(ServiceRequest):
|
|
11832
|
+
DryRun: Boolean | None
|
|
11833
|
+
IpamPolicyId: IpamPolicyId
|
|
11834
|
+
|
|
11835
|
+
|
|
11836
|
+
class DeleteIpamPolicyResult(TypedDict, total=False):
|
|
11837
|
+
IpamPolicy: IpamPolicy | None
|
|
11838
|
+
|
|
11839
|
+
|
|
11475
11840
|
class DeleteIpamPoolRequest(ServiceRequest):
|
|
11476
11841
|
DryRun: Boolean | None
|
|
11477
11842
|
IpamPoolId: IpamPoolId
|
|
@@ -11921,6 +12286,25 @@ class DeleteTransitGatewayConnectResult(TypedDict, total=False):
|
|
|
11921
12286
|
TransitGatewayConnect: TransitGatewayConnect | None
|
|
11922
12287
|
|
|
11923
12288
|
|
|
12289
|
+
class DeleteTransitGatewayMeteringPolicyEntryRequest(ServiceRequest):
|
|
12290
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId
|
|
12291
|
+
PolicyRuleNumber: Integer
|
|
12292
|
+
DryRun: Boolean | None
|
|
12293
|
+
|
|
12294
|
+
|
|
12295
|
+
class DeleteTransitGatewayMeteringPolicyEntryResult(TypedDict, total=False):
|
|
12296
|
+
TransitGatewayMeteringPolicyEntry: TransitGatewayMeteringPolicyEntry | None
|
|
12297
|
+
|
|
12298
|
+
|
|
12299
|
+
class DeleteTransitGatewayMeteringPolicyRequest(ServiceRequest):
|
|
12300
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId
|
|
12301
|
+
DryRun: Boolean | None
|
|
12302
|
+
|
|
12303
|
+
|
|
12304
|
+
class DeleteTransitGatewayMeteringPolicyResult(TypedDict, total=False):
|
|
12305
|
+
TransitGatewayMeteringPolicy: TransitGatewayMeteringPolicy | None
|
|
12306
|
+
|
|
12307
|
+
|
|
11924
12308
|
class DeleteTransitGatewayMulticastDomainRequest(ServiceRequest):
|
|
11925
12309
|
TransitGatewayMulticastDomainId: TransitGatewayMulticastDomainId
|
|
11926
12310
|
DryRun: Boolean | None
|
|
@@ -12058,6 +12442,15 @@ class DeleteVpcBlockPublicAccessExclusionResult(TypedDict, total=False):
|
|
|
12058
12442
|
VpcBlockPublicAccessExclusion: VpcBlockPublicAccessExclusion | None
|
|
12059
12443
|
|
|
12060
12444
|
|
|
12445
|
+
class DeleteVpcEncryptionControlRequest(ServiceRequest):
|
|
12446
|
+
DryRun: Boolean | None
|
|
12447
|
+
VpcEncryptionControlId: VpcEncryptionControlId
|
|
12448
|
+
|
|
12449
|
+
|
|
12450
|
+
class DeleteVpcEncryptionControlResult(TypedDict, total=False):
|
|
12451
|
+
VpcEncryptionControl: VpcEncryptionControl | None
|
|
12452
|
+
|
|
12453
|
+
|
|
12061
12454
|
class DeleteVpcEndpointConnectionNotificationsRequest(ServiceRequest):
|
|
12062
12455
|
DryRun: Boolean | None
|
|
12063
12456
|
ConnectionNotificationIds: ConnectionNotificationIdsList
|
|
@@ -12102,6 +12495,15 @@ class DeleteVpcRequest(ServiceRequest):
|
|
|
12102
12495
|
DryRun: Boolean | None
|
|
12103
12496
|
|
|
12104
12497
|
|
|
12498
|
+
class DeleteVpnConcentratorRequest(ServiceRequest):
|
|
12499
|
+
VpnConcentratorId: VpnConcentratorId
|
|
12500
|
+
DryRun: Boolean | None
|
|
12501
|
+
|
|
12502
|
+
|
|
12503
|
+
class DeleteVpnConcentratorResult(TypedDict, total=False):
|
|
12504
|
+
Return: Boolean | None
|
|
12505
|
+
|
|
12506
|
+
|
|
12105
12507
|
class DeleteVpnConnectionRequest(ServiceRequest):
|
|
12106
12508
|
VpnConnectionId: VpnConnectionId
|
|
12107
12509
|
DryRun: Boolean | None
|
|
@@ -13723,6 +14125,47 @@ class DescribeInstanceImageMetadataResult(TypedDict, total=False):
|
|
|
13723
14125
|
NextToken: String | None
|
|
13724
14126
|
|
|
13725
14127
|
|
|
14128
|
+
class DescribeInstanceSqlHaHistoryStatesRequest(ServiceRequest):
|
|
14129
|
+
InstanceIds: InstanceIdStringList | None
|
|
14130
|
+
StartTime: MillisecondDateTime | None
|
|
14131
|
+
EndTime: MillisecondDateTime | None
|
|
14132
|
+
NextToken: NextToken | None
|
|
14133
|
+
MaxResults: DescribeInstanceSqlHaStatesRequestMaxResultsInteger | None
|
|
14134
|
+
Filters: FilterList | None
|
|
14135
|
+
DryRun: Boolean | None
|
|
14136
|
+
|
|
14137
|
+
|
|
14138
|
+
class RegisteredInstance(TypedDict, total=False):
|
|
14139
|
+
InstanceId: InstanceId | None
|
|
14140
|
+
SqlServerLicenseUsage: SqlServerLicenseUsage | None
|
|
14141
|
+
HaStatus: HaStatus | None
|
|
14142
|
+
ProcessingStatus: String | None
|
|
14143
|
+
LastUpdatedTime: MillisecondDateTime | None
|
|
14144
|
+
SqlServerCredentials: String | None
|
|
14145
|
+
Tags: TagList | None
|
|
14146
|
+
|
|
14147
|
+
|
|
14148
|
+
RegisteredInstanceList = list[RegisteredInstance]
|
|
14149
|
+
|
|
14150
|
+
|
|
14151
|
+
class DescribeInstanceSqlHaHistoryStatesResult(TypedDict, total=False):
|
|
14152
|
+
Instances: RegisteredInstanceList | None
|
|
14153
|
+
NextToken: NextToken | None
|
|
14154
|
+
|
|
14155
|
+
|
|
14156
|
+
class DescribeInstanceSqlHaStatesRequest(ServiceRequest):
|
|
14157
|
+
InstanceIds: InstanceIdStringList | None
|
|
14158
|
+
NextToken: NextToken | None
|
|
14159
|
+
MaxResults: DescribeInstanceSqlHaStatesRequestMaxResultsInteger | None
|
|
14160
|
+
Filters: FilterList | None
|
|
14161
|
+
DryRun: Boolean | None
|
|
14162
|
+
|
|
14163
|
+
|
|
14164
|
+
class DescribeInstanceSqlHaStatesResult(TypedDict, total=False):
|
|
14165
|
+
Instances: RegisteredInstanceList | None
|
|
14166
|
+
NextToken: NextToken | None
|
|
14167
|
+
|
|
14168
|
+
|
|
13726
14169
|
class DescribeInstanceStatusRequest(ServiceRequest):
|
|
13727
14170
|
InstanceIds: InstanceIdStringList | None
|
|
13728
14171
|
MaxResults: Integer | None
|
|
@@ -14417,18 +14860,34 @@ class DescribeIpamExternalResourceVerificationTokensResult(TypedDict, total=Fals
|
|
|
14417
14860
|
IpamExternalResourceVerificationTokens: IpamExternalResourceVerificationTokenSet | None
|
|
14418
14861
|
|
|
14419
14862
|
|
|
14420
|
-
class
|
|
14863
|
+
class DescribeIpamPoliciesRequest(ServiceRequest):
|
|
14421
14864
|
DryRun: Boolean | None
|
|
14422
14865
|
Filters: FilterList | None
|
|
14423
14866
|
MaxResults: IpamMaxResults | None
|
|
14424
14867
|
NextToken: NextToken | None
|
|
14425
|
-
|
|
14868
|
+
IpamPolicyIds: ValueStringList | None
|
|
14426
14869
|
|
|
14427
14870
|
|
|
14428
|
-
|
|
14871
|
+
IpamPolicySet = list[IpamPolicy]
|
|
14429
14872
|
|
|
14430
14873
|
|
|
14431
|
-
class
|
|
14874
|
+
class DescribeIpamPoliciesResult(TypedDict, total=False):
|
|
14875
|
+
NextToken: NextToken | None
|
|
14876
|
+
IpamPolicies: IpamPolicySet | None
|
|
14877
|
+
|
|
14878
|
+
|
|
14879
|
+
class DescribeIpamPoolsRequest(ServiceRequest):
|
|
14880
|
+
DryRun: Boolean | None
|
|
14881
|
+
Filters: FilterList | None
|
|
14882
|
+
MaxResults: IpamMaxResults | None
|
|
14883
|
+
NextToken: NextToken | None
|
|
14884
|
+
IpamPoolIds: ValueStringList | None
|
|
14885
|
+
|
|
14886
|
+
|
|
14887
|
+
IpamPoolSet = list[IpamPool]
|
|
14888
|
+
|
|
14889
|
+
|
|
14890
|
+
class DescribeIpamPoolsResult(TypedDict, total=False):
|
|
14432
14891
|
NextToken: NextToken | None
|
|
14433
14892
|
IpamPools: IpamPoolSet | None
|
|
14434
14893
|
|
|
@@ -16325,9 +16784,6 @@ class DescribeTrafficMirrorTargetsResult(TypedDict, total=False):
|
|
|
16325
16784
|
NextToken: String | None
|
|
16326
16785
|
|
|
16327
16786
|
|
|
16328
|
-
TransitGatewayAttachmentIdStringList = list[TransitGatewayAttachmentId]
|
|
16329
|
-
|
|
16330
|
-
|
|
16331
16787
|
class DescribeTransitGatewayAttachmentsRequest(ServiceRequest):
|
|
16332
16788
|
TransitGatewayAttachmentIds: TransitGatewayAttachmentIdStringList | None
|
|
16333
16789
|
Filters: FilterList | None
|
|
@@ -16397,6 +16853,25 @@ class DescribeTransitGatewayConnectsResult(TypedDict, total=False):
|
|
|
16397
16853
|
NextToken: String | None
|
|
16398
16854
|
|
|
16399
16855
|
|
|
16856
|
+
TransitGatewayMeteringPolicyIdStringList = list[TransitGatewayMeteringPolicyId]
|
|
16857
|
+
|
|
16858
|
+
|
|
16859
|
+
class DescribeTransitGatewayMeteringPoliciesRequest(ServiceRequest):
|
|
16860
|
+
TransitGatewayMeteringPolicyIds: TransitGatewayMeteringPolicyIdStringList | None
|
|
16861
|
+
Filters: FilterList | None
|
|
16862
|
+
MaxResults: TransitGatewayMaxResults | None
|
|
16863
|
+
NextToken: String | None
|
|
16864
|
+
DryRun: Boolean | None
|
|
16865
|
+
|
|
16866
|
+
|
|
16867
|
+
TransitGatewayMeteringPolicyList = list[TransitGatewayMeteringPolicy]
|
|
16868
|
+
|
|
16869
|
+
|
|
16870
|
+
class DescribeTransitGatewayMeteringPoliciesResult(TypedDict, total=False):
|
|
16871
|
+
TransitGatewayMeteringPolicies: TransitGatewayMeteringPolicyList | None
|
|
16872
|
+
NextToken: String | None
|
|
16873
|
+
|
|
16874
|
+
|
|
16400
16875
|
TransitGatewayMulticastDomainIdStringList = list[TransitGatewayMulticastDomainId]
|
|
16401
16876
|
|
|
16402
16877
|
|
|
@@ -16897,6 +17372,27 @@ class DescribeVpcClassicLinkResult(TypedDict, total=False):
|
|
|
16897
17372
|
Vpcs: VpcClassicLinkList | None
|
|
16898
17373
|
|
|
16899
17374
|
|
|
17375
|
+
VpcIdStringList = list[VpcId]
|
|
17376
|
+
VpcEncryptionControlIdList = list[VpcEncryptionControlId]
|
|
17377
|
+
|
|
17378
|
+
|
|
17379
|
+
class DescribeVpcEncryptionControlsRequest(ServiceRequest):
|
|
17380
|
+
DryRun: Boolean | None
|
|
17381
|
+
Filters: FilterList | None
|
|
17382
|
+
VpcEncryptionControlIds: VpcEncryptionControlIdList | None
|
|
17383
|
+
VpcIds: VpcIdStringList | None
|
|
17384
|
+
NextToken: String | None
|
|
17385
|
+
MaxResults: DescribeVpcEncryptionControlsMaxResults | None
|
|
17386
|
+
|
|
17387
|
+
|
|
17388
|
+
VpcEncryptionControlList = list[VpcEncryptionControl]
|
|
17389
|
+
|
|
17390
|
+
|
|
17391
|
+
class DescribeVpcEncryptionControlsResult(TypedDict, total=False):
|
|
17392
|
+
VpcEncryptionControls: VpcEncryptionControlList | None
|
|
17393
|
+
NextToken: String | None
|
|
17394
|
+
|
|
17395
|
+
|
|
16900
17396
|
class DescribeVpcEndpointAssociationsRequest(ServiceRequest):
|
|
16901
17397
|
DryRun: Boolean | None
|
|
16902
17398
|
VpcEndpointIds: VpcEndpointIdList | None
|
|
@@ -17080,9 +17576,6 @@ class DescribeVpcPeeringConnectionsResult(TypedDict, total=False):
|
|
|
17080
17576
|
NextToken: String | None
|
|
17081
17577
|
|
|
17082
17578
|
|
|
17083
|
-
VpcIdStringList = list[VpcId]
|
|
17084
|
-
|
|
17085
|
-
|
|
17086
17579
|
class DescribeVpcsRequest(ServiceRequest):
|
|
17087
17580
|
Filters: FilterList | None
|
|
17088
17581
|
VpcIds: VpcIdStringList | None
|
|
@@ -17099,6 +17592,25 @@ class DescribeVpcsResult(TypedDict, total=False):
|
|
|
17099
17592
|
Vpcs: VpcList | None
|
|
17100
17593
|
|
|
17101
17594
|
|
|
17595
|
+
VpnConcentratorIdStringList = list[VpnConcentratorId]
|
|
17596
|
+
|
|
17597
|
+
|
|
17598
|
+
class DescribeVpnConcentratorsRequest(ServiceRequest):
|
|
17599
|
+
VpnConcentratorIds: VpnConcentratorIdStringList | None
|
|
17600
|
+
Filters: FilterList | None
|
|
17601
|
+
MaxResults: GVCDMaxResults | None
|
|
17602
|
+
NextToken: NextToken | None
|
|
17603
|
+
DryRun: Boolean | None
|
|
17604
|
+
|
|
17605
|
+
|
|
17606
|
+
VpnConcentratorList = list[VpnConcentrator]
|
|
17607
|
+
|
|
17608
|
+
|
|
17609
|
+
class DescribeVpnConcentratorsResult(TypedDict, total=False):
|
|
17610
|
+
VpnConcentrators: VpnConcentratorList | None
|
|
17611
|
+
NextToken: NextToken | None
|
|
17612
|
+
|
|
17613
|
+
|
|
17102
17614
|
VpnConnectionIdStringList = list[VpnConnectionId]
|
|
17103
17615
|
|
|
17104
17616
|
|
|
@@ -17334,6 +17846,18 @@ class DisableImageResult(TypedDict, total=False):
|
|
|
17334
17846
|
Return: Boolean | None
|
|
17335
17847
|
|
|
17336
17848
|
|
|
17849
|
+
InstanceIdUpdateStringList = list[InstanceId]
|
|
17850
|
+
|
|
17851
|
+
|
|
17852
|
+
class DisableInstanceSqlHaStandbyDetectionsRequest(ServiceRequest):
|
|
17853
|
+
InstanceIds: InstanceIdUpdateStringList
|
|
17854
|
+
DryRun: Boolean | None
|
|
17855
|
+
|
|
17856
|
+
|
|
17857
|
+
class DisableInstanceSqlHaStandbyDetectionsResult(TypedDict, total=False):
|
|
17858
|
+
Instances: RegisteredInstanceList | None
|
|
17859
|
+
|
|
17860
|
+
|
|
17337
17861
|
class DisableIpamOrganizationAdminAccountRequest(ServiceRequest):
|
|
17338
17862
|
DryRun: Boolean | None
|
|
17339
17863
|
DelegatedAdminAccountId: String
|
|
@@ -17343,6 +17867,16 @@ class DisableIpamOrganizationAdminAccountResult(TypedDict, total=False):
|
|
|
17343
17867
|
Success: Boolean | None
|
|
17344
17868
|
|
|
17345
17869
|
|
|
17870
|
+
class DisableIpamPolicyRequest(ServiceRequest):
|
|
17871
|
+
DryRun: Boolean | None
|
|
17872
|
+
IpamPolicyId: IpamPolicyId
|
|
17873
|
+
OrganizationTargetId: String | None
|
|
17874
|
+
|
|
17875
|
+
|
|
17876
|
+
class DisableIpamPolicyResult(TypedDict, total=False):
|
|
17877
|
+
Return: Boolean | None
|
|
17878
|
+
|
|
17879
|
+
|
|
17346
17880
|
class DisableRouteServerPropagationRequest(ServiceRequest):
|
|
17347
17881
|
RouteServerId: RouteServerId
|
|
17348
17882
|
RouteTableId: RouteTableId
|
|
@@ -17810,6 +18344,16 @@ class EnableImageResult(TypedDict, total=False):
|
|
|
17810
18344
|
Return: Boolean | None
|
|
17811
18345
|
|
|
17812
18346
|
|
|
18347
|
+
class EnableInstanceSqlHaStandbyDetectionsRequest(ServiceRequest):
|
|
18348
|
+
InstanceIds: InstanceIdUpdateStringList
|
|
18349
|
+
SqlServerCredentials: SecretArn | None
|
|
18350
|
+
DryRun: Boolean | None
|
|
18351
|
+
|
|
18352
|
+
|
|
18353
|
+
class EnableInstanceSqlHaStandbyDetectionsResult(TypedDict, total=False):
|
|
18354
|
+
Instances: RegisteredInstanceList | None
|
|
18355
|
+
|
|
18356
|
+
|
|
17813
18357
|
class EnableIpamOrganizationAdminAccountRequest(ServiceRequest):
|
|
17814
18358
|
DryRun: Boolean | None
|
|
17815
18359
|
DelegatedAdminAccountId: String
|
|
@@ -17819,6 +18363,16 @@ class EnableIpamOrganizationAdminAccountResult(TypedDict, total=False):
|
|
|
17819
18363
|
Success: Boolean | None
|
|
17820
18364
|
|
|
17821
18365
|
|
|
18366
|
+
class EnableIpamPolicyRequest(ServiceRequest):
|
|
18367
|
+
DryRun: Boolean | None
|
|
18368
|
+
IpamPolicyId: IpamPolicyId
|
|
18369
|
+
OrganizationTargetId: String | None
|
|
18370
|
+
|
|
18371
|
+
|
|
18372
|
+
class EnableIpamPolicyResult(TypedDict, total=False):
|
|
18373
|
+
IpamPolicyId: IpamPolicyId | None
|
|
18374
|
+
|
|
18375
|
+
|
|
17822
18376
|
class EnableReachabilityAnalyzerOrganizationSharingRequest(ServiceRequest):
|
|
17823
18377
|
DryRun: Boolean | None
|
|
17824
18378
|
|
|
@@ -18175,6 +18729,9 @@ class GetCapacityReservationUsageResult(TypedDict, total=False):
|
|
|
18175
18729
|
AvailableInstanceCount: Integer | None
|
|
18176
18730
|
State: CapacityReservationState | None
|
|
18177
18731
|
InstanceUsages: InstanceUsageSet | None
|
|
18732
|
+
Interruptible: BoxedBoolean | None
|
|
18733
|
+
InterruptibleCapacityAllocation: InterruptibleCapacityAllocation | None
|
|
18734
|
+
InterruptionInfo: InterruptionInfo | None
|
|
18178
18735
|
|
|
18179
18736
|
|
|
18180
18737
|
class GetCoipPoolUsageRequest(ServiceRequest):
|
|
@@ -18263,6 +18820,16 @@ class GetEbsEncryptionByDefaultResult(TypedDict, total=False):
|
|
|
18263
18820
|
SseType: SSEType | None
|
|
18264
18821
|
|
|
18265
18822
|
|
|
18823
|
+
class GetEnabledIpamPolicyRequest(ServiceRequest):
|
|
18824
|
+
DryRun: Boolean | None
|
|
18825
|
+
|
|
18826
|
+
|
|
18827
|
+
class GetEnabledIpamPolicyResult(TypedDict, total=False):
|
|
18828
|
+
IpamPolicyEnabled: Boolean | None
|
|
18829
|
+
IpamPolicyId: IpamPolicyId | None
|
|
18830
|
+
ManagedBy: IpamPolicyManagedBy | None
|
|
18831
|
+
|
|
18832
|
+
|
|
18266
18833
|
class IntegrateServices(TypedDict, total=False):
|
|
18267
18834
|
AthenaIntegrations: AthenaIntegrationsSet | None
|
|
18268
18835
|
|
|
@@ -18572,6 +19139,58 @@ class GetIpamDiscoveredResourceCidrsResult(TypedDict, total=False):
|
|
|
18572
19139
|
NextToken: NextToken | None
|
|
18573
19140
|
|
|
18574
19141
|
|
|
19142
|
+
class GetIpamPolicyAllocationRulesRequest(ServiceRequest):
|
|
19143
|
+
DryRun: Boolean | None
|
|
19144
|
+
IpamPolicyId: IpamPolicyId
|
|
19145
|
+
Filters: FilterList | None
|
|
19146
|
+
Locale: String | None
|
|
19147
|
+
ResourceType: IpamPolicyResourceType | None
|
|
19148
|
+
MaxResults: IpamMaxResults | None
|
|
19149
|
+
NextToken: NextToken | None
|
|
19150
|
+
|
|
19151
|
+
|
|
19152
|
+
class IpamPolicyAllocationRule(TypedDict, total=False):
|
|
19153
|
+
SourceIpamPoolId: IpamPoolId | None
|
|
19154
|
+
|
|
19155
|
+
|
|
19156
|
+
IpamPolicyAllocationRuleList = list[IpamPolicyAllocationRule]
|
|
19157
|
+
|
|
19158
|
+
|
|
19159
|
+
class IpamPolicyDocument(TypedDict, total=False):
|
|
19160
|
+
IpamPolicyId: IpamPolicyId | None
|
|
19161
|
+
Locale: String | None
|
|
19162
|
+
ResourceType: IpamPolicyResourceType | None
|
|
19163
|
+
AllocationRules: IpamPolicyAllocationRuleList | None
|
|
19164
|
+
|
|
19165
|
+
|
|
19166
|
+
IpamPolicyDocumentSet = list[IpamPolicyDocument]
|
|
19167
|
+
|
|
19168
|
+
|
|
19169
|
+
class GetIpamPolicyAllocationRulesResult(TypedDict, total=False):
|
|
19170
|
+
IpamPolicyDocuments: IpamPolicyDocumentSet | None
|
|
19171
|
+
NextToken: NextToken | None
|
|
19172
|
+
|
|
19173
|
+
|
|
19174
|
+
class GetIpamPolicyOrganizationTargetsRequest(ServiceRequest):
|
|
19175
|
+
DryRun: Boolean | None
|
|
19176
|
+
MaxResults: IpamMaxResults | None
|
|
19177
|
+
NextToken: NextToken | None
|
|
19178
|
+
IpamPolicyId: IpamPolicyId
|
|
19179
|
+
Filters: FilterList | None
|
|
19180
|
+
|
|
19181
|
+
|
|
19182
|
+
class IpamPolicyOrganizationTarget(TypedDict, total=False):
|
|
19183
|
+
OrganizationTargetId: String | None
|
|
19184
|
+
|
|
19185
|
+
|
|
19186
|
+
IpamPolicyOrganizationTargetSet = list[IpamPolicyOrganizationTarget]
|
|
19187
|
+
|
|
19188
|
+
|
|
19189
|
+
class GetIpamPolicyOrganizationTargetsResult(TypedDict, total=False):
|
|
19190
|
+
OrganizationTargets: IpamPolicyOrganizationTargetSet | None
|
|
19191
|
+
NextToken: NextToken | None
|
|
19192
|
+
|
|
19193
|
+
|
|
18575
19194
|
class GetIpamPoolAllocationsRequest(ServiceRequest):
|
|
18576
19195
|
DryRun: Boolean | None
|
|
18577
19196
|
IpamPoolId: IpamPoolId
|
|
@@ -19034,6 +19653,22 @@ class GetTransitGatewayAttachmentPropagationsResult(TypedDict, total=False):
|
|
|
19034
19653
|
NextToken: String | None
|
|
19035
19654
|
|
|
19036
19655
|
|
|
19656
|
+
class GetTransitGatewayMeteringPolicyEntriesRequest(ServiceRequest):
|
|
19657
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId
|
|
19658
|
+
Filters: FilterList | None
|
|
19659
|
+
MaxResults: TransitGatewayMaxResults | None
|
|
19660
|
+
NextToken: String | None
|
|
19661
|
+
DryRun: Boolean | None
|
|
19662
|
+
|
|
19663
|
+
|
|
19664
|
+
TransitGatewayMeteringPolicyEntryList = list[TransitGatewayMeteringPolicyEntry]
|
|
19665
|
+
|
|
19666
|
+
|
|
19667
|
+
class GetTransitGatewayMeteringPolicyEntriesResult(TypedDict, total=False):
|
|
19668
|
+
TransitGatewayMeteringPolicyEntries: TransitGatewayMeteringPolicyEntryList | None
|
|
19669
|
+
NextToken: String | None
|
|
19670
|
+
|
|
19671
|
+
|
|
19037
19672
|
class GetTransitGatewayMulticastDomainAssociationsRequest(ServiceRequest):
|
|
19038
19673
|
TransitGatewayMulticastDomainId: TransitGatewayMulticastDomainId
|
|
19039
19674
|
Filters: FilterList | None
|
|
@@ -19213,6 +19848,28 @@ class GetVerifiedAccessGroupPolicyResult(TypedDict, total=False):
|
|
|
19213
19848
|
PolicyDocument: String | None
|
|
19214
19849
|
|
|
19215
19850
|
|
|
19851
|
+
class GetVpcResourcesBlockingEncryptionEnforcementRequest(ServiceRequest):
|
|
19852
|
+
VpcId: VpcId
|
|
19853
|
+
MaxResults: GetVpcResourcesBlockingEncryptionEnforcementMaxResults | None
|
|
19854
|
+
NextToken: String | None
|
|
19855
|
+
DryRun: Boolean | None
|
|
19856
|
+
|
|
19857
|
+
|
|
19858
|
+
class VpcEncryptionNonCompliantResource(TypedDict, total=False):
|
|
19859
|
+
Id: String | None
|
|
19860
|
+
Type: String | None
|
|
19861
|
+
Description: String | None
|
|
19862
|
+
IsExcludable: Boolean | None
|
|
19863
|
+
|
|
19864
|
+
|
|
19865
|
+
VpcEncryptionNonCompliantResourceList = list[VpcEncryptionNonCompliantResource]
|
|
19866
|
+
|
|
19867
|
+
|
|
19868
|
+
class GetVpcResourcesBlockingEncryptionEnforcementResult(TypedDict, total=False):
|
|
19869
|
+
NonCompliantResources: VpcEncryptionNonCompliantResourceList | None
|
|
19870
|
+
NextToken: String | None
|
|
19871
|
+
|
|
19872
|
+
|
|
19216
19873
|
class GetVpnConnectionDeviceSampleConfigurationRequest(ServiceRequest):
|
|
19217
19874
|
VpnConnectionId: VpnConnectionId
|
|
19218
19875
|
VpnConnectionDeviceTypeId: VpnConnectionDeviceTypeId
|
|
@@ -19570,6 +20227,13 @@ class IpamCidrAuthorizationContext(TypedDict, total=False):
|
|
|
19570
20227
|
Signature: String | None
|
|
19571
20228
|
|
|
19572
20229
|
|
|
20230
|
+
class IpamPolicyAllocationRuleRequest(TypedDict, total=False):
|
|
20231
|
+
SourceIpamPoolId: IpamPoolId | None
|
|
20232
|
+
|
|
20233
|
+
|
|
20234
|
+
IpamPolicyAllocationRuleListRequest = list[IpamPolicyAllocationRuleRequest]
|
|
20235
|
+
|
|
20236
|
+
|
|
19573
20237
|
class KeyPair(TypedDict, total=False):
|
|
19574
20238
|
KeyPairId: String | None
|
|
19575
20239
|
Tags: TagList | None
|
|
@@ -19631,6 +20295,39 @@ class ListSnapshotsInRecycleBinResult(TypedDict, total=False):
|
|
|
19631
20295
|
NextToken: String | None
|
|
19632
20296
|
|
|
19633
20297
|
|
|
20298
|
+
class ListVolumesInRecycleBinRequest(ServiceRequest):
|
|
20299
|
+
VolumeIds: VolumeIdStringList | None
|
|
20300
|
+
DryRun: Boolean | None
|
|
20301
|
+
MaxResults: Integer | None
|
|
20302
|
+
NextToken: String | None
|
|
20303
|
+
|
|
20304
|
+
|
|
20305
|
+
class VolumeRecycleBinInfo(TypedDict, total=False):
|
|
20306
|
+
VolumeId: VolumeId | None
|
|
20307
|
+
VolumeType: VolumeType | None
|
|
20308
|
+
State: VolumeState | None
|
|
20309
|
+
Size: Integer | None
|
|
20310
|
+
Iops: Integer | None
|
|
20311
|
+
Throughput: Integer | None
|
|
20312
|
+
OutpostArn: String | None
|
|
20313
|
+
AvailabilityZone: String | None
|
|
20314
|
+
AvailabilityZoneId: String | None
|
|
20315
|
+
SourceVolumeId: String | None
|
|
20316
|
+
SnapshotId: String | None
|
|
20317
|
+
Operator: OperatorResponse | None
|
|
20318
|
+
CreateTime: DateTime | None
|
|
20319
|
+
RecycleBinEnterTime: MillisecondDateTime | None
|
|
20320
|
+
RecycleBinExitTime: MillisecondDateTime | None
|
|
20321
|
+
|
|
20322
|
+
|
|
20323
|
+
VolumeRecycleBinInfoList = list[VolumeRecycleBinInfo]
|
|
20324
|
+
|
|
20325
|
+
|
|
20326
|
+
class ListVolumesInRecycleBinResult(TypedDict, total=False):
|
|
20327
|
+
Volumes: VolumeRecycleBinInfoList | None
|
|
20328
|
+
NextToken: String | None
|
|
20329
|
+
|
|
20330
|
+
|
|
19634
20331
|
class LoadPermissionRequest(TypedDict, total=False):
|
|
19635
20332
|
Group: PermissionGroup | None
|
|
19636
20333
|
UserId: String | None
|
|
@@ -20014,6 +20711,18 @@ class ModifyInstancePlacementResult(TypedDict, total=False):
|
|
|
20014
20711
|
Return: Boolean | None
|
|
20015
20712
|
|
|
20016
20713
|
|
|
20714
|
+
class ModifyIpamPolicyAllocationRulesRequest(ServiceRequest):
|
|
20715
|
+
DryRun: Boolean | None
|
|
20716
|
+
IpamPolicyId: IpamPolicyId
|
|
20717
|
+
Locale: String
|
|
20718
|
+
ResourceType: IpamPolicyResourceType
|
|
20719
|
+
AllocationRules: IpamPolicyAllocationRuleListRequest | None
|
|
20720
|
+
|
|
20721
|
+
|
|
20722
|
+
class ModifyIpamPolicyAllocationRulesResult(TypedDict, total=False):
|
|
20723
|
+
IpamPolicyDocument: IpamPolicyDocument | None
|
|
20724
|
+
|
|
20725
|
+
|
|
20017
20726
|
class ModifyIpamPoolRequest(ServiceRequest):
|
|
20018
20727
|
DryRun: Boolean | None
|
|
20019
20728
|
IpamPoolId: IpamPoolId
|
|
@@ -20370,6 +21079,17 @@ class ModifyTrafficMirrorSessionResult(TypedDict, total=False):
|
|
|
20370
21079
|
TrafficMirrorSession: TrafficMirrorSession | None
|
|
20371
21080
|
|
|
20372
21081
|
|
|
21082
|
+
class ModifyTransitGatewayMeteringPolicyRequest(ServiceRequest):
|
|
21083
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId
|
|
21084
|
+
AddMiddleboxAttachmentIds: TransitGatewayAttachmentIdStringList | None
|
|
21085
|
+
RemoveMiddleboxAttachmentIds: TransitGatewayAttachmentIdStringList | None
|
|
21086
|
+
DryRun: Boolean | None
|
|
21087
|
+
|
|
21088
|
+
|
|
21089
|
+
class ModifyTransitGatewayMeteringPolicyResult(TypedDict, total=False):
|
|
21090
|
+
TransitGatewayMeteringPolicy: TransitGatewayMeteringPolicy | None
|
|
21091
|
+
|
|
21092
|
+
|
|
20373
21093
|
class ModifyTransitGatewayOptions(TypedDict, total=False):
|
|
20374
21094
|
AddTransitGatewayCidrBlocks: TransitGatewayCidrBlockStringList | None
|
|
20375
21095
|
RemoveTransitGatewayCidrBlocks: TransitGatewayCidrBlockStringList | None
|
|
@@ -20382,6 +21102,7 @@ class ModifyTransitGatewayOptions(TypedDict, total=False):
|
|
|
20382
21102
|
DefaultRouteTablePropagation: DefaultRouteTablePropagationValue | None
|
|
20383
21103
|
PropagationDefaultRouteTableId: TransitGatewayRouteTableId | None
|
|
20384
21104
|
AmazonSideAsn: Long | None
|
|
21105
|
+
EncryptionSupport: EncryptionSupportOptionValue | None
|
|
20385
21106
|
|
|
20386
21107
|
|
|
20387
21108
|
class ModifyTransitGatewayPrefixListReferenceRequest(ServiceRequest):
|
|
@@ -20652,6 +21373,24 @@ class ModifyVpcBlockPublicAccessOptionsResult(TypedDict, total=False):
|
|
|
20652
21373
|
VpcBlockPublicAccessOptions: VpcBlockPublicAccessOptions | None
|
|
20653
21374
|
|
|
20654
21375
|
|
|
21376
|
+
class ModifyVpcEncryptionControlRequest(ServiceRequest):
|
|
21377
|
+
DryRun: Boolean | None
|
|
21378
|
+
VpcEncryptionControlId: VpcEncryptionControlId
|
|
21379
|
+
Mode: VpcEncryptionControlMode | None
|
|
21380
|
+
InternetGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21381
|
+
EgressOnlyInternetGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21382
|
+
NatGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21383
|
+
VirtualPrivateGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21384
|
+
VpcPeeringExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21385
|
+
LambdaExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21386
|
+
VpcLatticeExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21387
|
+
ElasticFileSystemExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21388
|
+
|
|
21389
|
+
|
|
21390
|
+
class ModifyVpcEncryptionControlResult(TypedDict, total=False):
|
|
21391
|
+
VpcEncryptionControl: VpcEncryptionControl | None
|
|
21392
|
+
|
|
21393
|
+
|
|
20655
21394
|
class ModifyVpcEndpointConnectionNotificationRequest(ServiceRequest):
|
|
20656
21395
|
DryRun: Boolean | None
|
|
20657
21396
|
ConnectionNotificationId: ConnectionNotificationId
|
|
@@ -21458,6 +22197,15 @@ class RestoreSnapshotTierResult(TypedDict, total=False):
|
|
|
21458
22197
|
IsPermanentRestore: Boolean | None
|
|
21459
22198
|
|
|
21460
22199
|
|
|
22200
|
+
class RestoreVolumeFromRecycleBinRequest(ServiceRequest):
|
|
22201
|
+
VolumeId: VolumeId
|
|
22202
|
+
DryRun: Boolean | None
|
|
22203
|
+
|
|
22204
|
+
|
|
22205
|
+
class RestoreVolumeFromRecycleBinResult(TypedDict, total=False):
|
|
22206
|
+
Return: Boolean | None
|
|
22207
|
+
|
|
22208
|
+
|
|
21461
22209
|
class RevokeClientVpnIngressRequest(ServiceRequest):
|
|
21462
22210
|
ClientVpnEndpointId: ClientVpnEndpointId
|
|
21463
22211
|
TargetNetworkCidr: String
|
|
@@ -21893,6 +22641,21 @@ class UpdateCapacityManagerOrganizationsAccessResult(TypedDict, total=False):
|
|
|
21893
22641
|
OrganizationsAccess: Boolean | None
|
|
21894
22642
|
|
|
21895
22643
|
|
|
22644
|
+
class UpdateInterruptibleCapacityReservationAllocationRequest(ServiceRequest):
|
|
22645
|
+
CapacityReservationId: CapacityReservationId
|
|
22646
|
+
TargetInstanceCount: Integer
|
|
22647
|
+
DryRun: Boolean | None
|
|
22648
|
+
|
|
22649
|
+
|
|
22650
|
+
class UpdateInterruptibleCapacityReservationAllocationResult(TypedDict, total=False):
|
|
22651
|
+
InterruptibleCapacityReservationId: CapacityReservationId | None
|
|
22652
|
+
SourceCapacityReservationId: CapacityReservationId | None
|
|
22653
|
+
InstanceCount: Integer | None
|
|
22654
|
+
TargetInstanceCount: Integer | None
|
|
22655
|
+
Status: InterruptibleCapacityReservationAllocationStatus | None
|
|
22656
|
+
InterruptionType: InterruptionType | None
|
|
22657
|
+
|
|
22658
|
+
|
|
21896
22659
|
class UpdateSecurityGroupRuleDescriptionsEgressRequest(ServiceRequest):
|
|
21897
22660
|
DryRun: Boolean | None
|
|
21898
22661
|
GroupId: SecurityGroupId | None
|
|
@@ -22244,6 +23007,8 @@ class Ec2Api:
|
|
|
22244
23007
|
allocation_ids: AllocationIdList,
|
|
22245
23008
|
private_ip_addresses: IpList | None = None,
|
|
22246
23009
|
dry_run: Boolean | None = None,
|
|
23010
|
+
availability_zone: AvailabilityZoneName | None = None,
|
|
23011
|
+
availability_zone_id: AvailabilityZoneId | None = None,
|
|
22247
23012
|
**kwargs,
|
|
22248
23013
|
) -> AssociateNatGatewayAddressResult:
|
|
22249
23014
|
raise NotImplementedError
|
|
@@ -23015,6 +23780,19 @@ class Ec2Api:
|
|
|
23015
23780
|
) -> CreateInternetGatewayResult:
|
|
23016
23781
|
raise NotImplementedError
|
|
23017
23782
|
|
|
23783
|
+
@handler("CreateInterruptibleCapacityReservationAllocation")
|
|
23784
|
+
def create_interruptible_capacity_reservation_allocation(
|
|
23785
|
+
self,
|
|
23786
|
+
context: RequestContext,
|
|
23787
|
+
capacity_reservation_id: CapacityReservationId,
|
|
23788
|
+
instance_count: Integer,
|
|
23789
|
+
client_token: String | None = None,
|
|
23790
|
+
dry_run: Boolean | None = None,
|
|
23791
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
23792
|
+
**kwargs,
|
|
23793
|
+
) -> CreateInterruptibleCapacityReservationAllocationResult:
|
|
23794
|
+
raise NotImplementedError
|
|
23795
|
+
|
|
23018
23796
|
@handler("CreateIpam")
|
|
23019
23797
|
def create_ipam(
|
|
23020
23798
|
self,
|
|
@@ -23043,6 +23821,18 @@ class Ec2Api:
|
|
|
23043
23821
|
) -> CreateIpamExternalResourceVerificationTokenResult:
|
|
23044
23822
|
raise NotImplementedError
|
|
23045
23823
|
|
|
23824
|
+
@handler("CreateIpamPolicy")
|
|
23825
|
+
def create_ipam_policy(
|
|
23826
|
+
self,
|
|
23827
|
+
context: RequestContext,
|
|
23828
|
+
ipam_id: IpamId,
|
|
23829
|
+
dry_run: Boolean | None = None,
|
|
23830
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
23831
|
+
client_token: String | None = None,
|
|
23832
|
+
**kwargs,
|
|
23833
|
+
) -> CreateIpamPolicyResult:
|
|
23834
|
+
raise NotImplementedError
|
|
23835
|
+
|
|
23046
23836
|
@handler("CreateIpamPool")
|
|
23047
23837
|
def create_ipam_pool(
|
|
23048
23838
|
self,
|
|
@@ -23285,10 +24075,13 @@ class Ec2Api:
|
|
|
23285
24075
|
def create_nat_gateway(
|
|
23286
24076
|
self,
|
|
23287
24077
|
context: RequestContext,
|
|
23288
|
-
|
|
24078
|
+
availability_mode: AvailabilityMode | None = None,
|
|
23289
24079
|
allocation_id: AllocationId | None = None,
|
|
23290
24080
|
client_token: String | None = None,
|
|
23291
24081
|
dry_run: Boolean | None = None,
|
|
24082
|
+
subnet_id: SubnetId | None = None,
|
|
24083
|
+
vpc_id: VpcId | None = None,
|
|
24084
|
+
availability_zone_addresses: AvailabilityZoneAddresses | None = None,
|
|
23292
24085
|
tag_specifications: TagSpecificationList | None = None,
|
|
23293
24086
|
connectivity_type: ConnectivityType | None = None,
|
|
23294
24087
|
private_ip_address: String | None = None,
|
|
@@ -23761,6 +24554,40 @@ class Ec2Api:
|
|
|
23761
24554
|
) -> CreateTransitGatewayConnectPeerResult:
|
|
23762
24555
|
raise NotImplementedError
|
|
23763
24556
|
|
|
24557
|
+
@handler("CreateTransitGatewayMeteringPolicy")
|
|
24558
|
+
def create_transit_gateway_metering_policy(
|
|
24559
|
+
self,
|
|
24560
|
+
context: RequestContext,
|
|
24561
|
+
transit_gateway_id: TransitGatewayId,
|
|
24562
|
+
middlebox_attachment_ids: TransitGatewayAttachmentIdStringList | None = None,
|
|
24563
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
24564
|
+
dry_run: Boolean | None = None,
|
|
24565
|
+
**kwargs,
|
|
24566
|
+
) -> CreateTransitGatewayMeteringPolicyResult:
|
|
24567
|
+
raise NotImplementedError
|
|
24568
|
+
|
|
24569
|
+
@handler("CreateTransitGatewayMeteringPolicyEntry")
|
|
24570
|
+
def create_transit_gateway_metering_policy_entry(
|
|
24571
|
+
self,
|
|
24572
|
+
context: RequestContext,
|
|
24573
|
+
transit_gateway_metering_policy_id: TransitGatewayMeteringPolicyId,
|
|
24574
|
+
policy_rule_number: Integer,
|
|
24575
|
+
metered_account: TransitGatewayMeteringPayerType,
|
|
24576
|
+
source_transit_gateway_attachment_id: TransitGatewayAttachmentId | None = None,
|
|
24577
|
+
source_transit_gateway_attachment_type: TransitGatewayAttachmentResourceType | None = None,
|
|
24578
|
+
source_cidr_block: String | None = None,
|
|
24579
|
+
source_port_range: String | None = None,
|
|
24580
|
+
destination_transit_gateway_attachment_id: TransitGatewayAttachmentId | None = None,
|
|
24581
|
+
destination_transit_gateway_attachment_type: TransitGatewayAttachmentResourceType
|
|
24582
|
+
| None = None,
|
|
24583
|
+
destination_cidr_block: String | None = None,
|
|
24584
|
+
destination_port_range: String | None = None,
|
|
24585
|
+
protocol: String | None = None,
|
|
24586
|
+
dry_run: Boolean | None = None,
|
|
24587
|
+
**kwargs,
|
|
24588
|
+
) -> CreateTransitGatewayMeteringPolicyEntryResult:
|
|
24589
|
+
raise NotImplementedError
|
|
24590
|
+
|
|
23764
24591
|
@handler("CreateTransitGatewayMulticastDomain")
|
|
23765
24592
|
def create_transit_gateway_multicast_domain(
|
|
23766
24593
|
self,
|
|
@@ -23973,6 +24800,7 @@ class Ec2Api:
|
|
|
23973
24800
|
ipv6_ipam_pool_id: IpamPoolId | None = None,
|
|
23974
24801
|
ipv6_netmask_length: NetmaskLength | None = None,
|
|
23975
24802
|
ipv6_cidr_block_network_border_group: String | None = None,
|
|
24803
|
+
vpc_encryption_control: VpcEncryptionControlConfiguration | None = None,
|
|
23976
24804
|
tag_specifications: TagSpecificationList | None = None,
|
|
23977
24805
|
dry_run: Boolean | None = None,
|
|
23978
24806
|
instance_tenancy: Tenancy | None = None,
|
|
@@ -23994,6 +24822,17 @@ class Ec2Api:
|
|
|
23994
24822
|
) -> CreateVpcBlockPublicAccessExclusionResult:
|
|
23995
24823
|
raise NotImplementedError
|
|
23996
24824
|
|
|
24825
|
+
@handler("CreateVpcEncryptionControl")
|
|
24826
|
+
def create_vpc_encryption_control(
|
|
24827
|
+
self,
|
|
24828
|
+
context: RequestContext,
|
|
24829
|
+
vpc_id: VpcId,
|
|
24830
|
+
dry_run: Boolean | None = None,
|
|
24831
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
24832
|
+
**kwargs,
|
|
24833
|
+
) -> CreateVpcEncryptionControlResult:
|
|
24834
|
+
raise NotImplementedError
|
|
24835
|
+
|
|
23997
24836
|
@handler("CreateVpcEndpoint")
|
|
23998
24837
|
def create_vpc_endpoint(
|
|
23999
24838
|
self,
|
|
@@ -24064,6 +24903,12 @@ class Ec2Api:
|
|
|
24064
24903
|
) -> CreateVpcPeeringConnectionResult:
|
|
24065
24904
|
raise NotImplementedError
|
|
24066
24905
|
|
|
24906
|
+
@handler("CreateVpnConcentrator", expand=False)
|
|
24907
|
+
def create_vpn_concentrator(
|
|
24908
|
+
self, context: RequestContext, request: CreateVpnConcentratorRequest, **kwargs
|
|
24909
|
+
) -> CreateVpnConcentratorResult:
|
|
24910
|
+
raise NotImplementedError
|
|
24911
|
+
|
|
24067
24912
|
@handler("CreateVpnConnection", expand=False)
|
|
24068
24913
|
def create_vpn_connection(
|
|
24069
24914
|
self, context: RequestContext, request: CreateVpnConnectionRequest, **kwargs
|
|
@@ -24272,6 +25117,16 @@ class Ec2Api:
|
|
|
24272
25117
|
) -> DeleteIpamExternalResourceVerificationTokenResult:
|
|
24273
25118
|
raise NotImplementedError
|
|
24274
25119
|
|
|
25120
|
+
@handler("DeleteIpamPolicy")
|
|
25121
|
+
def delete_ipam_policy(
|
|
25122
|
+
self,
|
|
25123
|
+
context: RequestContext,
|
|
25124
|
+
ipam_policy_id: IpamPolicyId,
|
|
25125
|
+
dry_run: Boolean | None = None,
|
|
25126
|
+
**kwargs,
|
|
25127
|
+
) -> DeleteIpamPolicyResult:
|
|
25128
|
+
raise NotImplementedError
|
|
25129
|
+
|
|
24275
25130
|
@handler("DeleteIpamPool")
|
|
24276
25131
|
def delete_ipam_pool(
|
|
24277
25132
|
self,
|
|
@@ -24730,6 +25585,27 @@ class Ec2Api:
|
|
|
24730
25585
|
) -> DeleteTransitGatewayConnectPeerResult:
|
|
24731
25586
|
raise NotImplementedError
|
|
24732
25587
|
|
|
25588
|
+
@handler("DeleteTransitGatewayMeteringPolicy")
|
|
25589
|
+
def delete_transit_gateway_metering_policy(
|
|
25590
|
+
self,
|
|
25591
|
+
context: RequestContext,
|
|
25592
|
+
transit_gateway_metering_policy_id: TransitGatewayMeteringPolicyId,
|
|
25593
|
+
dry_run: Boolean | None = None,
|
|
25594
|
+
**kwargs,
|
|
25595
|
+
) -> DeleteTransitGatewayMeteringPolicyResult:
|
|
25596
|
+
raise NotImplementedError
|
|
25597
|
+
|
|
25598
|
+
@handler("DeleteTransitGatewayMeteringPolicyEntry")
|
|
25599
|
+
def delete_transit_gateway_metering_policy_entry(
|
|
25600
|
+
self,
|
|
25601
|
+
context: RequestContext,
|
|
25602
|
+
transit_gateway_metering_policy_id: TransitGatewayMeteringPolicyId,
|
|
25603
|
+
policy_rule_number: Integer,
|
|
25604
|
+
dry_run: Boolean | None = None,
|
|
25605
|
+
**kwargs,
|
|
25606
|
+
) -> DeleteTransitGatewayMeteringPolicyEntryResult:
|
|
25607
|
+
raise NotImplementedError
|
|
25608
|
+
|
|
24733
25609
|
@handler("DeleteTransitGatewayMulticastDomain")
|
|
24734
25610
|
def delete_transit_gateway_multicast_domain(
|
|
24735
25611
|
self,
|
|
@@ -24878,6 +25754,16 @@ class Ec2Api:
|
|
|
24878
25754
|
) -> DeleteVpcBlockPublicAccessExclusionResult:
|
|
24879
25755
|
raise NotImplementedError
|
|
24880
25756
|
|
|
25757
|
+
@handler("DeleteVpcEncryptionControl")
|
|
25758
|
+
def delete_vpc_encryption_control(
|
|
25759
|
+
self,
|
|
25760
|
+
context: RequestContext,
|
|
25761
|
+
vpc_encryption_control_id: VpcEncryptionControlId,
|
|
25762
|
+
dry_run: Boolean | None = None,
|
|
25763
|
+
**kwargs,
|
|
25764
|
+
) -> DeleteVpcEncryptionControlResult:
|
|
25765
|
+
raise NotImplementedError
|
|
25766
|
+
|
|
24881
25767
|
@handler("DeleteVpcEndpointConnectionNotifications")
|
|
24882
25768
|
def delete_vpc_endpoint_connection_notifications(
|
|
24883
25769
|
self,
|
|
@@ -24918,6 +25804,16 @@ class Ec2Api:
|
|
|
24918
25804
|
) -> DeleteVpcPeeringConnectionResult:
|
|
24919
25805
|
raise NotImplementedError
|
|
24920
25806
|
|
|
25807
|
+
@handler("DeleteVpnConcentrator")
|
|
25808
|
+
def delete_vpn_concentrator(
|
|
25809
|
+
self,
|
|
25810
|
+
context: RequestContext,
|
|
25811
|
+
vpn_concentrator_id: VpnConcentratorId,
|
|
25812
|
+
dry_run: Boolean | None = None,
|
|
25813
|
+
**kwargs,
|
|
25814
|
+
) -> DeleteVpnConcentratorResult:
|
|
25815
|
+
raise NotImplementedError
|
|
25816
|
+
|
|
24921
25817
|
@handler("DeleteVpnConnection")
|
|
24922
25818
|
def delete_vpn_connection(
|
|
24923
25819
|
self,
|
|
@@ -25802,6 +26698,34 @@ class Ec2Api:
|
|
|
25802
26698
|
) -> DescribeInstanceImageMetadataResult:
|
|
25803
26699
|
raise NotImplementedError
|
|
25804
26700
|
|
|
26701
|
+
@handler("DescribeInstanceSqlHaHistoryStates")
|
|
26702
|
+
def describe_instance_sql_ha_history_states(
|
|
26703
|
+
self,
|
|
26704
|
+
context: RequestContext,
|
|
26705
|
+
instance_ids: InstanceIdStringList | None = None,
|
|
26706
|
+
start_time: MillisecondDateTime | None = None,
|
|
26707
|
+
end_time: MillisecondDateTime | None = None,
|
|
26708
|
+
next_token: NextToken | None = None,
|
|
26709
|
+
max_results: DescribeInstanceSqlHaStatesRequestMaxResultsInteger | None = None,
|
|
26710
|
+
filters: FilterList | None = None,
|
|
26711
|
+
dry_run: Boolean | None = None,
|
|
26712
|
+
**kwargs,
|
|
26713
|
+
) -> DescribeInstanceSqlHaHistoryStatesResult:
|
|
26714
|
+
raise NotImplementedError
|
|
26715
|
+
|
|
26716
|
+
@handler("DescribeInstanceSqlHaStates")
|
|
26717
|
+
def describe_instance_sql_ha_states(
|
|
26718
|
+
self,
|
|
26719
|
+
context: RequestContext,
|
|
26720
|
+
instance_ids: InstanceIdStringList | None = None,
|
|
26721
|
+
next_token: NextToken | None = None,
|
|
26722
|
+
max_results: DescribeInstanceSqlHaStatesRequestMaxResultsInteger | None = None,
|
|
26723
|
+
filters: FilterList | None = None,
|
|
26724
|
+
dry_run: Boolean | None = None,
|
|
26725
|
+
**kwargs,
|
|
26726
|
+
) -> DescribeInstanceSqlHaStatesResult:
|
|
26727
|
+
raise NotImplementedError
|
|
26728
|
+
|
|
25805
26729
|
@handler("DescribeInstanceStatus")
|
|
25806
26730
|
def describe_instance_status(
|
|
25807
26731
|
self,
|
|
@@ -25906,6 +26830,19 @@ class Ec2Api:
|
|
|
25906
26830
|
) -> DescribeIpamExternalResourceVerificationTokensResult:
|
|
25907
26831
|
raise NotImplementedError
|
|
25908
26832
|
|
|
26833
|
+
@handler("DescribeIpamPolicies")
|
|
26834
|
+
def describe_ipam_policies(
|
|
26835
|
+
self,
|
|
26836
|
+
context: RequestContext,
|
|
26837
|
+
dry_run: Boolean | None = None,
|
|
26838
|
+
filters: FilterList | None = None,
|
|
26839
|
+
max_results: IpamMaxResults | None = None,
|
|
26840
|
+
next_token: NextToken | None = None,
|
|
26841
|
+
ipam_policy_ids: ValueStringList | None = None,
|
|
26842
|
+
**kwargs,
|
|
26843
|
+
) -> DescribeIpamPoliciesResult:
|
|
26844
|
+
raise NotImplementedError
|
|
26845
|
+
|
|
25909
26846
|
@handler("DescribeIpamPools")
|
|
25910
26847
|
def describe_ipam_pools(
|
|
25911
26848
|
self,
|
|
@@ -26864,6 +27801,19 @@ class Ec2Api:
|
|
|
26864
27801
|
) -> DescribeTransitGatewayConnectsResult:
|
|
26865
27802
|
raise NotImplementedError
|
|
26866
27803
|
|
|
27804
|
+
@handler("DescribeTransitGatewayMeteringPolicies")
|
|
27805
|
+
def describe_transit_gateway_metering_policies(
|
|
27806
|
+
self,
|
|
27807
|
+
context: RequestContext,
|
|
27808
|
+
transit_gateway_metering_policy_ids: TransitGatewayMeteringPolicyIdStringList | None = None,
|
|
27809
|
+
filters: FilterList | None = None,
|
|
27810
|
+
max_results: TransitGatewayMaxResults | None = None,
|
|
27811
|
+
next_token: String | None = None,
|
|
27812
|
+
dry_run: Boolean | None = None,
|
|
27813
|
+
**kwargs,
|
|
27814
|
+
) -> DescribeTransitGatewayMeteringPoliciesResult:
|
|
27815
|
+
raise NotImplementedError
|
|
27816
|
+
|
|
26867
27817
|
@handler("DescribeTransitGatewayMulticastDomains")
|
|
26868
27818
|
def describe_transit_gateway_multicast_domains(
|
|
26869
27819
|
self,
|
|
@@ -27140,6 +28090,20 @@ class Ec2Api:
|
|
|
27140
28090
|
) -> DescribeVpcClassicLinkDnsSupportResult:
|
|
27141
28091
|
raise NotImplementedError
|
|
27142
28092
|
|
|
28093
|
+
@handler("DescribeVpcEncryptionControls")
|
|
28094
|
+
def describe_vpc_encryption_controls(
|
|
28095
|
+
self,
|
|
28096
|
+
context: RequestContext,
|
|
28097
|
+
dry_run: Boolean | None = None,
|
|
28098
|
+
filters: FilterList | None = None,
|
|
28099
|
+
vpc_encryption_control_ids: VpcEncryptionControlIdList | None = None,
|
|
28100
|
+
vpc_ids: VpcIdStringList | None = None,
|
|
28101
|
+
next_token: String | None = None,
|
|
28102
|
+
max_results: DescribeVpcEncryptionControlsMaxResults | None = None,
|
|
28103
|
+
**kwargs,
|
|
28104
|
+
) -> DescribeVpcEncryptionControlsResult:
|
|
28105
|
+
raise NotImplementedError
|
|
28106
|
+
|
|
27143
28107
|
@handler("DescribeVpcEndpointAssociations")
|
|
27144
28108
|
def describe_vpc_endpoint_associations(
|
|
27145
28109
|
self,
|
|
@@ -27257,6 +28221,19 @@ class Ec2Api:
|
|
|
27257
28221
|
) -> DescribeVpcsResult:
|
|
27258
28222
|
raise NotImplementedError
|
|
27259
28223
|
|
|
28224
|
+
@handler("DescribeVpnConcentrators")
|
|
28225
|
+
def describe_vpn_concentrators(
|
|
28226
|
+
self,
|
|
28227
|
+
context: RequestContext,
|
|
28228
|
+
vpn_concentrator_ids: VpnConcentratorIdStringList | None = None,
|
|
28229
|
+
filters: FilterList | None = None,
|
|
28230
|
+
max_results: GVCDMaxResults | None = None,
|
|
28231
|
+
next_token: NextToken | None = None,
|
|
28232
|
+
dry_run: Boolean | None = None,
|
|
28233
|
+
**kwargs,
|
|
28234
|
+
) -> DescribeVpnConcentratorsResult:
|
|
28235
|
+
raise NotImplementedError
|
|
28236
|
+
|
|
27260
28237
|
@handler("DescribeVpnConnections")
|
|
27261
28238
|
def describe_vpn_connections(
|
|
27262
28239
|
self,
|
|
@@ -27440,6 +28417,16 @@ class Ec2Api:
|
|
|
27440
28417
|
) -> DisableImageDeregistrationProtectionResult:
|
|
27441
28418
|
raise NotImplementedError
|
|
27442
28419
|
|
|
28420
|
+
@handler("DisableInstanceSqlHaStandbyDetections")
|
|
28421
|
+
def disable_instance_sql_ha_standby_detections(
|
|
28422
|
+
self,
|
|
28423
|
+
context: RequestContext,
|
|
28424
|
+
instance_ids: InstanceIdUpdateStringList,
|
|
28425
|
+
dry_run: Boolean | None = None,
|
|
28426
|
+
**kwargs,
|
|
28427
|
+
) -> DisableInstanceSqlHaStandbyDetectionsResult:
|
|
28428
|
+
raise NotImplementedError
|
|
28429
|
+
|
|
27443
28430
|
@handler("DisableIpamOrganizationAdminAccount")
|
|
27444
28431
|
def disable_ipam_organization_admin_account(
|
|
27445
28432
|
self,
|
|
@@ -27450,6 +28437,17 @@ class Ec2Api:
|
|
|
27450
28437
|
) -> DisableIpamOrganizationAdminAccountResult:
|
|
27451
28438
|
raise NotImplementedError
|
|
27452
28439
|
|
|
28440
|
+
@handler("DisableIpamPolicy")
|
|
28441
|
+
def disable_ipam_policy(
|
|
28442
|
+
self,
|
|
28443
|
+
context: RequestContext,
|
|
28444
|
+
ipam_policy_id: IpamPolicyId,
|
|
28445
|
+
dry_run: Boolean | None = None,
|
|
28446
|
+
organization_target_id: String | None = None,
|
|
28447
|
+
**kwargs,
|
|
28448
|
+
) -> DisableIpamPolicyResult:
|
|
28449
|
+
raise NotImplementedError
|
|
28450
|
+
|
|
27453
28451
|
@handler("DisableRouteServerPropagation")
|
|
27454
28452
|
def disable_route_server_propagation(
|
|
27455
28453
|
self,
|
|
@@ -27807,6 +28805,17 @@ class Ec2Api:
|
|
|
27807
28805
|
) -> EnableImageDeregistrationProtectionResult:
|
|
27808
28806
|
raise NotImplementedError
|
|
27809
28807
|
|
|
28808
|
+
@handler("EnableInstanceSqlHaStandbyDetections")
|
|
28809
|
+
def enable_instance_sql_ha_standby_detections(
|
|
28810
|
+
self,
|
|
28811
|
+
context: RequestContext,
|
|
28812
|
+
instance_ids: InstanceIdUpdateStringList,
|
|
28813
|
+
sql_server_credentials: SecretArn | None = None,
|
|
28814
|
+
dry_run: Boolean | None = None,
|
|
28815
|
+
**kwargs,
|
|
28816
|
+
) -> EnableInstanceSqlHaStandbyDetectionsResult:
|
|
28817
|
+
raise NotImplementedError
|
|
28818
|
+
|
|
27810
28819
|
@handler("EnableIpamOrganizationAdminAccount")
|
|
27811
28820
|
def enable_ipam_organization_admin_account(
|
|
27812
28821
|
self,
|
|
@@ -27817,6 +28826,17 @@ class Ec2Api:
|
|
|
27817
28826
|
) -> EnableIpamOrganizationAdminAccountResult:
|
|
27818
28827
|
raise NotImplementedError
|
|
27819
28828
|
|
|
28829
|
+
@handler("EnableIpamPolicy")
|
|
28830
|
+
def enable_ipam_policy(
|
|
28831
|
+
self,
|
|
28832
|
+
context: RequestContext,
|
|
28833
|
+
ipam_policy_id: IpamPolicyId,
|
|
28834
|
+
dry_run: Boolean | None = None,
|
|
28835
|
+
organization_target_id: String | None = None,
|
|
28836
|
+
**kwargs,
|
|
28837
|
+
) -> EnableIpamPolicyResult:
|
|
28838
|
+
raise NotImplementedError
|
|
28839
|
+
|
|
27820
28840
|
@handler("EnableReachabilityAnalyzerOrganizationSharing")
|
|
27821
28841
|
def enable_reachability_analyzer_organization_sharing(
|
|
27822
28842
|
self, context: RequestContext, dry_run: Boolean | None = None, **kwargs
|
|
@@ -28121,6 +29141,12 @@ class Ec2Api:
|
|
|
28121
29141
|
) -> GetEbsEncryptionByDefaultResult:
|
|
28122
29142
|
raise NotImplementedError
|
|
28123
29143
|
|
|
29144
|
+
@handler("GetEnabledIpamPolicy")
|
|
29145
|
+
def get_enabled_ipam_policy(
|
|
29146
|
+
self, context: RequestContext, dry_run: Boolean | None = None, **kwargs
|
|
29147
|
+
) -> GetEnabledIpamPolicyResult:
|
|
29148
|
+
raise NotImplementedError
|
|
29149
|
+
|
|
28124
29150
|
@handler("GetFlowLogsIntegrationTemplate")
|
|
28125
29151
|
def get_flow_logs_integration_template(
|
|
28126
29152
|
self,
|
|
@@ -28262,6 +29288,34 @@ class Ec2Api:
|
|
|
28262
29288
|
) -> GetIpamDiscoveredResourceCidrsResult:
|
|
28263
29289
|
raise NotImplementedError
|
|
28264
29290
|
|
|
29291
|
+
@handler("GetIpamPolicyAllocationRules")
|
|
29292
|
+
def get_ipam_policy_allocation_rules(
|
|
29293
|
+
self,
|
|
29294
|
+
context: RequestContext,
|
|
29295
|
+
ipam_policy_id: IpamPolicyId,
|
|
29296
|
+
dry_run: Boolean | None = None,
|
|
29297
|
+
filters: FilterList | None = None,
|
|
29298
|
+
locale: String | None = None,
|
|
29299
|
+
resource_type: IpamPolicyResourceType | None = None,
|
|
29300
|
+
max_results: IpamMaxResults | None = None,
|
|
29301
|
+
next_token: NextToken | None = None,
|
|
29302
|
+
**kwargs,
|
|
29303
|
+
) -> GetIpamPolicyAllocationRulesResult:
|
|
29304
|
+
raise NotImplementedError
|
|
29305
|
+
|
|
29306
|
+
@handler("GetIpamPolicyOrganizationTargets")
|
|
29307
|
+
def get_ipam_policy_organization_targets(
|
|
29308
|
+
self,
|
|
29309
|
+
context: RequestContext,
|
|
29310
|
+
ipam_policy_id: IpamPolicyId,
|
|
29311
|
+
dry_run: Boolean | None = None,
|
|
29312
|
+
max_results: IpamMaxResults | None = None,
|
|
29313
|
+
next_token: NextToken | None = None,
|
|
29314
|
+
filters: FilterList | None = None,
|
|
29315
|
+
**kwargs,
|
|
29316
|
+
) -> GetIpamPolicyOrganizationTargetsResult:
|
|
29317
|
+
raise NotImplementedError
|
|
29318
|
+
|
|
28265
29319
|
@handler("GetIpamPoolAllocations")
|
|
28266
29320
|
def get_ipam_pool_allocations(
|
|
28267
29321
|
self,
|
|
@@ -28527,6 +29581,19 @@ class Ec2Api:
|
|
|
28527
29581
|
) -> GetTransitGatewayAttachmentPropagationsResult:
|
|
28528
29582
|
raise NotImplementedError
|
|
28529
29583
|
|
|
29584
|
+
@handler("GetTransitGatewayMeteringPolicyEntries")
|
|
29585
|
+
def get_transit_gateway_metering_policy_entries(
|
|
29586
|
+
self,
|
|
29587
|
+
context: RequestContext,
|
|
29588
|
+
transit_gateway_metering_policy_id: TransitGatewayMeteringPolicyId,
|
|
29589
|
+
filters: FilterList | None = None,
|
|
29590
|
+
max_results: TransitGatewayMaxResults | None = None,
|
|
29591
|
+
next_token: String | None = None,
|
|
29592
|
+
dry_run: Boolean | None = None,
|
|
29593
|
+
**kwargs,
|
|
29594
|
+
) -> GetTransitGatewayMeteringPolicyEntriesResult:
|
|
29595
|
+
raise NotImplementedError
|
|
29596
|
+
|
|
28530
29597
|
@handler("GetTransitGatewayMulticastDomainAssociations")
|
|
28531
29598
|
def get_transit_gateway_multicast_domain_associations(
|
|
28532
29599
|
self,
|
|
@@ -28637,6 +29704,18 @@ class Ec2Api:
|
|
|
28637
29704
|
) -> GetVerifiedAccessGroupPolicyResult:
|
|
28638
29705
|
raise NotImplementedError
|
|
28639
29706
|
|
|
29707
|
+
@handler("GetVpcResourcesBlockingEncryptionEnforcement")
|
|
29708
|
+
def get_vpc_resources_blocking_encryption_enforcement(
|
|
29709
|
+
self,
|
|
29710
|
+
context: RequestContext,
|
|
29711
|
+
vpc_id: VpcId,
|
|
29712
|
+
max_results: GetVpcResourcesBlockingEncryptionEnforcementMaxResults | None = None,
|
|
29713
|
+
next_token: String | None = None,
|
|
29714
|
+
dry_run: Boolean | None = None,
|
|
29715
|
+
**kwargs,
|
|
29716
|
+
) -> GetVpcResourcesBlockingEncryptionEnforcementResult:
|
|
29717
|
+
raise NotImplementedError
|
|
29718
|
+
|
|
28640
29719
|
@handler("GetVpnConnectionDeviceSampleConfiguration")
|
|
28641
29720
|
def get_vpn_connection_device_sample_configuration(
|
|
28642
29721
|
self,
|
|
@@ -28787,6 +29866,18 @@ class Ec2Api:
|
|
|
28787
29866
|
) -> ListSnapshotsInRecycleBinResult:
|
|
28788
29867
|
raise NotImplementedError
|
|
28789
29868
|
|
|
29869
|
+
@handler("ListVolumesInRecycleBin")
|
|
29870
|
+
def list_volumes_in_recycle_bin(
|
|
29871
|
+
self,
|
|
29872
|
+
context: RequestContext,
|
|
29873
|
+
volume_ids: VolumeIdStringList | None = None,
|
|
29874
|
+
dry_run: Boolean | None = None,
|
|
29875
|
+
max_results: Integer | None = None,
|
|
29876
|
+
next_token: String | None = None,
|
|
29877
|
+
**kwargs,
|
|
29878
|
+
) -> ListVolumesInRecycleBinResult:
|
|
29879
|
+
raise NotImplementedError
|
|
29880
|
+
|
|
28790
29881
|
@handler("LockSnapshot")
|
|
28791
29882
|
def lock_snapshot(
|
|
28792
29883
|
self,
|
|
@@ -29153,6 +30244,19 @@ class Ec2Api:
|
|
|
29153
30244
|
) -> ModifyIpamResult:
|
|
29154
30245
|
raise NotImplementedError
|
|
29155
30246
|
|
|
30247
|
+
@handler("ModifyIpamPolicyAllocationRules")
|
|
30248
|
+
def modify_ipam_policy_allocation_rules(
|
|
30249
|
+
self,
|
|
30250
|
+
context: RequestContext,
|
|
30251
|
+
ipam_policy_id: IpamPolicyId,
|
|
30252
|
+
locale: String,
|
|
30253
|
+
resource_type: IpamPolicyResourceType,
|
|
30254
|
+
dry_run: Boolean | None = None,
|
|
30255
|
+
allocation_rules: IpamPolicyAllocationRuleListRequest | None = None,
|
|
30256
|
+
**kwargs,
|
|
30257
|
+
) -> ModifyIpamPolicyAllocationRulesResult:
|
|
30258
|
+
raise NotImplementedError
|
|
30259
|
+
|
|
29156
30260
|
@handler("ModifyIpamPool")
|
|
29157
30261
|
def modify_ipam_pool(
|
|
29158
30262
|
self,
|
|
@@ -29473,6 +30577,18 @@ class Ec2Api:
|
|
|
29473
30577
|
) -> ModifyTransitGatewayResult:
|
|
29474
30578
|
raise NotImplementedError
|
|
29475
30579
|
|
|
30580
|
+
@handler("ModifyTransitGatewayMeteringPolicy")
|
|
30581
|
+
def modify_transit_gateway_metering_policy(
|
|
30582
|
+
self,
|
|
30583
|
+
context: RequestContext,
|
|
30584
|
+
transit_gateway_metering_policy_id: TransitGatewayMeteringPolicyId,
|
|
30585
|
+
add_middlebox_attachment_ids: TransitGatewayAttachmentIdStringList | None = None,
|
|
30586
|
+
remove_middlebox_attachment_ids: TransitGatewayAttachmentIdStringList | None = None,
|
|
30587
|
+
dry_run: Boolean | None = None,
|
|
30588
|
+
**kwargs,
|
|
30589
|
+
) -> ModifyTransitGatewayMeteringPolicyResult:
|
|
30590
|
+
raise NotImplementedError
|
|
30591
|
+
|
|
29476
30592
|
@handler("ModifyTransitGatewayPrefixListReference")
|
|
29477
30593
|
def modify_transit_gateway_prefix_list_reference(
|
|
29478
30594
|
self,
|
|
@@ -29658,6 +30774,26 @@ class Ec2Api:
|
|
|
29658
30774
|
) -> ModifyVpcBlockPublicAccessOptionsResult:
|
|
29659
30775
|
raise NotImplementedError
|
|
29660
30776
|
|
|
30777
|
+
@handler("ModifyVpcEncryptionControl")
|
|
30778
|
+
def modify_vpc_encryption_control(
|
|
30779
|
+
self,
|
|
30780
|
+
context: RequestContext,
|
|
30781
|
+
vpc_encryption_control_id: VpcEncryptionControlId,
|
|
30782
|
+
dry_run: Boolean | None = None,
|
|
30783
|
+
mode: VpcEncryptionControlMode | None = None,
|
|
30784
|
+
internet_gateway_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30785
|
+
egress_only_internet_gateway_exclusion: VpcEncryptionControlExclusionStateInput
|
|
30786
|
+
| None = None,
|
|
30787
|
+
nat_gateway_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30788
|
+
virtual_private_gateway_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30789
|
+
vpc_peering_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30790
|
+
lambda_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30791
|
+
vpc_lattice_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30792
|
+
elastic_file_system_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30793
|
+
**kwargs,
|
|
30794
|
+
) -> ModifyVpcEncryptionControlResult:
|
|
30795
|
+
raise NotImplementedError
|
|
30796
|
+
|
|
29661
30797
|
@handler("ModifyVpcEndpoint")
|
|
29662
30798
|
def modify_vpc_endpoint(
|
|
29663
30799
|
self,
|
|
@@ -30394,6 +31530,12 @@ class Ec2Api:
|
|
|
30394
31530
|
) -> RestoreSnapshotTierResult:
|
|
30395
31531
|
raise NotImplementedError
|
|
30396
31532
|
|
|
31533
|
+
@handler("RestoreVolumeFromRecycleBin")
|
|
31534
|
+
def restore_volume_from_recycle_bin(
|
|
31535
|
+
self, context: RequestContext, volume_id: VolumeId, dry_run: Boolean | None = None, **kwargs
|
|
31536
|
+
) -> RestoreVolumeFromRecycleBinResult:
|
|
31537
|
+
raise NotImplementedError
|
|
31538
|
+
|
|
30397
31539
|
@handler("RevokeClientVpnIngress")
|
|
30398
31540
|
def revoke_client_vpn_ingress(
|
|
30399
31541
|
self,
|
|
@@ -30719,6 +31861,17 @@ class Ec2Api:
|
|
|
30719
31861
|
) -> UpdateCapacityManagerOrganizationsAccessResult:
|
|
30720
31862
|
raise NotImplementedError
|
|
30721
31863
|
|
|
31864
|
+
@handler("UpdateInterruptibleCapacityReservationAllocation")
|
|
31865
|
+
def update_interruptible_capacity_reservation_allocation(
|
|
31866
|
+
self,
|
|
31867
|
+
context: RequestContext,
|
|
31868
|
+
capacity_reservation_id: CapacityReservationId,
|
|
31869
|
+
target_instance_count: Integer,
|
|
31870
|
+
dry_run: Boolean | None = None,
|
|
31871
|
+
**kwargs,
|
|
31872
|
+
) -> UpdateInterruptibleCapacityReservationAllocationResult:
|
|
31873
|
+
raise NotImplementedError
|
|
31874
|
+
|
|
30722
31875
|
@handler("UpdateSecurityGroupRuleDescriptionsEgress")
|
|
30723
31876
|
def update_security_group_rule_descriptions_egress(
|
|
30724
31877
|
self,
|