localstack-core 4.10.1.dev42__py3-none-any.whl → 4.12.1.dev18__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.
- localstack/aws/api/apigateway/__init__.py +42 -0
- localstack/aws/api/cloudformation/__init__.py +161 -0
- localstack/aws/api/ec2/__init__.py +1178 -12
- localstack/aws/api/iam/__init__.py +228 -0
- localstack/aws/api/kms/__init__.py +1 -0
- localstack/aws/api/lambda_/__init__.py +1034 -66
- localstack/aws/api/logs/__init__.py +500 -0
- localstack/aws/api/opensearch/__init__.py +100 -0
- localstack/aws/api/redshift/__init__.py +69 -0
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +36 -0
- localstack/aws/api/route53/__init__.py +45 -0
- localstack/aws/api/route53resolver/__init__.py +1 -0
- localstack/aws/api/s3/__init__.py +64 -0
- localstack/aws/api/s3control/__init__.py +19 -0
- localstack/aws/api/secretsmanager/__init__.py +37 -23
- localstack/aws/api/stepfunctions/__init__.py +52 -10
- localstack/aws/api/sts/__init__.py +52 -0
- localstack/aws/connect.py +35 -15
- localstack/aws/handlers/logging.py +8 -4
- localstack/aws/handlers/service.py +11 -2
- localstack/aws/protocol/serializer.py +1 -1
- localstack/config.py +8 -0
- localstack/constants.py +3 -0
- localstack/deprecations.py +0 -6
- localstack/dev/kubernetes/__main__.py +39 -14
- localstack/runtime/analytics.py +11 -0
- localstack/services/acm/provider.py +17 -1
- 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.py +9 -0
- localstack/services/cloudformation/engine/v2/change_set_model_preproc.py +15 -1
- localstack/services/cloudformation/engine/v2/change_set_resource_support_checker.py +114 -0
- localstack/services/cloudformation/provider.py +26 -1
- localstack/services/cloudformation/provider_utils.py +20 -0
- localstack/services/cloudformation/resource_provider.py +5 -4
- localstack/services/cloudformation/scaffolding/__main__.py +94 -22
- localstack/services/cloudformation/v2/provider.py +41 -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/kinesis/packages.py +1 -1
- localstack/services/kms/models.py +16 -22
- localstack/services/kms/provider.py +4 -0
- localstack/services/lambda_/analytics.py +11 -2
- 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/event_manager.py +15 -11
- localstack/services/lambda_/invocation/execution_environment.py +21 -2
- localstack/services/lambda_/invocation/lambda_models.py +31 -2
- localstack/services/lambda_/invocation/lambda_service.py +62 -3
- localstack/services/lambda_/invocation/models.py +9 -1
- localstack/services/lambda_/invocation/version_manager.py +18 -3
- localstack/services/lambda_/provider.py +307 -106
- 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/packages.py +34 -20
- localstack/services/opensearch/provider.py +53 -3
- localstack/services/resource_groups/provider.py +5 -1
- localstack/services/resourcegroupstaggingapi/provider.py +6 -1
- localstack/services/route53/provider.py +7 -0
- localstack/services/route53resolver/provider.py +5 -0
- localstack/services/s3/constants.py +5 -0
- localstack/services/s3/exceptions.py +9 -0
- localstack/services/s3/models.py +9 -1
- localstack/services/s3/provider.py +51 -43
- localstack/services/s3/utils.py +81 -15
- localstack/services/s3control/provider.py +107 -2
- localstack/services/s3control/validation.py +50 -0
- localstack/services/scheduler/provider.py +4 -2
- localstack/services/secretsmanager/provider.py +4 -0
- localstack/services/ses/provider.py +4 -0
- localstack/services/sns/constants.py +16 -1
- localstack/services/sns/provider.py +5 -0
- localstack/services/sns/publisher.py +15 -6
- localstack/services/sns/v2/models.py +9 -0
- localstack/services/sns/v2/provider.py +750 -19
- localstack/services/sns/v2/utils.py +12 -0
- localstack/services/sqs/constants.py +6 -0
- localstack/services/sqs/provider.py +9 -1
- localstack/services/sqs/resource_providers/aws_sqs_queue.py +61 -46
- localstack/services/ssm/provider.py +6 -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 +256 -22
- localstack/services/stepfunctions/backend/execution.py +10 -11
- 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 +83 -25
- localstack/services/stepfunctions/test_state/mock_config.py +47 -0
- localstack/services/sts/provider.py +7 -0
- localstack/services/support/provider.py +5 -1
- localstack/services/swf/provider.py +5 -1
- localstack/services/transcribe/provider.py +7 -0
- localstack/testing/aws/lambda_utils.py +1 -1
- localstack/testing/aws/util.py +2 -1
- localstack/testing/config.py +1 -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/aws/client_types.py +2 -4
- localstack/utils/batching.py +258 -0
- localstack/utils/bootstrap.py +2 -2
- localstack/utils/catalog/catalog.py +3 -2
- localstack/utils/collections.py +23 -11
- localstack/utils/container_utils/container_client.py +22 -13
- localstack/utils/container_utils/docker_cmd_client.py +6 -6
- localstack/version.py +2 -2
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.12.1.dev18.dist-info}/METADATA +7 -7
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.12.1.dev18.dist-info}/RECORD +155 -146
- localstack_core-4.12.1.dev18.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.12.1.dev18.data}/scripts/localstack +0 -0
- {localstack_core-4.10.1.dev42.data → localstack_core-4.12.1.dev18.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.10.1.dev42.data → localstack_core-4.12.1.dev18.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.12.1.dev18.dist-info}/WHEEL +0 -0
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.12.1.dev18.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.12.1.dev18.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.10.1.dev42.dist-info → localstack_core-4.12.1.dev18.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):
|
|
@@ -2598,6 +2643,19 @@ class InstanceType(StrEnum):
|
|
|
2598
2643
|
r8a_48xlarge = "r8a.48xlarge"
|
|
2599
2644
|
r8a_metal_24xl = "r8a.metal-24xl"
|
|
2600
2645
|
r8a_metal_48xl = "r8a.metal-48xl"
|
|
2646
|
+
p6_b300_48xlarge = "p6-b300.48xlarge"
|
|
2647
|
+
c8a_medium = "c8a.medium"
|
|
2648
|
+
c8a_large = "c8a.large"
|
|
2649
|
+
c8a_xlarge = "c8a.xlarge"
|
|
2650
|
+
c8a_2xlarge = "c8a.2xlarge"
|
|
2651
|
+
c8a_4xlarge = "c8a.4xlarge"
|
|
2652
|
+
c8a_8xlarge = "c8a.8xlarge"
|
|
2653
|
+
c8a_12xlarge = "c8a.12xlarge"
|
|
2654
|
+
c8a_16xlarge = "c8a.16xlarge"
|
|
2655
|
+
c8a_24xlarge = "c8a.24xlarge"
|
|
2656
|
+
c8a_48xlarge = "c8a.48xlarge"
|
|
2657
|
+
c8a_metal_24xl = "c8a.metal-24xl"
|
|
2658
|
+
c8a_metal_48xl = "c8a.metal-48xl"
|
|
2601
2659
|
|
|
2602
2660
|
|
|
2603
2661
|
class InstanceTypeHypervisor(StrEnum):
|
|
@@ -2626,6 +2684,19 @@ class InternetGatewayExclusionMode(StrEnum):
|
|
|
2626
2684
|
allow_egress = "allow-egress"
|
|
2627
2685
|
|
|
2628
2686
|
|
|
2687
|
+
class InterruptibleCapacityReservationAllocationStatus(StrEnum):
|
|
2688
|
+
pending = "pending"
|
|
2689
|
+
active = "active"
|
|
2690
|
+
updating = "updating"
|
|
2691
|
+
canceling = "canceling"
|
|
2692
|
+
canceled = "canceled"
|
|
2693
|
+
failed = "failed"
|
|
2694
|
+
|
|
2695
|
+
|
|
2696
|
+
class InterruptionType(StrEnum):
|
|
2697
|
+
adhoc = "adhoc"
|
|
2698
|
+
|
|
2699
|
+
|
|
2629
2700
|
class IpAddressType(StrEnum):
|
|
2630
2701
|
ipv4 = "ipv4"
|
|
2631
2702
|
dualstack = "dualstack"
|
|
@@ -2695,6 +2766,33 @@ class IpamOverlapStatus(StrEnum):
|
|
|
2695
2766
|
ignored = "ignored"
|
|
2696
2767
|
|
|
2697
2768
|
|
|
2769
|
+
class IpamPolicyManagedBy(StrEnum):
|
|
2770
|
+
account = "account"
|
|
2771
|
+
delegated_administrator_for_ipam = "delegated-administrator-for-ipam"
|
|
2772
|
+
|
|
2773
|
+
|
|
2774
|
+
class IpamPolicyResourceType(StrEnum):
|
|
2775
|
+
alb = "alb"
|
|
2776
|
+
eip = "eip"
|
|
2777
|
+
rds = "rds"
|
|
2778
|
+
rnat = "rnat"
|
|
2779
|
+
|
|
2780
|
+
|
|
2781
|
+
class IpamPolicyState(StrEnum):
|
|
2782
|
+
create_in_progress = "create-in-progress"
|
|
2783
|
+
create_complete = "create-complete"
|
|
2784
|
+
create_failed = "create-failed"
|
|
2785
|
+
modify_in_progress = "modify-in-progress"
|
|
2786
|
+
modify_complete = "modify-complete"
|
|
2787
|
+
modify_failed = "modify-failed"
|
|
2788
|
+
delete_in_progress = "delete-in-progress"
|
|
2789
|
+
delete_complete = "delete-complete"
|
|
2790
|
+
delete_failed = "delete-failed"
|
|
2791
|
+
isolate_in_progress = "isolate-in-progress"
|
|
2792
|
+
isolate_complete = "isolate-complete"
|
|
2793
|
+
restore_in_progress = "restore-in-progress"
|
|
2794
|
+
|
|
2795
|
+
|
|
2698
2796
|
class IpamPoolAllocationResourceType(StrEnum):
|
|
2699
2797
|
ipam_pool = "ipam-pool"
|
|
2700
2798
|
vpc = "vpc"
|
|
@@ -2702,10 +2800,12 @@ class IpamPoolAllocationResourceType(StrEnum):
|
|
|
2702
2800
|
custom = "custom"
|
|
2703
2801
|
subnet = "subnet"
|
|
2704
2802
|
eip = "eip"
|
|
2803
|
+
anycast_ip_list = "anycast-ip-list"
|
|
2705
2804
|
|
|
2706
2805
|
|
|
2707
2806
|
class IpamPoolAwsService(StrEnum):
|
|
2708
2807
|
ec2 = "ec2"
|
|
2808
|
+
global_services = "global-services"
|
|
2709
2809
|
|
|
2710
2810
|
|
|
2711
2811
|
class IpamPoolCidrFailureCode(StrEnum):
|
|
@@ -2813,6 +2913,7 @@ class IpamPublicAddressAwsService(StrEnum):
|
|
|
2813
2913
|
site_to_site_vpn = "site-to-site-vpn"
|
|
2814
2914
|
load_balancer = "load-balancer"
|
|
2815
2915
|
global_accelerator = "global-accelerator"
|
|
2916
|
+
cloudfront = "cloudfront"
|
|
2816
2917
|
other = "other"
|
|
2817
2918
|
|
|
2818
2919
|
|
|
@@ -2823,6 +2924,7 @@ class IpamPublicAddressType(StrEnum):
|
|
|
2823
2924
|
amazon_owned_contig = "amazon-owned-contig"
|
|
2824
2925
|
byoip = "byoip"
|
|
2825
2926
|
ec2_public_ip = "ec2-public-ip"
|
|
2927
|
+
anycast_ip_list_ip = "anycast-ip-list-ip"
|
|
2826
2928
|
|
|
2827
2929
|
|
|
2828
2930
|
class IpamResourceCidrIpSource(StrEnum):
|
|
@@ -2865,6 +2967,7 @@ class IpamResourceType(StrEnum):
|
|
|
2865
2967
|
public_ipv4_pool = "public-ipv4-pool"
|
|
2866
2968
|
ipv6_pool = "ipv6-pool"
|
|
2867
2969
|
eni = "eni"
|
|
2970
|
+
anycast_ip_list = "anycast-ip-list"
|
|
2868
2971
|
|
|
2869
2972
|
|
|
2870
2973
|
class IpamScopeExternalAuthorityType(StrEnum):
|
|
@@ -3078,6 +3181,7 @@ class ManagedBy(StrEnum):
|
|
|
3078
3181
|
class MarketType(StrEnum):
|
|
3079
3182
|
spot = "spot"
|
|
3080
3183
|
capacity_block = "capacity-block"
|
|
3184
|
+
interruptible_capacity_reservation = "interruptible-capacity-reservation"
|
|
3081
3185
|
|
|
3082
3186
|
|
|
3083
3187
|
class MembershipType(StrEnum):
|
|
@@ -3172,6 +3276,25 @@ class NatGatewayAddressStatus(StrEnum):
|
|
|
3172
3276
|
failed = "failed"
|
|
3173
3277
|
|
|
3174
3278
|
|
|
3279
|
+
class NatGatewayApplianceModifyState(StrEnum):
|
|
3280
|
+
modifying = "modifying"
|
|
3281
|
+
completed = "completed"
|
|
3282
|
+
failed = "failed"
|
|
3283
|
+
|
|
3284
|
+
|
|
3285
|
+
class NatGatewayApplianceState(StrEnum):
|
|
3286
|
+
attaching = "attaching"
|
|
3287
|
+
attached = "attached"
|
|
3288
|
+
detaching = "detaching"
|
|
3289
|
+
detached = "detached"
|
|
3290
|
+
attach_failed = "attach-failed"
|
|
3291
|
+
detach_failed = "detach-failed"
|
|
3292
|
+
|
|
3293
|
+
|
|
3294
|
+
class NatGatewayApplianceType(StrEnum):
|
|
3295
|
+
network_firewall_proxy = "network-firewall-proxy"
|
|
3296
|
+
|
|
3297
|
+
|
|
3175
3298
|
class NatGatewayState(StrEnum):
|
|
3176
3299
|
pending = "pending"
|
|
3177
3300
|
failed = "failed"
|
|
@@ -3535,6 +3658,7 @@ class ResourceType(StrEnum):
|
|
|
3535
3658
|
transit_gateway_connect_peer = "transit-gateway-connect-peer"
|
|
3536
3659
|
transit_gateway_multicast_domain = "transit-gateway-multicast-domain"
|
|
3537
3660
|
transit_gateway_policy_table = "transit-gateway-policy-table"
|
|
3661
|
+
transit_gateway_metering_policy = "transit-gateway-metering-policy"
|
|
3538
3662
|
transit_gateway_route_table = "transit-gateway-route-table"
|
|
3539
3663
|
transit_gateway_route_table_announcement = "transit-gateway-route-table-announcement"
|
|
3540
3664
|
volume = "volume"
|
|
@@ -3557,6 +3681,7 @@ class ResourceType(StrEnum):
|
|
|
3557
3681
|
verified_access_trust_provider = "verified-access-trust-provider"
|
|
3558
3682
|
vpn_connection_device_type = "vpn-connection-device-type"
|
|
3559
3683
|
vpc_block_public_access_exclusion = "vpc-block-public-access-exclusion"
|
|
3684
|
+
vpc_encryption_control = "vpc-encryption-control"
|
|
3560
3685
|
route_server = "route-server"
|
|
3561
3686
|
route_server_endpoint = "route-server-endpoint"
|
|
3562
3687
|
route_server_peer = "route-server-peer"
|
|
@@ -3568,8 +3693,10 @@ class ResourceType(StrEnum):
|
|
|
3568
3693
|
capacity_block = "capacity-block"
|
|
3569
3694
|
mac_modification_task = "mac-modification-task"
|
|
3570
3695
|
ipam_prefix_list_resolver = "ipam-prefix-list-resolver"
|
|
3696
|
+
ipam_policy = "ipam-policy"
|
|
3571
3697
|
ipam_prefix_list_resolver_target = "ipam-prefix-list-resolver-target"
|
|
3572
3698
|
capacity_manager_data_export = "capacity-manager-data-export"
|
|
3699
|
+
vpn_concentrator = "vpn-concentrator"
|
|
3573
3700
|
|
|
3574
3701
|
|
|
3575
3702
|
class RootDeviceType(StrEnum):
|
|
@@ -3727,6 +3854,7 @@ class ServiceManaged(StrEnum):
|
|
|
3727
3854
|
alb = "alb"
|
|
3728
3855
|
nlb = "nlb"
|
|
3729
3856
|
rnat = "rnat"
|
|
3857
|
+
rds = "rds"
|
|
3730
3858
|
|
|
3731
3859
|
|
|
3732
3860
|
class ServiceState(StrEnum):
|
|
@@ -3813,6 +3941,11 @@ class SpreadLevel(StrEnum):
|
|
|
3813
3941
|
rack = "rack"
|
|
3814
3942
|
|
|
3815
3943
|
|
|
3944
|
+
class SqlServerLicenseUsage(StrEnum):
|
|
3945
|
+
full = "full"
|
|
3946
|
+
waived = "waived"
|
|
3947
|
+
|
|
3948
|
+
|
|
3816
3949
|
class State(StrEnum):
|
|
3817
3950
|
PendingAcceptance = "PendingAcceptance"
|
|
3818
3951
|
Pending = "Pending"
|
|
@@ -3992,6 +4125,7 @@ class TransitGatewayAssociationState(StrEnum):
|
|
|
3992
4125
|
class TransitGatewayAttachmentResourceType(StrEnum):
|
|
3993
4126
|
vpc = "vpc"
|
|
3994
4127
|
vpn = "vpn"
|
|
4128
|
+
vpn_concentrator = "vpn-concentrator"
|
|
3995
4129
|
direct_connect_gateway = "direct-connect-gateway"
|
|
3996
4130
|
connect = "connect"
|
|
3997
4131
|
peering = "peering"
|
|
@@ -4022,6 +4156,25 @@ class TransitGatewayConnectPeerState(StrEnum):
|
|
|
4022
4156
|
deleted = "deleted"
|
|
4023
4157
|
|
|
4024
4158
|
|
|
4159
|
+
class TransitGatewayMeteringPayerType(StrEnum):
|
|
4160
|
+
source_attachment_owner = "source-attachment-owner"
|
|
4161
|
+
destination_attachment_owner = "destination-attachment-owner"
|
|
4162
|
+
transit_gateway_owner = "transit-gateway-owner"
|
|
4163
|
+
|
|
4164
|
+
|
|
4165
|
+
class TransitGatewayMeteringPolicyEntryState(StrEnum):
|
|
4166
|
+
available = "available"
|
|
4167
|
+
deleted = "deleted"
|
|
4168
|
+
|
|
4169
|
+
|
|
4170
|
+
class TransitGatewayMeteringPolicyState(StrEnum):
|
|
4171
|
+
available = "available"
|
|
4172
|
+
deleted = "deleted"
|
|
4173
|
+
pending = "pending"
|
|
4174
|
+
modifying = "modifying"
|
|
4175
|
+
deleting = "deleting"
|
|
4176
|
+
|
|
4177
|
+
|
|
4025
4178
|
class TransitGatewayMulitcastDomainAssociationState(StrEnum):
|
|
4026
4179
|
pendingAcceptance = "pendingAcceptance"
|
|
4027
4180
|
associating = "associating"
|
|
@@ -4280,6 +4433,11 @@ class VpcEncryptionControlExclusionState(StrEnum):
|
|
|
4280
4433
|
disabled = "disabled"
|
|
4281
4434
|
|
|
4282
4435
|
|
|
4436
|
+
class VpcEncryptionControlExclusionStateInput(StrEnum):
|
|
4437
|
+
enable = "enable"
|
|
4438
|
+
disable = "disable"
|
|
4439
|
+
|
|
4440
|
+
|
|
4283
4441
|
class VpcEncryptionControlMode(StrEnum):
|
|
4284
4442
|
monitor = "monitor"
|
|
4285
4443
|
enforce = "enforce"
|
|
@@ -4326,6 +4484,10 @@ class VpcTenancy(StrEnum):
|
|
|
4326
4484
|
default = "default"
|
|
4327
4485
|
|
|
4328
4486
|
|
|
4487
|
+
class VpnConcentratorType(StrEnum):
|
|
4488
|
+
ipsec_1 = "ipsec.1"
|
|
4489
|
+
|
|
4490
|
+
|
|
4329
4491
|
class VpnEcmpSupportValue(StrEnum):
|
|
4330
4492
|
enable = "enable"
|
|
4331
4493
|
disable = "disable"
|
|
@@ -5095,6 +5257,7 @@ class ByoipCidr(TypedDict, total=False):
|
|
|
5095
5257
|
StatusMessage: String | None
|
|
5096
5258
|
State: ByoipCidrState | None
|
|
5097
5259
|
NetworkBorderGroup: String | None
|
|
5260
|
+
AdvertisementType: String | None
|
|
5098
5261
|
|
|
5099
5262
|
|
|
5100
5263
|
class AdvertiseByoipCidrResult(TypedDict, total=False):
|
|
@@ -5294,6 +5457,8 @@ class NatGatewayAddress(TypedDict, total=False):
|
|
|
5294
5457
|
IsPrimary: Boolean | None
|
|
5295
5458
|
FailureMessage: String | None
|
|
5296
5459
|
Status: NatGatewayAddressStatus | None
|
|
5460
|
+
AvailabilityZone: AvailabilityZoneName | None
|
|
5461
|
+
AvailabilityZoneId: AvailabilityZoneId | None
|
|
5297
5462
|
|
|
5298
5463
|
|
|
5299
5464
|
NatGatewayAddressList = list[NatGatewayAddress]
|
|
@@ -5477,6 +5642,8 @@ class AssociateNatGatewayAddressRequest(ServiceRequest):
|
|
|
5477
5642
|
AllocationIds: AllocationIdList
|
|
5478
5643
|
PrivateIpAddresses: IpList | None
|
|
5479
5644
|
DryRun: Boolean | None
|
|
5645
|
+
AvailabilityZone: AvailabilityZoneName | None
|
|
5646
|
+
AvailabilityZoneId: AvailabilityZoneId | None
|
|
5480
5647
|
|
|
5481
5648
|
|
|
5482
5649
|
class AssociateNatGatewayAddressResult(TypedDict, total=False):
|
|
@@ -6051,6 +6218,13 @@ class AvailabilityZone(TypedDict, total=False):
|
|
|
6051
6218
|
State: AvailabilityZoneState | None
|
|
6052
6219
|
|
|
6053
6220
|
|
|
6221
|
+
class AvailabilityZoneAddress(TypedDict, total=False):
|
|
6222
|
+
AvailabilityZone: AvailabilityZoneName | None
|
|
6223
|
+
AvailabilityZoneId: AvailabilityZoneId | None
|
|
6224
|
+
AllocationIds: AllocationIdList | None
|
|
6225
|
+
|
|
6226
|
+
|
|
6227
|
+
AvailabilityZoneAddresses = list[AvailabilityZoneAddress]
|
|
6054
6228
|
AvailabilityZoneIdStringList = list[String]
|
|
6055
6229
|
AvailabilityZoneList = list[AvailabilityZone]
|
|
6056
6230
|
AvailabilityZoneStringList = list[String]
|
|
@@ -6575,6 +6749,19 @@ class CapacityManagerDimension(TypedDict, total=False):
|
|
|
6575
6749
|
ReservationUnusedFinancialOwner: String | None
|
|
6576
6750
|
|
|
6577
6751
|
|
|
6752
|
+
class InterruptionInfo(TypedDict, total=False):
|
|
6753
|
+
SourceCapacityReservationId: String | None
|
|
6754
|
+
InterruptionType: InterruptionType | None
|
|
6755
|
+
|
|
6756
|
+
|
|
6757
|
+
class InterruptibleCapacityAllocation(TypedDict, total=False):
|
|
6758
|
+
InstanceCount: Integer | None
|
|
6759
|
+
TargetInstanceCount: Integer | None
|
|
6760
|
+
Status: InterruptibleCapacityReservationAllocationStatus | None
|
|
6761
|
+
InterruptibleCapacityReservationId: String | None
|
|
6762
|
+
InterruptionType: InterruptionType | None
|
|
6763
|
+
|
|
6764
|
+
|
|
6578
6765
|
class CapacityReservationCommitmentInfo(TypedDict, total=False):
|
|
6579
6766
|
CommittedInstanceCount: Integer | None
|
|
6580
6767
|
CommitmentEndDate: MillisecondDateTime | None
|
|
@@ -6609,6 +6796,9 @@ class CapacityReservation(TypedDict, total=False):
|
|
|
6609
6796
|
CommitmentInfo: CapacityReservationCommitmentInfo | None
|
|
6610
6797
|
DeliveryPreference: CapacityReservationDeliveryPreference | None
|
|
6611
6798
|
CapacityBlockId: CapacityBlockId | None
|
|
6799
|
+
Interruptible: BoxedBoolean | None
|
|
6800
|
+
InterruptibleCapacityAllocation: InterruptibleCapacityAllocation | None
|
|
6801
|
+
InterruptionInfo: InterruptionInfo | None
|
|
6612
6802
|
|
|
6613
6803
|
|
|
6614
6804
|
class CapacityReservationInfo(TypedDict, total=False):
|
|
@@ -6961,12 +7151,18 @@ class CloudWatchLogOptions(TypedDict, total=False):
|
|
|
6961
7151
|
LogEnabled: Boolean | None
|
|
6962
7152
|
LogGroupArn: String | None
|
|
6963
7153
|
LogOutputFormat: String | None
|
|
7154
|
+
BgpLogEnabled: Boolean | None
|
|
7155
|
+
BgpLogGroupArn: String | None
|
|
7156
|
+
BgpLogOutputFormat: String | None
|
|
6964
7157
|
|
|
6965
7158
|
|
|
6966
7159
|
class CloudWatchLogOptionsSpecification(TypedDict, total=False):
|
|
6967
7160
|
LogEnabled: Boolean | None
|
|
6968
7161
|
LogGroupArn: CloudWatchLogGroupArn | None
|
|
6969
7162
|
LogOutputFormat: String | None
|
|
7163
|
+
BgpLogEnabled: Boolean | None
|
|
7164
|
+
BgpLogGroupArn: CloudWatchLogGroupArn | None
|
|
7165
|
+
BgpLogOutputFormat: String | None
|
|
6970
7166
|
|
|
6971
7167
|
|
|
6972
7168
|
class CoipAddressUsage(TypedDict, total=False):
|
|
@@ -8161,6 +8357,21 @@ class CreateInternetGatewayResult(TypedDict, total=False):
|
|
|
8161
8357
|
InternetGateway: InternetGateway | None
|
|
8162
8358
|
|
|
8163
8359
|
|
|
8360
|
+
class CreateInterruptibleCapacityReservationAllocationRequest(ServiceRequest):
|
|
8361
|
+
CapacityReservationId: CapacityReservationId
|
|
8362
|
+
InstanceCount: Integer
|
|
8363
|
+
ClientToken: String | None
|
|
8364
|
+
DryRun: Boolean | None
|
|
8365
|
+
TagSpecifications: TagSpecificationList | None
|
|
8366
|
+
|
|
8367
|
+
|
|
8368
|
+
class CreateInterruptibleCapacityReservationAllocationResult(TypedDict, total=False):
|
|
8369
|
+
SourceCapacityReservationId: CapacityReservationId | None
|
|
8370
|
+
TargetInstanceCount: Integer | None
|
|
8371
|
+
Status: InterruptibleCapacityReservationAllocationStatus | None
|
|
8372
|
+
InterruptionType: InterruptionType | None
|
|
8373
|
+
|
|
8374
|
+
|
|
8164
8375
|
class CreateIpamExternalResourceVerificationTokenRequest(ServiceRequest):
|
|
8165
8376
|
DryRun: Boolean | None
|
|
8166
8377
|
IpamId: IpamId
|
|
@@ -8186,6 +8397,28 @@ class CreateIpamExternalResourceVerificationTokenResult(TypedDict, total=False):
|
|
|
8186
8397
|
IpamExternalResourceVerificationToken: IpamExternalResourceVerificationToken | None
|
|
8187
8398
|
|
|
8188
8399
|
|
|
8400
|
+
class CreateIpamPolicyRequest(ServiceRequest):
|
|
8401
|
+
DryRun: Boolean | None
|
|
8402
|
+
TagSpecifications: TagSpecificationList | None
|
|
8403
|
+
ClientToken: String | None
|
|
8404
|
+
IpamId: IpamId
|
|
8405
|
+
|
|
8406
|
+
|
|
8407
|
+
class IpamPolicy(TypedDict, total=False):
|
|
8408
|
+
OwnerId: String | None
|
|
8409
|
+
IpamPolicyId: IpamPolicyId | None
|
|
8410
|
+
IpamPolicyArn: ResourceArn | None
|
|
8411
|
+
IpamPolicyRegion: String | None
|
|
8412
|
+
State: IpamPolicyState | None
|
|
8413
|
+
StateMessage: String | None
|
|
8414
|
+
Tags: TagList | None
|
|
8415
|
+
IpamId: IpamId | None
|
|
8416
|
+
|
|
8417
|
+
|
|
8418
|
+
class CreateIpamPolicyResult(TypedDict, total=False):
|
|
8419
|
+
IpamPolicy: IpamPolicy | None
|
|
8420
|
+
|
|
8421
|
+
|
|
8189
8422
|
class IpamPoolSourceResourceRequest(TypedDict, total=False):
|
|
8190
8423
|
ResourceId: String | None
|
|
8191
8424
|
ResourceType: IpamPoolSourceResourceType | None
|
|
@@ -9233,10 +9466,13 @@ class CreateManagedPrefixListResult(TypedDict, total=False):
|
|
|
9233
9466
|
|
|
9234
9467
|
|
|
9235
9468
|
class CreateNatGatewayRequest(ServiceRequest):
|
|
9469
|
+
AvailabilityMode: AvailabilityMode | None
|
|
9236
9470
|
AllocationId: AllocationId | None
|
|
9237
9471
|
ClientToken: String | None
|
|
9238
9472
|
DryRun: Boolean | None
|
|
9239
|
-
SubnetId: SubnetId
|
|
9473
|
+
SubnetId: SubnetId | None
|
|
9474
|
+
VpcId: VpcId | None
|
|
9475
|
+
AvailabilityZoneAddresses: AvailabilityZoneAddresses | None
|
|
9240
9476
|
TagSpecifications: TagSpecificationList | None
|
|
9241
9477
|
ConnectivityType: ConnectivityType | None
|
|
9242
9478
|
PrivateIpAddress: String | None
|
|
@@ -9245,6 +9481,19 @@ class CreateNatGatewayRequest(ServiceRequest):
|
|
|
9245
9481
|
SecondaryPrivateIpAddressCount: PrivateIpAddressCount | None
|
|
9246
9482
|
|
|
9247
9483
|
|
|
9484
|
+
class NatGatewayAttachedAppliance(TypedDict, total=False):
|
|
9485
|
+
Type: NatGatewayApplianceType | None
|
|
9486
|
+
ApplianceArn: String | None
|
|
9487
|
+
VpcEndpointId: String | None
|
|
9488
|
+
AttachmentState: NatGatewayApplianceState | None
|
|
9489
|
+
ModificationState: NatGatewayApplianceModifyState | None
|
|
9490
|
+
FailureCode: String | None
|
|
9491
|
+
FailureMessage: String | None
|
|
9492
|
+
|
|
9493
|
+
|
|
9494
|
+
NatGatewayAttachedApplianceList = list[NatGatewayAttachedAppliance]
|
|
9495
|
+
|
|
9496
|
+
|
|
9248
9497
|
class ProvisionedBandwidth(TypedDict, total=False):
|
|
9249
9498
|
ProvisionTime: DateTime | None
|
|
9250
9499
|
Provisioned: String | None
|
|
@@ -9266,6 +9515,11 @@ class NatGateway(TypedDict, total=False):
|
|
|
9266
9515
|
VpcId: String | None
|
|
9267
9516
|
Tags: TagList | None
|
|
9268
9517
|
ConnectivityType: ConnectivityType | None
|
|
9518
|
+
AvailabilityMode: AvailabilityMode | None
|
|
9519
|
+
AutoScalingIps: AutoScalingIpsState | None
|
|
9520
|
+
AutoProvisionZones: AutoProvisionZonesState | None
|
|
9521
|
+
AttachedAppliances: NatGatewayAttachedApplianceList | None
|
|
9522
|
+
RouteTableId: String | None
|
|
9269
9523
|
|
|
9270
9524
|
|
|
9271
9525
|
class CreateNatGatewayResult(TypedDict, total=False):
|
|
@@ -10212,6 +10466,70 @@ class CreateTransitGatewayConnectResult(TypedDict, total=False):
|
|
|
10212
10466
|
TransitGatewayConnect: TransitGatewayConnect | None
|
|
10213
10467
|
|
|
10214
10468
|
|
|
10469
|
+
class CreateTransitGatewayMeteringPolicyEntryRequest(ServiceRequest):
|
|
10470
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId
|
|
10471
|
+
PolicyRuleNumber: Integer
|
|
10472
|
+
SourceTransitGatewayAttachmentId: TransitGatewayAttachmentId | None
|
|
10473
|
+
SourceTransitGatewayAttachmentType: TransitGatewayAttachmentResourceType | None
|
|
10474
|
+
SourceCidrBlock: String | None
|
|
10475
|
+
SourcePortRange: String | None
|
|
10476
|
+
DestinationTransitGatewayAttachmentId: TransitGatewayAttachmentId | None
|
|
10477
|
+
DestinationTransitGatewayAttachmentType: TransitGatewayAttachmentResourceType | None
|
|
10478
|
+
DestinationCidrBlock: String | None
|
|
10479
|
+
DestinationPortRange: String | None
|
|
10480
|
+
Protocol: String | None
|
|
10481
|
+
MeteredAccount: TransitGatewayMeteringPayerType
|
|
10482
|
+
DryRun: Boolean | None
|
|
10483
|
+
|
|
10484
|
+
|
|
10485
|
+
class TransitGatewayMeteringPolicyRule(TypedDict, total=False):
|
|
10486
|
+
SourceTransitGatewayAttachmentId: TransitGatewayAttachmentId | None
|
|
10487
|
+
SourceTransitGatewayAttachmentType: TransitGatewayAttachmentResourceType | None
|
|
10488
|
+
SourceCidrBlock: String | None
|
|
10489
|
+
SourcePortRange: String | None
|
|
10490
|
+
DestinationTransitGatewayAttachmentId: TransitGatewayAttachmentId | None
|
|
10491
|
+
DestinationTransitGatewayAttachmentType: TransitGatewayAttachmentResourceType | None
|
|
10492
|
+
DestinationCidrBlock: String | None
|
|
10493
|
+
DestinationPortRange: String | None
|
|
10494
|
+
Protocol: String | None
|
|
10495
|
+
|
|
10496
|
+
|
|
10497
|
+
class TransitGatewayMeteringPolicyEntry(TypedDict, total=False):
|
|
10498
|
+
PolicyRuleNumber: String | None
|
|
10499
|
+
MeteredAccount: TransitGatewayMeteringPayerType | None
|
|
10500
|
+
State: TransitGatewayMeteringPolicyEntryState | None
|
|
10501
|
+
UpdatedAt: MillisecondDateTime | None
|
|
10502
|
+
UpdateEffectiveAt: MillisecondDateTime | None
|
|
10503
|
+
MeteringPolicyRule: TransitGatewayMeteringPolicyRule | None
|
|
10504
|
+
|
|
10505
|
+
|
|
10506
|
+
class CreateTransitGatewayMeteringPolicyEntryResult(TypedDict, total=False):
|
|
10507
|
+
TransitGatewayMeteringPolicyEntry: TransitGatewayMeteringPolicyEntry | None
|
|
10508
|
+
|
|
10509
|
+
|
|
10510
|
+
TransitGatewayAttachmentIdStringList = list[TransitGatewayAttachmentId]
|
|
10511
|
+
|
|
10512
|
+
|
|
10513
|
+
class CreateTransitGatewayMeteringPolicyRequest(ServiceRequest):
|
|
10514
|
+
TransitGatewayId: TransitGatewayId
|
|
10515
|
+
MiddleboxAttachmentIds: TransitGatewayAttachmentIdStringList | None
|
|
10516
|
+
TagSpecifications: TagSpecificationList | None
|
|
10517
|
+
DryRun: Boolean | None
|
|
10518
|
+
|
|
10519
|
+
|
|
10520
|
+
class TransitGatewayMeteringPolicy(TypedDict, total=False):
|
|
10521
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId | None
|
|
10522
|
+
TransitGatewayId: TransitGatewayId | None
|
|
10523
|
+
MiddleboxAttachmentIds: ValueStringList | None
|
|
10524
|
+
State: TransitGatewayMeteringPolicyState | None
|
|
10525
|
+
UpdateEffectiveAt: MillisecondDateTime | None
|
|
10526
|
+
Tags: TagList | None
|
|
10527
|
+
|
|
10528
|
+
|
|
10529
|
+
class CreateTransitGatewayMeteringPolicyResult(TypedDict, total=False):
|
|
10530
|
+
TransitGatewayMeteringPolicy: TransitGatewayMeteringPolicy | None
|
|
10531
|
+
|
|
10532
|
+
|
|
10215
10533
|
class CreateTransitGatewayMulticastDomainRequestOptions(TypedDict, total=False):
|
|
10216
10534
|
Igmpv2Support: Igmpv2SupportValue | None
|
|
10217
10535
|
StaticSourcesSupport: StaticSourcesSupportValue | None
|
|
@@ -10331,6 +10649,11 @@ class CreateTransitGatewayRequest(ServiceRequest):
|
|
|
10331
10649
|
DryRun: Boolean | None
|
|
10332
10650
|
|
|
10333
10651
|
|
|
10652
|
+
class EncryptionSupport(TypedDict, total=False):
|
|
10653
|
+
EncryptionState: EncryptionStateValue | None
|
|
10654
|
+
StateMessage: String | None
|
|
10655
|
+
|
|
10656
|
+
|
|
10334
10657
|
class TransitGatewayOptions(TypedDict, total=False):
|
|
10335
10658
|
AmazonSideAsn: Long | None
|
|
10336
10659
|
TransitGatewayCidrBlocks: ValueStringList | None
|
|
@@ -10343,6 +10666,7 @@ class TransitGatewayOptions(TypedDict, total=False):
|
|
|
10343
10666
|
DnsSupport: DnsSupportValue | None
|
|
10344
10667
|
SecurityGroupReferencingSupport: SecurityGroupReferencingSupportValue | None
|
|
10345
10668
|
MulticastSupport: MulticastSupportValue | None
|
|
10669
|
+
EncryptionSupport: EncryptionSupport | None
|
|
10346
10670
|
|
|
10347
10671
|
|
|
10348
10672
|
class TransitGateway(TypedDict, total=False):
|
|
@@ -10741,6 +11065,16 @@ class CreateVpcBlockPublicAccessExclusionResult(TypedDict, total=False):
|
|
|
10741
11065
|
VpcBlockPublicAccessExclusion: VpcBlockPublicAccessExclusion | None
|
|
10742
11066
|
|
|
10743
11067
|
|
|
11068
|
+
class CreateVpcEncryptionControlRequest(ServiceRequest):
|
|
11069
|
+
DryRun: Boolean | None
|
|
11070
|
+
VpcId: VpcId
|
|
11071
|
+
TagSpecifications: TagSpecificationList | None
|
|
11072
|
+
|
|
11073
|
+
|
|
11074
|
+
class CreateVpcEncryptionControlResult(TypedDict, total=False):
|
|
11075
|
+
VpcEncryptionControl: VpcEncryptionControl | None
|
|
11076
|
+
|
|
11077
|
+
|
|
10744
11078
|
class CreateVpcEndpointConnectionNotificationRequest(ServiceRequest):
|
|
10745
11079
|
DryRun: Boolean | None
|
|
10746
11080
|
ServiceId: VpcEndpointServiceId | None
|
|
@@ -10942,6 +11276,18 @@ class CreateVpcPeeringConnectionResult(TypedDict, total=False):
|
|
|
10942
11276
|
VpcPeeringConnection: VpcPeeringConnection | None
|
|
10943
11277
|
|
|
10944
11278
|
|
|
11279
|
+
class VpcEncryptionControlConfiguration(TypedDict, total=False):
|
|
11280
|
+
Mode: VpcEncryptionControlMode
|
|
11281
|
+
InternetGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11282
|
+
EgressOnlyInternetGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11283
|
+
NatGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11284
|
+
VirtualPrivateGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11285
|
+
VpcPeeringExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11286
|
+
LambdaExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11287
|
+
VpcLatticeExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11288
|
+
ElasticFileSystemExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
11289
|
+
|
|
11290
|
+
|
|
10945
11291
|
class CreateVpcRequest(ServiceRequest):
|
|
10946
11292
|
CidrBlock: String | None
|
|
10947
11293
|
Ipv6Pool: Ipv6PoolEc2Id | None
|
|
@@ -10951,6 +11297,7 @@ class CreateVpcRequest(ServiceRequest):
|
|
|
10951
11297
|
Ipv6IpamPoolId: IpamPoolId | None
|
|
10952
11298
|
Ipv6NetmaskLength: NetmaskLength | None
|
|
10953
11299
|
Ipv6CidrBlockNetworkBorderGroup: String | None
|
|
11300
|
+
VpcEncryptionControl: VpcEncryptionControlConfiguration | None
|
|
10954
11301
|
TagSpecifications: TagSpecificationList | None
|
|
10955
11302
|
DryRun: Boolean | None
|
|
10956
11303
|
InstanceTenancy: Tenancy | None
|
|
@@ -10961,6 +11308,26 @@ class CreateVpcResult(TypedDict, total=False):
|
|
|
10961
11308
|
Vpc: Vpc | None
|
|
10962
11309
|
|
|
10963
11310
|
|
|
11311
|
+
class CreateVpnConcentratorRequest(ServiceRequest):
|
|
11312
|
+
Type: VpnConcentratorType
|
|
11313
|
+
TransitGatewayId: TransitGatewayId | None
|
|
11314
|
+
TagSpecifications: TagSpecificationList | None
|
|
11315
|
+
DryRun: Boolean | None
|
|
11316
|
+
|
|
11317
|
+
|
|
11318
|
+
class VpnConcentrator(TypedDict, total=False):
|
|
11319
|
+
VpnConcentratorId: String | None
|
|
11320
|
+
State: String | None
|
|
11321
|
+
TransitGatewayId: String | None
|
|
11322
|
+
TransitGatewayAttachmentId: String | None
|
|
11323
|
+
Type: String | None
|
|
11324
|
+
Tags: TagList | None
|
|
11325
|
+
|
|
11326
|
+
|
|
11327
|
+
class CreateVpnConcentratorResult(TypedDict, total=False):
|
|
11328
|
+
VpnConcentrator: VpnConcentrator | None
|
|
11329
|
+
|
|
11330
|
+
|
|
10964
11331
|
class VpnTunnelLogOptionsSpecification(TypedDict, total=False):
|
|
10965
11332
|
CloudWatchLogOptions: CloudWatchLogOptionsSpecification | None
|
|
10966
11333
|
|
|
@@ -11059,6 +11426,7 @@ class CreateVpnConnectionRequest(ServiceRequest):
|
|
|
11059
11426
|
Type: String
|
|
11060
11427
|
VpnGatewayId: VpnGatewayId | None
|
|
11061
11428
|
TransitGatewayId: TransitGatewayId | None
|
|
11429
|
+
VpnConcentratorId: VpnConcentratorId | None
|
|
11062
11430
|
TagSpecifications: TagSpecificationList | None
|
|
11063
11431
|
PreSharedKeyStorage: String | None
|
|
11064
11432
|
DryRun: Boolean | None
|
|
@@ -11183,6 +11551,7 @@ class VpnConnectionOptions(TypedDict, total=False):
|
|
|
11183
11551
|
class VpnConnection(TypedDict, total=False):
|
|
11184
11552
|
Category: String | None
|
|
11185
11553
|
TransitGatewayId: String | None
|
|
11554
|
+
VpnConcentratorId: String | None
|
|
11186
11555
|
CoreNetworkArn: String | None
|
|
11187
11556
|
CoreNetworkAttachmentArn: String | None
|
|
11188
11557
|
GatewayAssociationState: GatewayAssociationState | None
|
|
@@ -11472,6 +11841,15 @@ class DeleteIpamExternalResourceVerificationTokenResult(TypedDict, total=False):
|
|
|
11472
11841
|
IpamExternalResourceVerificationToken: IpamExternalResourceVerificationToken | None
|
|
11473
11842
|
|
|
11474
11843
|
|
|
11844
|
+
class DeleteIpamPolicyRequest(ServiceRequest):
|
|
11845
|
+
DryRun: Boolean | None
|
|
11846
|
+
IpamPolicyId: IpamPolicyId
|
|
11847
|
+
|
|
11848
|
+
|
|
11849
|
+
class DeleteIpamPolicyResult(TypedDict, total=False):
|
|
11850
|
+
IpamPolicy: IpamPolicy | None
|
|
11851
|
+
|
|
11852
|
+
|
|
11475
11853
|
class DeleteIpamPoolRequest(ServiceRequest):
|
|
11476
11854
|
DryRun: Boolean | None
|
|
11477
11855
|
IpamPoolId: IpamPoolId
|
|
@@ -11921,6 +12299,25 @@ class DeleteTransitGatewayConnectResult(TypedDict, total=False):
|
|
|
11921
12299
|
TransitGatewayConnect: TransitGatewayConnect | None
|
|
11922
12300
|
|
|
11923
12301
|
|
|
12302
|
+
class DeleteTransitGatewayMeteringPolicyEntryRequest(ServiceRequest):
|
|
12303
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId
|
|
12304
|
+
PolicyRuleNumber: Integer
|
|
12305
|
+
DryRun: Boolean | None
|
|
12306
|
+
|
|
12307
|
+
|
|
12308
|
+
class DeleteTransitGatewayMeteringPolicyEntryResult(TypedDict, total=False):
|
|
12309
|
+
TransitGatewayMeteringPolicyEntry: TransitGatewayMeteringPolicyEntry | None
|
|
12310
|
+
|
|
12311
|
+
|
|
12312
|
+
class DeleteTransitGatewayMeteringPolicyRequest(ServiceRequest):
|
|
12313
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId
|
|
12314
|
+
DryRun: Boolean | None
|
|
12315
|
+
|
|
12316
|
+
|
|
12317
|
+
class DeleteTransitGatewayMeteringPolicyResult(TypedDict, total=False):
|
|
12318
|
+
TransitGatewayMeteringPolicy: TransitGatewayMeteringPolicy | None
|
|
12319
|
+
|
|
12320
|
+
|
|
11924
12321
|
class DeleteTransitGatewayMulticastDomainRequest(ServiceRequest):
|
|
11925
12322
|
TransitGatewayMulticastDomainId: TransitGatewayMulticastDomainId
|
|
11926
12323
|
DryRun: Boolean | None
|
|
@@ -12058,6 +12455,15 @@ class DeleteVpcBlockPublicAccessExclusionResult(TypedDict, total=False):
|
|
|
12058
12455
|
VpcBlockPublicAccessExclusion: VpcBlockPublicAccessExclusion | None
|
|
12059
12456
|
|
|
12060
12457
|
|
|
12458
|
+
class DeleteVpcEncryptionControlRequest(ServiceRequest):
|
|
12459
|
+
DryRun: Boolean | None
|
|
12460
|
+
VpcEncryptionControlId: VpcEncryptionControlId
|
|
12461
|
+
|
|
12462
|
+
|
|
12463
|
+
class DeleteVpcEncryptionControlResult(TypedDict, total=False):
|
|
12464
|
+
VpcEncryptionControl: VpcEncryptionControl | None
|
|
12465
|
+
|
|
12466
|
+
|
|
12061
12467
|
class DeleteVpcEndpointConnectionNotificationsRequest(ServiceRequest):
|
|
12062
12468
|
DryRun: Boolean | None
|
|
12063
12469
|
ConnectionNotificationIds: ConnectionNotificationIdsList
|
|
@@ -12102,6 +12508,15 @@ class DeleteVpcRequest(ServiceRequest):
|
|
|
12102
12508
|
DryRun: Boolean | None
|
|
12103
12509
|
|
|
12104
12510
|
|
|
12511
|
+
class DeleteVpnConcentratorRequest(ServiceRequest):
|
|
12512
|
+
VpnConcentratorId: VpnConcentratorId
|
|
12513
|
+
DryRun: Boolean | None
|
|
12514
|
+
|
|
12515
|
+
|
|
12516
|
+
class DeleteVpnConcentratorResult(TypedDict, total=False):
|
|
12517
|
+
Return: Boolean | None
|
|
12518
|
+
|
|
12519
|
+
|
|
12105
12520
|
class DeleteVpnConnectionRequest(ServiceRequest):
|
|
12106
12521
|
VpnConnectionId: VpnConnectionId
|
|
12107
12522
|
DryRun: Boolean | None
|
|
@@ -13723,6 +14138,47 @@ class DescribeInstanceImageMetadataResult(TypedDict, total=False):
|
|
|
13723
14138
|
NextToken: String | None
|
|
13724
14139
|
|
|
13725
14140
|
|
|
14141
|
+
class DescribeInstanceSqlHaHistoryStatesRequest(ServiceRequest):
|
|
14142
|
+
InstanceIds: InstanceIdStringList | None
|
|
14143
|
+
StartTime: MillisecondDateTime | None
|
|
14144
|
+
EndTime: MillisecondDateTime | None
|
|
14145
|
+
NextToken: NextToken | None
|
|
14146
|
+
MaxResults: DescribeInstanceSqlHaStatesRequestMaxResultsInteger | None
|
|
14147
|
+
Filters: FilterList | None
|
|
14148
|
+
DryRun: Boolean | None
|
|
14149
|
+
|
|
14150
|
+
|
|
14151
|
+
class RegisteredInstance(TypedDict, total=False):
|
|
14152
|
+
InstanceId: InstanceId | None
|
|
14153
|
+
SqlServerLicenseUsage: SqlServerLicenseUsage | None
|
|
14154
|
+
HaStatus: HaStatus | None
|
|
14155
|
+
ProcessingStatus: String | None
|
|
14156
|
+
LastUpdatedTime: MillisecondDateTime | None
|
|
14157
|
+
SqlServerCredentials: String | None
|
|
14158
|
+
Tags: TagList | None
|
|
14159
|
+
|
|
14160
|
+
|
|
14161
|
+
RegisteredInstanceList = list[RegisteredInstance]
|
|
14162
|
+
|
|
14163
|
+
|
|
14164
|
+
class DescribeInstanceSqlHaHistoryStatesResult(TypedDict, total=False):
|
|
14165
|
+
Instances: RegisteredInstanceList | None
|
|
14166
|
+
NextToken: NextToken | None
|
|
14167
|
+
|
|
14168
|
+
|
|
14169
|
+
class DescribeInstanceSqlHaStatesRequest(ServiceRequest):
|
|
14170
|
+
InstanceIds: InstanceIdStringList | None
|
|
14171
|
+
NextToken: NextToken | None
|
|
14172
|
+
MaxResults: DescribeInstanceSqlHaStatesRequestMaxResultsInteger | None
|
|
14173
|
+
Filters: FilterList | None
|
|
14174
|
+
DryRun: Boolean | None
|
|
14175
|
+
|
|
14176
|
+
|
|
14177
|
+
class DescribeInstanceSqlHaStatesResult(TypedDict, total=False):
|
|
14178
|
+
Instances: RegisteredInstanceList | None
|
|
14179
|
+
NextToken: NextToken | None
|
|
14180
|
+
|
|
14181
|
+
|
|
13726
14182
|
class DescribeInstanceStatusRequest(ServiceRequest):
|
|
13727
14183
|
InstanceIds: InstanceIdStringList | None
|
|
13728
14184
|
MaxResults: Integer | None
|
|
@@ -14417,18 +14873,34 @@ class DescribeIpamExternalResourceVerificationTokensResult(TypedDict, total=Fals
|
|
|
14417
14873
|
IpamExternalResourceVerificationTokens: IpamExternalResourceVerificationTokenSet | None
|
|
14418
14874
|
|
|
14419
14875
|
|
|
14420
|
-
class
|
|
14876
|
+
class DescribeIpamPoliciesRequest(ServiceRequest):
|
|
14421
14877
|
DryRun: Boolean | None
|
|
14422
14878
|
Filters: FilterList | None
|
|
14423
14879
|
MaxResults: IpamMaxResults | None
|
|
14424
14880
|
NextToken: NextToken | None
|
|
14425
|
-
|
|
14881
|
+
IpamPolicyIds: ValueStringList | None
|
|
14426
14882
|
|
|
14427
14883
|
|
|
14428
|
-
|
|
14884
|
+
IpamPolicySet = list[IpamPolicy]
|
|
14429
14885
|
|
|
14430
14886
|
|
|
14431
|
-
class
|
|
14887
|
+
class DescribeIpamPoliciesResult(TypedDict, total=False):
|
|
14888
|
+
NextToken: NextToken | None
|
|
14889
|
+
IpamPolicies: IpamPolicySet | None
|
|
14890
|
+
|
|
14891
|
+
|
|
14892
|
+
class DescribeIpamPoolsRequest(ServiceRequest):
|
|
14893
|
+
DryRun: Boolean | None
|
|
14894
|
+
Filters: FilterList | None
|
|
14895
|
+
MaxResults: IpamMaxResults | None
|
|
14896
|
+
NextToken: NextToken | None
|
|
14897
|
+
IpamPoolIds: ValueStringList | None
|
|
14898
|
+
|
|
14899
|
+
|
|
14900
|
+
IpamPoolSet = list[IpamPool]
|
|
14901
|
+
|
|
14902
|
+
|
|
14903
|
+
class DescribeIpamPoolsResult(TypedDict, total=False):
|
|
14432
14904
|
NextToken: NextToken | None
|
|
14433
14905
|
IpamPools: IpamPoolSet | None
|
|
14434
14906
|
|
|
@@ -16325,9 +16797,6 @@ class DescribeTrafficMirrorTargetsResult(TypedDict, total=False):
|
|
|
16325
16797
|
NextToken: String | None
|
|
16326
16798
|
|
|
16327
16799
|
|
|
16328
|
-
TransitGatewayAttachmentIdStringList = list[TransitGatewayAttachmentId]
|
|
16329
|
-
|
|
16330
|
-
|
|
16331
16800
|
class DescribeTransitGatewayAttachmentsRequest(ServiceRequest):
|
|
16332
16801
|
TransitGatewayAttachmentIds: TransitGatewayAttachmentIdStringList | None
|
|
16333
16802
|
Filters: FilterList | None
|
|
@@ -16397,6 +16866,25 @@ class DescribeTransitGatewayConnectsResult(TypedDict, total=False):
|
|
|
16397
16866
|
NextToken: String | None
|
|
16398
16867
|
|
|
16399
16868
|
|
|
16869
|
+
TransitGatewayMeteringPolicyIdStringList = list[TransitGatewayMeteringPolicyId]
|
|
16870
|
+
|
|
16871
|
+
|
|
16872
|
+
class DescribeTransitGatewayMeteringPoliciesRequest(ServiceRequest):
|
|
16873
|
+
TransitGatewayMeteringPolicyIds: TransitGatewayMeteringPolicyIdStringList | None
|
|
16874
|
+
Filters: FilterList | None
|
|
16875
|
+
MaxResults: TransitGatewayMaxResults | None
|
|
16876
|
+
NextToken: String | None
|
|
16877
|
+
DryRun: Boolean | None
|
|
16878
|
+
|
|
16879
|
+
|
|
16880
|
+
TransitGatewayMeteringPolicyList = list[TransitGatewayMeteringPolicy]
|
|
16881
|
+
|
|
16882
|
+
|
|
16883
|
+
class DescribeTransitGatewayMeteringPoliciesResult(TypedDict, total=False):
|
|
16884
|
+
TransitGatewayMeteringPolicies: TransitGatewayMeteringPolicyList | None
|
|
16885
|
+
NextToken: String | None
|
|
16886
|
+
|
|
16887
|
+
|
|
16400
16888
|
TransitGatewayMulticastDomainIdStringList = list[TransitGatewayMulticastDomainId]
|
|
16401
16889
|
|
|
16402
16890
|
|
|
@@ -16897,6 +17385,27 @@ class DescribeVpcClassicLinkResult(TypedDict, total=False):
|
|
|
16897
17385
|
Vpcs: VpcClassicLinkList | None
|
|
16898
17386
|
|
|
16899
17387
|
|
|
17388
|
+
VpcIdStringList = list[VpcId]
|
|
17389
|
+
VpcEncryptionControlIdList = list[VpcEncryptionControlId]
|
|
17390
|
+
|
|
17391
|
+
|
|
17392
|
+
class DescribeVpcEncryptionControlsRequest(ServiceRequest):
|
|
17393
|
+
DryRun: Boolean | None
|
|
17394
|
+
Filters: FilterList | None
|
|
17395
|
+
VpcEncryptionControlIds: VpcEncryptionControlIdList | None
|
|
17396
|
+
VpcIds: VpcIdStringList | None
|
|
17397
|
+
NextToken: String | None
|
|
17398
|
+
MaxResults: DescribeVpcEncryptionControlsMaxResults | None
|
|
17399
|
+
|
|
17400
|
+
|
|
17401
|
+
VpcEncryptionControlList = list[VpcEncryptionControl]
|
|
17402
|
+
|
|
17403
|
+
|
|
17404
|
+
class DescribeVpcEncryptionControlsResult(TypedDict, total=False):
|
|
17405
|
+
VpcEncryptionControls: VpcEncryptionControlList | None
|
|
17406
|
+
NextToken: String | None
|
|
17407
|
+
|
|
17408
|
+
|
|
16900
17409
|
class DescribeVpcEndpointAssociationsRequest(ServiceRequest):
|
|
16901
17410
|
DryRun: Boolean | None
|
|
16902
17411
|
VpcEndpointIds: VpcEndpointIdList | None
|
|
@@ -17080,9 +17589,6 @@ class DescribeVpcPeeringConnectionsResult(TypedDict, total=False):
|
|
|
17080
17589
|
NextToken: String | None
|
|
17081
17590
|
|
|
17082
17591
|
|
|
17083
|
-
VpcIdStringList = list[VpcId]
|
|
17084
|
-
|
|
17085
|
-
|
|
17086
17592
|
class DescribeVpcsRequest(ServiceRequest):
|
|
17087
17593
|
Filters: FilterList | None
|
|
17088
17594
|
VpcIds: VpcIdStringList | None
|
|
@@ -17099,6 +17605,25 @@ class DescribeVpcsResult(TypedDict, total=False):
|
|
|
17099
17605
|
Vpcs: VpcList | None
|
|
17100
17606
|
|
|
17101
17607
|
|
|
17608
|
+
VpnConcentratorIdStringList = list[VpnConcentratorId]
|
|
17609
|
+
|
|
17610
|
+
|
|
17611
|
+
class DescribeVpnConcentratorsRequest(ServiceRequest):
|
|
17612
|
+
VpnConcentratorIds: VpnConcentratorIdStringList | None
|
|
17613
|
+
Filters: FilterList | None
|
|
17614
|
+
MaxResults: GVCDMaxResults | None
|
|
17615
|
+
NextToken: NextToken | None
|
|
17616
|
+
DryRun: Boolean | None
|
|
17617
|
+
|
|
17618
|
+
|
|
17619
|
+
VpnConcentratorList = list[VpnConcentrator]
|
|
17620
|
+
|
|
17621
|
+
|
|
17622
|
+
class DescribeVpnConcentratorsResult(TypedDict, total=False):
|
|
17623
|
+
VpnConcentrators: VpnConcentratorList | None
|
|
17624
|
+
NextToken: NextToken | None
|
|
17625
|
+
|
|
17626
|
+
|
|
17102
17627
|
VpnConnectionIdStringList = list[VpnConnectionId]
|
|
17103
17628
|
|
|
17104
17629
|
|
|
@@ -17334,6 +17859,18 @@ class DisableImageResult(TypedDict, total=False):
|
|
|
17334
17859
|
Return: Boolean | None
|
|
17335
17860
|
|
|
17336
17861
|
|
|
17862
|
+
InstanceIdUpdateStringList = list[InstanceId]
|
|
17863
|
+
|
|
17864
|
+
|
|
17865
|
+
class DisableInstanceSqlHaStandbyDetectionsRequest(ServiceRequest):
|
|
17866
|
+
InstanceIds: InstanceIdUpdateStringList
|
|
17867
|
+
DryRun: Boolean | None
|
|
17868
|
+
|
|
17869
|
+
|
|
17870
|
+
class DisableInstanceSqlHaStandbyDetectionsResult(TypedDict, total=False):
|
|
17871
|
+
Instances: RegisteredInstanceList | None
|
|
17872
|
+
|
|
17873
|
+
|
|
17337
17874
|
class DisableIpamOrganizationAdminAccountRequest(ServiceRequest):
|
|
17338
17875
|
DryRun: Boolean | None
|
|
17339
17876
|
DelegatedAdminAccountId: String
|
|
@@ -17343,6 +17880,16 @@ class DisableIpamOrganizationAdminAccountResult(TypedDict, total=False):
|
|
|
17343
17880
|
Success: Boolean | None
|
|
17344
17881
|
|
|
17345
17882
|
|
|
17883
|
+
class DisableIpamPolicyRequest(ServiceRequest):
|
|
17884
|
+
DryRun: Boolean | None
|
|
17885
|
+
IpamPolicyId: IpamPolicyId
|
|
17886
|
+
OrganizationTargetId: String | None
|
|
17887
|
+
|
|
17888
|
+
|
|
17889
|
+
class DisableIpamPolicyResult(TypedDict, total=False):
|
|
17890
|
+
Return: Boolean | None
|
|
17891
|
+
|
|
17892
|
+
|
|
17346
17893
|
class DisableRouteServerPropagationRequest(ServiceRequest):
|
|
17347
17894
|
RouteServerId: RouteServerId
|
|
17348
17895
|
RouteTableId: RouteTableId
|
|
@@ -17810,6 +18357,16 @@ class EnableImageResult(TypedDict, total=False):
|
|
|
17810
18357
|
Return: Boolean | None
|
|
17811
18358
|
|
|
17812
18359
|
|
|
18360
|
+
class EnableInstanceSqlHaStandbyDetectionsRequest(ServiceRequest):
|
|
18361
|
+
InstanceIds: InstanceIdUpdateStringList
|
|
18362
|
+
SqlServerCredentials: SecretArn | None
|
|
18363
|
+
DryRun: Boolean | None
|
|
18364
|
+
|
|
18365
|
+
|
|
18366
|
+
class EnableInstanceSqlHaStandbyDetectionsResult(TypedDict, total=False):
|
|
18367
|
+
Instances: RegisteredInstanceList | None
|
|
18368
|
+
|
|
18369
|
+
|
|
17813
18370
|
class EnableIpamOrganizationAdminAccountRequest(ServiceRequest):
|
|
17814
18371
|
DryRun: Boolean | None
|
|
17815
18372
|
DelegatedAdminAccountId: String
|
|
@@ -17819,6 +18376,16 @@ class EnableIpamOrganizationAdminAccountResult(TypedDict, total=False):
|
|
|
17819
18376
|
Success: Boolean | None
|
|
17820
18377
|
|
|
17821
18378
|
|
|
18379
|
+
class EnableIpamPolicyRequest(ServiceRequest):
|
|
18380
|
+
DryRun: Boolean | None
|
|
18381
|
+
IpamPolicyId: IpamPolicyId
|
|
18382
|
+
OrganizationTargetId: String | None
|
|
18383
|
+
|
|
18384
|
+
|
|
18385
|
+
class EnableIpamPolicyResult(TypedDict, total=False):
|
|
18386
|
+
IpamPolicyId: IpamPolicyId | None
|
|
18387
|
+
|
|
18388
|
+
|
|
17822
18389
|
class EnableReachabilityAnalyzerOrganizationSharingRequest(ServiceRequest):
|
|
17823
18390
|
DryRun: Boolean | None
|
|
17824
18391
|
|
|
@@ -18175,6 +18742,9 @@ class GetCapacityReservationUsageResult(TypedDict, total=False):
|
|
|
18175
18742
|
AvailableInstanceCount: Integer | None
|
|
18176
18743
|
State: CapacityReservationState | None
|
|
18177
18744
|
InstanceUsages: InstanceUsageSet | None
|
|
18745
|
+
Interruptible: BoxedBoolean | None
|
|
18746
|
+
InterruptibleCapacityAllocation: InterruptibleCapacityAllocation | None
|
|
18747
|
+
InterruptionInfo: InterruptionInfo | None
|
|
18178
18748
|
|
|
18179
18749
|
|
|
18180
18750
|
class GetCoipPoolUsageRequest(ServiceRequest):
|
|
@@ -18263,6 +18833,16 @@ class GetEbsEncryptionByDefaultResult(TypedDict, total=False):
|
|
|
18263
18833
|
SseType: SSEType | None
|
|
18264
18834
|
|
|
18265
18835
|
|
|
18836
|
+
class GetEnabledIpamPolicyRequest(ServiceRequest):
|
|
18837
|
+
DryRun: Boolean | None
|
|
18838
|
+
|
|
18839
|
+
|
|
18840
|
+
class GetEnabledIpamPolicyResult(TypedDict, total=False):
|
|
18841
|
+
IpamPolicyEnabled: Boolean | None
|
|
18842
|
+
IpamPolicyId: IpamPolicyId | None
|
|
18843
|
+
ManagedBy: IpamPolicyManagedBy | None
|
|
18844
|
+
|
|
18845
|
+
|
|
18266
18846
|
class IntegrateServices(TypedDict, total=False):
|
|
18267
18847
|
AthenaIntegrations: AthenaIntegrationsSet | None
|
|
18268
18848
|
|
|
@@ -18572,6 +19152,58 @@ class GetIpamDiscoveredResourceCidrsResult(TypedDict, total=False):
|
|
|
18572
19152
|
NextToken: NextToken | None
|
|
18573
19153
|
|
|
18574
19154
|
|
|
19155
|
+
class GetIpamPolicyAllocationRulesRequest(ServiceRequest):
|
|
19156
|
+
DryRun: Boolean | None
|
|
19157
|
+
IpamPolicyId: IpamPolicyId
|
|
19158
|
+
Filters: FilterList | None
|
|
19159
|
+
Locale: String | None
|
|
19160
|
+
ResourceType: IpamPolicyResourceType | None
|
|
19161
|
+
MaxResults: IpamMaxResults | None
|
|
19162
|
+
NextToken: NextToken | None
|
|
19163
|
+
|
|
19164
|
+
|
|
19165
|
+
class IpamPolicyAllocationRule(TypedDict, total=False):
|
|
19166
|
+
SourceIpamPoolId: IpamPoolId | None
|
|
19167
|
+
|
|
19168
|
+
|
|
19169
|
+
IpamPolicyAllocationRuleList = list[IpamPolicyAllocationRule]
|
|
19170
|
+
|
|
19171
|
+
|
|
19172
|
+
class IpamPolicyDocument(TypedDict, total=False):
|
|
19173
|
+
IpamPolicyId: IpamPolicyId | None
|
|
19174
|
+
Locale: String | None
|
|
19175
|
+
ResourceType: IpamPolicyResourceType | None
|
|
19176
|
+
AllocationRules: IpamPolicyAllocationRuleList | None
|
|
19177
|
+
|
|
19178
|
+
|
|
19179
|
+
IpamPolicyDocumentSet = list[IpamPolicyDocument]
|
|
19180
|
+
|
|
19181
|
+
|
|
19182
|
+
class GetIpamPolicyAllocationRulesResult(TypedDict, total=False):
|
|
19183
|
+
IpamPolicyDocuments: IpamPolicyDocumentSet | None
|
|
19184
|
+
NextToken: NextToken | None
|
|
19185
|
+
|
|
19186
|
+
|
|
19187
|
+
class GetIpamPolicyOrganizationTargetsRequest(ServiceRequest):
|
|
19188
|
+
DryRun: Boolean | None
|
|
19189
|
+
MaxResults: IpamMaxResults | None
|
|
19190
|
+
NextToken: NextToken | None
|
|
19191
|
+
IpamPolicyId: IpamPolicyId
|
|
19192
|
+
Filters: FilterList | None
|
|
19193
|
+
|
|
19194
|
+
|
|
19195
|
+
class IpamPolicyOrganizationTarget(TypedDict, total=False):
|
|
19196
|
+
OrganizationTargetId: String | None
|
|
19197
|
+
|
|
19198
|
+
|
|
19199
|
+
IpamPolicyOrganizationTargetSet = list[IpamPolicyOrganizationTarget]
|
|
19200
|
+
|
|
19201
|
+
|
|
19202
|
+
class GetIpamPolicyOrganizationTargetsResult(TypedDict, total=False):
|
|
19203
|
+
OrganizationTargets: IpamPolicyOrganizationTargetSet | None
|
|
19204
|
+
NextToken: NextToken | None
|
|
19205
|
+
|
|
19206
|
+
|
|
18575
19207
|
class GetIpamPoolAllocationsRequest(ServiceRequest):
|
|
18576
19208
|
DryRun: Boolean | None
|
|
18577
19209
|
IpamPoolId: IpamPoolId
|
|
@@ -19034,6 +19666,22 @@ class GetTransitGatewayAttachmentPropagationsResult(TypedDict, total=False):
|
|
|
19034
19666
|
NextToken: String | None
|
|
19035
19667
|
|
|
19036
19668
|
|
|
19669
|
+
class GetTransitGatewayMeteringPolicyEntriesRequest(ServiceRequest):
|
|
19670
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId
|
|
19671
|
+
Filters: FilterList | None
|
|
19672
|
+
MaxResults: TransitGatewayMaxResults | None
|
|
19673
|
+
NextToken: String | None
|
|
19674
|
+
DryRun: Boolean | None
|
|
19675
|
+
|
|
19676
|
+
|
|
19677
|
+
TransitGatewayMeteringPolicyEntryList = list[TransitGatewayMeteringPolicyEntry]
|
|
19678
|
+
|
|
19679
|
+
|
|
19680
|
+
class GetTransitGatewayMeteringPolicyEntriesResult(TypedDict, total=False):
|
|
19681
|
+
TransitGatewayMeteringPolicyEntries: TransitGatewayMeteringPolicyEntryList | None
|
|
19682
|
+
NextToken: String | None
|
|
19683
|
+
|
|
19684
|
+
|
|
19037
19685
|
class GetTransitGatewayMulticastDomainAssociationsRequest(ServiceRequest):
|
|
19038
19686
|
TransitGatewayMulticastDomainId: TransitGatewayMulticastDomainId
|
|
19039
19687
|
Filters: FilterList | None
|
|
@@ -19213,6 +19861,28 @@ class GetVerifiedAccessGroupPolicyResult(TypedDict, total=False):
|
|
|
19213
19861
|
PolicyDocument: String | None
|
|
19214
19862
|
|
|
19215
19863
|
|
|
19864
|
+
class GetVpcResourcesBlockingEncryptionEnforcementRequest(ServiceRequest):
|
|
19865
|
+
VpcId: VpcId
|
|
19866
|
+
MaxResults: GetVpcResourcesBlockingEncryptionEnforcementMaxResults | None
|
|
19867
|
+
NextToken: String | None
|
|
19868
|
+
DryRun: Boolean | None
|
|
19869
|
+
|
|
19870
|
+
|
|
19871
|
+
class VpcEncryptionNonCompliantResource(TypedDict, total=False):
|
|
19872
|
+
Id: String | None
|
|
19873
|
+
Type: String | None
|
|
19874
|
+
Description: String | None
|
|
19875
|
+
IsExcludable: Boolean | None
|
|
19876
|
+
|
|
19877
|
+
|
|
19878
|
+
VpcEncryptionNonCompliantResourceList = list[VpcEncryptionNonCompliantResource]
|
|
19879
|
+
|
|
19880
|
+
|
|
19881
|
+
class GetVpcResourcesBlockingEncryptionEnforcementResult(TypedDict, total=False):
|
|
19882
|
+
NonCompliantResources: VpcEncryptionNonCompliantResourceList | None
|
|
19883
|
+
NextToken: String | None
|
|
19884
|
+
|
|
19885
|
+
|
|
19216
19886
|
class GetVpnConnectionDeviceSampleConfigurationRequest(ServiceRequest):
|
|
19217
19887
|
VpnConnectionId: VpnConnectionId
|
|
19218
19888
|
VpnConnectionDeviceTypeId: VpnConnectionDeviceTypeId
|
|
@@ -19570,6 +20240,13 @@ class IpamCidrAuthorizationContext(TypedDict, total=False):
|
|
|
19570
20240
|
Signature: String | None
|
|
19571
20241
|
|
|
19572
20242
|
|
|
20243
|
+
class IpamPolicyAllocationRuleRequest(TypedDict, total=False):
|
|
20244
|
+
SourceIpamPoolId: IpamPoolId | None
|
|
20245
|
+
|
|
20246
|
+
|
|
20247
|
+
IpamPolicyAllocationRuleListRequest = list[IpamPolicyAllocationRuleRequest]
|
|
20248
|
+
|
|
20249
|
+
|
|
19573
20250
|
class KeyPair(TypedDict, total=False):
|
|
19574
20251
|
KeyPairId: String | None
|
|
19575
20252
|
Tags: TagList | None
|
|
@@ -19631,6 +20308,39 @@ class ListSnapshotsInRecycleBinResult(TypedDict, total=False):
|
|
|
19631
20308
|
NextToken: String | None
|
|
19632
20309
|
|
|
19633
20310
|
|
|
20311
|
+
class ListVolumesInRecycleBinRequest(ServiceRequest):
|
|
20312
|
+
VolumeIds: VolumeIdStringList | None
|
|
20313
|
+
DryRun: Boolean | None
|
|
20314
|
+
MaxResults: Integer | None
|
|
20315
|
+
NextToken: String | None
|
|
20316
|
+
|
|
20317
|
+
|
|
20318
|
+
class VolumeRecycleBinInfo(TypedDict, total=False):
|
|
20319
|
+
VolumeId: VolumeId | None
|
|
20320
|
+
VolumeType: VolumeType | None
|
|
20321
|
+
State: VolumeState | None
|
|
20322
|
+
Size: Integer | None
|
|
20323
|
+
Iops: Integer | None
|
|
20324
|
+
Throughput: Integer | None
|
|
20325
|
+
OutpostArn: String | None
|
|
20326
|
+
AvailabilityZone: String | None
|
|
20327
|
+
AvailabilityZoneId: String | None
|
|
20328
|
+
SourceVolumeId: String | None
|
|
20329
|
+
SnapshotId: String | None
|
|
20330
|
+
Operator: OperatorResponse | None
|
|
20331
|
+
CreateTime: DateTime | None
|
|
20332
|
+
RecycleBinEnterTime: MillisecondDateTime | None
|
|
20333
|
+
RecycleBinExitTime: MillisecondDateTime | None
|
|
20334
|
+
|
|
20335
|
+
|
|
20336
|
+
VolumeRecycleBinInfoList = list[VolumeRecycleBinInfo]
|
|
20337
|
+
|
|
20338
|
+
|
|
20339
|
+
class ListVolumesInRecycleBinResult(TypedDict, total=False):
|
|
20340
|
+
Volumes: VolumeRecycleBinInfoList | None
|
|
20341
|
+
NextToken: String | None
|
|
20342
|
+
|
|
20343
|
+
|
|
19634
20344
|
class LoadPermissionRequest(TypedDict, total=False):
|
|
19635
20345
|
Group: PermissionGroup | None
|
|
19636
20346
|
UserId: String | None
|
|
@@ -20014,6 +20724,18 @@ class ModifyInstancePlacementResult(TypedDict, total=False):
|
|
|
20014
20724
|
Return: Boolean | None
|
|
20015
20725
|
|
|
20016
20726
|
|
|
20727
|
+
class ModifyIpamPolicyAllocationRulesRequest(ServiceRequest):
|
|
20728
|
+
DryRun: Boolean | None
|
|
20729
|
+
IpamPolicyId: IpamPolicyId
|
|
20730
|
+
Locale: String
|
|
20731
|
+
ResourceType: IpamPolicyResourceType
|
|
20732
|
+
AllocationRules: IpamPolicyAllocationRuleListRequest | None
|
|
20733
|
+
|
|
20734
|
+
|
|
20735
|
+
class ModifyIpamPolicyAllocationRulesResult(TypedDict, total=False):
|
|
20736
|
+
IpamPolicyDocument: IpamPolicyDocument | None
|
|
20737
|
+
|
|
20738
|
+
|
|
20017
20739
|
class ModifyIpamPoolRequest(ServiceRequest):
|
|
20018
20740
|
DryRun: Boolean | None
|
|
20019
20741
|
IpamPoolId: IpamPoolId
|
|
@@ -20370,6 +21092,17 @@ class ModifyTrafficMirrorSessionResult(TypedDict, total=False):
|
|
|
20370
21092
|
TrafficMirrorSession: TrafficMirrorSession | None
|
|
20371
21093
|
|
|
20372
21094
|
|
|
21095
|
+
class ModifyTransitGatewayMeteringPolicyRequest(ServiceRequest):
|
|
21096
|
+
TransitGatewayMeteringPolicyId: TransitGatewayMeteringPolicyId
|
|
21097
|
+
AddMiddleboxAttachmentIds: TransitGatewayAttachmentIdStringList | None
|
|
21098
|
+
RemoveMiddleboxAttachmentIds: TransitGatewayAttachmentIdStringList | None
|
|
21099
|
+
DryRun: Boolean | None
|
|
21100
|
+
|
|
21101
|
+
|
|
21102
|
+
class ModifyTransitGatewayMeteringPolicyResult(TypedDict, total=False):
|
|
21103
|
+
TransitGatewayMeteringPolicy: TransitGatewayMeteringPolicy | None
|
|
21104
|
+
|
|
21105
|
+
|
|
20373
21106
|
class ModifyTransitGatewayOptions(TypedDict, total=False):
|
|
20374
21107
|
AddTransitGatewayCidrBlocks: TransitGatewayCidrBlockStringList | None
|
|
20375
21108
|
RemoveTransitGatewayCidrBlocks: TransitGatewayCidrBlockStringList | None
|
|
@@ -20382,6 +21115,7 @@ class ModifyTransitGatewayOptions(TypedDict, total=False):
|
|
|
20382
21115
|
DefaultRouteTablePropagation: DefaultRouteTablePropagationValue | None
|
|
20383
21116
|
PropagationDefaultRouteTableId: TransitGatewayRouteTableId | None
|
|
20384
21117
|
AmazonSideAsn: Long | None
|
|
21118
|
+
EncryptionSupport: EncryptionSupportOptionValue | None
|
|
20385
21119
|
|
|
20386
21120
|
|
|
20387
21121
|
class ModifyTransitGatewayPrefixListReferenceRequest(ServiceRequest):
|
|
@@ -20652,6 +21386,24 @@ class ModifyVpcBlockPublicAccessOptionsResult(TypedDict, total=False):
|
|
|
20652
21386
|
VpcBlockPublicAccessOptions: VpcBlockPublicAccessOptions | None
|
|
20653
21387
|
|
|
20654
21388
|
|
|
21389
|
+
class ModifyVpcEncryptionControlRequest(ServiceRequest):
|
|
21390
|
+
DryRun: Boolean | None
|
|
21391
|
+
VpcEncryptionControlId: VpcEncryptionControlId
|
|
21392
|
+
Mode: VpcEncryptionControlMode | None
|
|
21393
|
+
InternetGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21394
|
+
EgressOnlyInternetGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21395
|
+
NatGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21396
|
+
VirtualPrivateGatewayExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21397
|
+
VpcPeeringExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21398
|
+
LambdaExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21399
|
+
VpcLatticeExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21400
|
+
ElasticFileSystemExclusion: VpcEncryptionControlExclusionStateInput | None
|
|
21401
|
+
|
|
21402
|
+
|
|
21403
|
+
class ModifyVpcEncryptionControlResult(TypedDict, total=False):
|
|
21404
|
+
VpcEncryptionControl: VpcEncryptionControl | None
|
|
21405
|
+
|
|
21406
|
+
|
|
20655
21407
|
class ModifyVpcEndpointConnectionNotificationRequest(ServiceRequest):
|
|
20656
21408
|
DryRun: Boolean | None
|
|
20657
21409
|
ConnectionNotificationId: ConnectionNotificationId
|
|
@@ -21458,6 +22210,15 @@ class RestoreSnapshotTierResult(TypedDict, total=False):
|
|
|
21458
22210
|
IsPermanentRestore: Boolean | None
|
|
21459
22211
|
|
|
21460
22212
|
|
|
22213
|
+
class RestoreVolumeFromRecycleBinRequest(ServiceRequest):
|
|
22214
|
+
VolumeId: VolumeId
|
|
22215
|
+
DryRun: Boolean | None
|
|
22216
|
+
|
|
22217
|
+
|
|
22218
|
+
class RestoreVolumeFromRecycleBinResult(TypedDict, total=False):
|
|
22219
|
+
Return: Boolean | None
|
|
22220
|
+
|
|
22221
|
+
|
|
21461
22222
|
class RevokeClientVpnIngressRequest(ServiceRequest):
|
|
21462
22223
|
ClientVpnEndpointId: ClientVpnEndpointId
|
|
21463
22224
|
TargetNetworkCidr: String
|
|
@@ -21893,6 +22654,21 @@ class UpdateCapacityManagerOrganizationsAccessResult(TypedDict, total=False):
|
|
|
21893
22654
|
OrganizationsAccess: Boolean | None
|
|
21894
22655
|
|
|
21895
22656
|
|
|
22657
|
+
class UpdateInterruptibleCapacityReservationAllocationRequest(ServiceRequest):
|
|
22658
|
+
CapacityReservationId: CapacityReservationId
|
|
22659
|
+
TargetInstanceCount: Integer
|
|
22660
|
+
DryRun: Boolean | None
|
|
22661
|
+
|
|
22662
|
+
|
|
22663
|
+
class UpdateInterruptibleCapacityReservationAllocationResult(TypedDict, total=False):
|
|
22664
|
+
InterruptibleCapacityReservationId: CapacityReservationId | None
|
|
22665
|
+
SourceCapacityReservationId: CapacityReservationId | None
|
|
22666
|
+
InstanceCount: Integer | None
|
|
22667
|
+
TargetInstanceCount: Integer | None
|
|
22668
|
+
Status: InterruptibleCapacityReservationAllocationStatus | None
|
|
22669
|
+
InterruptionType: InterruptionType | None
|
|
22670
|
+
|
|
22671
|
+
|
|
21896
22672
|
class UpdateSecurityGroupRuleDescriptionsEgressRequest(ServiceRequest):
|
|
21897
22673
|
DryRun: Boolean | None
|
|
21898
22674
|
GroupId: SecurityGroupId | None
|
|
@@ -22244,6 +23020,8 @@ class Ec2Api:
|
|
|
22244
23020
|
allocation_ids: AllocationIdList,
|
|
22245
23021
|
private_ip_addresses: IpList | None = None,
|
|
22246
23022
|
dry_run: Boolean | None = None,
|
|
23023
|
+
availability_zone: AvailabilityZoneName | None = None,
|
|
23024
|
+
availability_zone_id: AvailabilityZoneId | None = None,
|
|
22247
23025
|
**kwargs,
|
|
22248
23026
|
) -> AssociateNatGatewayAddressResult:
|
|
22249
23027
|
raise NotImplementedError
|
|
@@ -23015,6 +23793,19 @@ class Ec2Api:
|
|
|
23015
23793
|
) -> CreateInternetGatewayResult:
|
|
23016
23794
|
raise NotImplementedError
|
|
23017
23795
|
|
|
23796
|
+
@handler("CreateInterruptibleCapacityReservationAllocation")
|
|
23797
|
+
def create_interruptible_capacity_reservation_allocation(
|
|
23798
|
+
self,
|
|
23799
|
+
context: RequestContext,
|
|
23800
|
+
capacity_reservation_id: CapacityReservationId,
|
|
23801
|
+
instance_count: Integer,
|
|
23802
|
+
client_token: String | None = None,
|
|
23803
|
+
dry_run: Boolean | None = None,
|
|
23804
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
23805
|
+
**kwargs,
|
|
23806
|
+
) -> CreateInterruptibleCapacityReservationAllocationResult:
|
|
23807
|
+
raise NotImplementedError
|
|
23808
|
+
|
|
23018
23809
|
@handler("CreateIpam")
|
|
23019
23810
|
def create_ipam(
|
|
23020
23811
|
self,
|
|
@@ -23043,6 +23834,18 @@ class Ec2Api:
|
|
|
23043
23834
|
) -> CreateIpamExternalResourceVerificationTokenResult:
|
|
23044
23835
|
raise NotImplementedError
|
|
23045
23836
|
|
|
23837
|
+
@handler("CreateIpamPolicy")
|
|
23838
|
+
def create_ipam_policy(
|
|
23839
|
+
self,
|
|
23840
|
+
context: RequestContext,
|
|
23841
|
+
ipam_id: IpamId,
|
|
23842
|
+
dry_run: Boolean | None = None,
|
|
23843
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
23844
|
+
client_token: String | None = None,
|
|
23845
|
+
**kwargs,
|
|
23846
|
+
) -> CreateIpamPolicyResult:
|
|
23847
|
+
raise NotImplementedError
|
|
23848
|
+
|
|
23046
23849
|
@handler("CreateIpamPool")
|
|
23047
23850
|
def create_ipam_pool(
|
|
23048
23851
|
self,
|
|
@@ -23285,10 +24088,13 @@ class Ec2Api:
|
|
|
23285
24088
|
def create_nat_gateway(
|
|
23286
24089
|
self,
|
|
23287
24090
|
context: RequestContext,
|
|
23288
|
-
|
|
24091
|
+
availability_mode: AvailabilityMode | None = None,
|
|
23289
24092
|
allocation_id: AllocationId | None = None,
|
|
23290
24093
|
client_token: String | None = None,
|
|
23291
24094
|
dry_run: Boolean | None = None,
|
|
24095
|
+
subnet_id: SubnetId | None = None,
|
|
24096
|
+
vpc_id: VpcId | None = None,
|
|
24097
|
+
availability_zone_addresses: AvailabilityZoneAddresses | None = None,
|
|
23292
24098
|
tag_specifications: TagSpecificationList | None = None,
|
|
23293
24099
|
connectivity_type: ConnectivityType | None = None,
|
|
23294
24100
|
private_ip_address: String | None = None,
|
|
@@ -23761,6 +24567,40 @@ class Ec2Api:
|
|
|
23761
24567
|
) -> CreateTransitGatewayConnectPeerResult:
|
|
23762
24568
|
raise NotImplementedError
|
|
23763
24569
|
|
|
24570
|
+
@handler("CreateTransitGatewayMeteringPolicy")
|
|
24571
|
+
def create_transit_gateway_metering_policy(
|
|
24572
|
+
self,
|
|
24573
|
+
context: RequestContext,
|
|
24574
|
+
transit_gateway_id: TransitGatewayId,
|
|
24575
|
+
middlebox_attachment_ids: TransitGatewayAttachmentIdStringList | None = None,
|
|
24576
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
24577
|
+
dry_run: Boolean | None = None,
|
|
24578
|
+
**kwargs,
|
|
24579
|
+
) -> CreateTransitGatewayMeteringPolicyResult:
|
|
24580
|
+
raise NotImplementedError
|
|
24581
|
+
|
|
24582
|
+
@handler("CreateTransitGatewayMeteringPolicyEntry")
|
|
24583
|
+
def create_transit_gateway_metering_policy_entry(
|
|
24584
|
+
self,
|
|
24585
|
+
context: RequestContext,
|
|
24586
|
+
transit_gateway_metering_policy_id: TransitGatewayMeteringPolicyId,
|
|
24587
|
+
policy_rule_number: Integer,
|
|
24588
|
+
metered_account: TransitGatewayMeteringPayerType,
|
|
24589
|
+
source_transit_gateway_attachment_id: TransitGatewayAttachmentId | None = None,
|
|
24590
|
+
source_transit_gateway_attachment_type: TransitGatewayAttachmentResourceType | None = None,
|
|
24591
|
+
source_cidr_block: String | None = None,
|
|
24592
|
+
source_port_range: String | None = None,
|
|
24593
|
+
destination_transit_gateway_attachment_id: TransitGatewayAttachmentId | None = None,
|
|
24594
|
+
destination_transit_gateway_attachment_type: TransitGatewayAttachmentResourceType
|
|
24595
|
+
| None = None,
|
|
24596
|
+
destination_cidr_block: String | None = None,
|
|
24597
|
+
destination_port_range: String | None = None,
|
|
24598
|
+
protocol: String | None = None,
|
|
24599
|
+
dry_run: Boolean | None = None,
|
|
24600
|
+
**kwargs,
|
|
24601
|
+
) -> CreateTransitGatewayMeteringPolicyEntryResult:
|
|
24602
|
+
raise NotImplementedError
|
|
24603
|
+
|
|
23764
24604
|
@handler("CreateTransitGatewayMulticastDomain")
|
|
23765
24605
|
def create_transit_gateway_multicast_domain(
|
|
23766
24606
|
self,
|
|
@@ -23973,6 +24813,7 @@ class Ec2Api:
|
|
|
23973
24813
|
ipv6_ipam_pool_id: IpamPoolId | None = None,
|
|
23974
24814
|
ipv6_netmask_length: NetmaskLength | None = None,
|
|
23975
24815
|
ipv6_cidr_block_network_border_group: String | None = None,
|
|
24816
|
+
vpc_encryption_control: VpcEncryptionControlConfiguration | None = None,
|
|
23976
24817
|
tag_specifications: TagSpecificationList | None = None,
|
|
23977
24818
|
dry_run: Boolean | None = None,
|
|
23978
24819
|
instance_tenancy: Tenancy | None = None,
|
|
@@ -23994,6 +24835,17 @@ class Ec2Api:
|
|
|
23994
24835
|
) -> CreateVpcBlockPublicAccessExclusionResult:
|
|
23995
24836
|
raise NotImplementedError
|
|
23996
24837
|
|
|
24838
|
+
@handler("CreateVpcEncryptionControl")
|
|
24839
|
+
def create_vpc_encryption_control(
|
|
24840
|
+
self,
|
|
24841
|
+
context: RequestContext,
|
|
24842
|
+
vpc_id: VpcId,
|
|
24843
|
+
dry_run: Boolean | None = None,
|
|
24844
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
24845
|
+
**kwargs,
|
|
24846
|
+
) -> CreateVpcEncryptionControlResult:
|
|
24847
|
+
raise NotImplementedError
|
|
24848
|
+
|
|
23997
24849
|
@handler("CreateVpcEndpoint")
|
|
23998
24850
|
def create_vpc_endpoint(
|
|
23999
24851
|
self,
|
|
@@ -24064,6 +24916,12 @@ class Ec2Api:
|
|
|
24064
24916
|
) -> CreateVpcPeeringConnectionResult:
|
|
24065
24917
|
raise NotImplementedError
|
|
24066
24918
|
|
|
24919
|
+
@handler("CreateVpnConcentrator", expand=False)
|
|
24920
|
+
def create_vpn_concentrator(
|
|
24921
|
+
self, context: RequestContext, request: CreateVpnConcentratorRequest, **kwargs
|
|
24922
|
+
) -> CreateVpnConcentratorResult:
|
|
24923
|
+
raise NotImplementedError
|
|
24924
|
+
|
|
24067
24925
|
@handler("CreateVpnConnection", expand=False)
|
|
24068
24926
|
def create_vpn_connection(
|
|
24069
24927
|
self, context: RequestContext, request: CreateVpnConnectionRequest, **kwargs
|
|
@@ -24272,6 +25130,16 @@ class Ec2Api:
|
|
|
24272
25130
|
) -> DeleteIpamExternalResourceVerificationTokenResult:
|
|
24273
25131
|
raise NotImplementedError
|
|
24274
25132
|
|
|
25133
|
+
@handler("DeleteIpamPolicy")
|
|
25134
|
+
def delete_ipam_policy(
|
|
25135
|
+
self,
|
|
25136
|
+
context: RequestContext,
|
|
25137
|
+
ipam_policy_id: IpamPolicyId,
|
|
25138
|
+
dry_run: Boolean | None = None,
|
|
25139
|
+
**kwargs,
|
|
25140
|
+
) -> DeleteIpamPolicyResult:
|
|
25141
|
+
raise NotImplementedError
|
|
25142
|
+
|
|
24275
25143
|
@handler("DeleteIpamPool")
|
|
24276
25144
|
def delete_ipam_pool(
|
|
24277
25145
|
self,
|
|
@@ -24730,6 +25598,27 @@ class Ec2Api:
|
|
|
24730
25598
|
) -> DeleteTransitGatewayConnectPeerResult:
|
|
24731
25599
|
raise NotImplementedError
|
|
24732
25600
|
|
|
25601
|
+
@handler("DeleteTransitGatewayMeteringPolicy")
|
|
25602
|
+
def delete_transit_gateway_metering_policy(
|
|
25603
|
+
self,
|
|
25604
|
+
context: RequestContext,
|
|
25605
|
+
transit_gateway_metering_policy_id: TransitGatewayMeteringPolicyId,
|
|
25606
|
+
dry_run: Boolean | None = None,
|
|
25607
|
+
**kwargs,
|
|
25608
|
+
) -> DeleteTransitGatewayMeteringPolicyResult:
|
|
25609
|
+
raise NotImplementedError
|
|
25610
|
+
|
|
25611
|
+
@handler("DeleteTransitGatewayMeteringPolicyEntry")
|
|
25612
|
+
def delete_transit_gateway_metering_policy_entry(
|
|
25613
|
+
self,
|
|
25614
|
+
context: RequestContext,
|
|
25615
|
+
transit_gateway_metering_policy_id: TransitGatewayMeteringPolicyId,
|
|
25616
|
+
policy_rule_number: Integer,
|
|
25617
|
+
dry_run: Boolean | None = None,
|
|
25618
|
+
**kwargs,
|
|
25619
|
+
) -> DeleteTransitGatewayMeteringPolicyEntryResult:
|
|
25620
|
+
raise NotImplementedError
|
|
25621
|
+
|
|
24733
25622
|
@handler("DeleteTransitGatewayMulticastDomain")
|
|
24734
25623
|
def delete_transit_gateway_multicast_domain(
|
|
24735
25624
|
self,
|
|
@@ -24878,6 +25767,16 @@ class Ec2Api:
|
|
|
24878
25767
|
) -> DeleteVpcBlockPublicAccessExclusionResult:
|
|
24879
25768
|
raise NotImplementedError
|
|
24880
25769
|
|
|
25770
|
+
@handler("DeleteVpcEncryptionControl")
|
|
25771
|
+
def delete_vpc_encryption_control(
|
|
25772
|
+
self,
|
|
25773
|
+
context: RequestContext,
|
|
25774
|
+
vpc_encryption_control_id: VpcEncryptionControlId,
|
|
25775
|
+
dry_run: Boolean | None = None,
|
|
25776
|
+
**kwargs,
|
|
25777
|
+
) -> DeleteVpcEncryptionControlResult:
|
|
25778
|
+
raise NotImplementedError
|
|
25779
|
+
|
|
24881
25780
|
@handler("DeleteVpcEndpointConnectionNotifications")
|
|
24882
25781
|
def delete_vpc_endpoint_connection_notifications(
|
|
24883
25782
|
self,
|
|
@@ -24918,6 +25817,16 @@ class Ec2Api:
|
|
|
24918
25817
|
) -> DeleteVpcPeeringConnectionResult:
|
|
24919
25818
|
raise NotImplementedError
|
|
24920
25819
|
|
|
25820
|
+
@handler("DeleteVpnConcentrator")
|
|
25821
|
+
def delete_vpn_concentrator(
|
|
25822
|
+
self,
|
|
25823
|
+
context: RequestContext,
|
|
25824
|
+
vpn_concentrator_id: VpnConcentratorId,
|
|
25825
|
+
dry_run: Boolean | None = None,
|
|
25826
|
+
**kwargs,
|
|
25827
|
+
) -> DeleteVpnConcentratorResult:
|
|
25828
|
+
raise NotImplementedError
|
|
25829
|
+
|
|
24921
25830
|
@handler("DeleteVpnConnection")
|
|
24922
25831
|
def delete_vpn_connection(
|
|
24923
25832
|
self,
|
|
@@ -25802,6 +26711,34 @@ class Ec2Api:
|
|
|
25802
26711
|
) -> DescribeInstanceImageMetadataResult:
|
|
25803
26712
|
raise NotImplementedError
|
|
25804
26713
|
|
|
26714
|
+
@handler("DescribeInstanceSqlHaHistoryStates")
|
|
26715
|
+
def describe_instance_sql_ha_history_states(
|
|
26716
|
+
self,
|
|
26717
|
+
context: RequestContext,
|
|
26718
|
+
instance_ids: InstanceIdStringList | None = None,
|
|
26719
|
+
start_time: MillisecondDateTime | None = None,
|
|
26720
|
+
end_time: MillisecondDateTime | 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
|
+
) -> DescribeInstanceSqlHaHistoryStatesResult:
|
|
26727
|
+
raise NotImplementedError
|
|
26728
|
+
|
|
26729
|
+
@handler("DescribeInstanceSqlHaStates")
|
|
26730
|
+
def describe_instance_sql_ha_states(
|
|
26731
|
+
self,
|
|
26732
|
+
context: RequestContext,
|
|
26733
|
+
instance_ids: InstanceIdStringList | None = None,
|
|
26734
|
+
next_token: NextToken | None = None,
|
|
26735
|
+
max_results: DescribeInstanceSqlHaStatesRequestMaxResultsInteger | None = None,
|
|
26736
|
+
filters: FilterList | None = None,
|
|
26737
|
+
dry_run: Boolean | None = None,
|
|
26738
|
+
**kwargs,
|
|
26739
|
+
) -> DescribeInstanceSqlHaStatesResult:
|
|
26740
|
+
raise NotImplementedError
|
|
26741
|
+
|
|
25805
26742
|
@handler("DescribeInstanceStatus")
|
|
25806
26743
|
def describe_instance_status(
|
|
25807
26744
|
self,
|
|
@@ -25906,6 +26843,19 @@ class Ec2Api:
|
|
|
25906
26843
|
) -> DescribeIpamExternalResourceVerificationTokensResult:
|
|
25907
26844
|
raise NotImplementedError
|
|
25908
26845
|
|
|
26846
|
+
@handler("DescribeIpamPolicies")
|
|
26847
|
+
def describe_ipam_policies(
|
|
26848
|
+
self,
|
|
26849
|
+
context: RequestContext,
|
|
26850
|
+
dry_run: Boolean | None = None,
|
|
26851
|
+
filters: FilterList | None = None,
|
|
26852
|
+
max_results: IpamMaxResults | None = None,
|
|
26853
|
+
next_token: NextToken | None = None,
|
|
26854
|
+
ipam_policy_ids: ValueStringList | None = None,
|
|
26855
|
+
**kwargs,
|
|
26856
|
+
) -> DescribeIpamPoliciesResult:
|
|
26857
|
+
raise NotImplementedError
|
|
26858
|
+
|
|
25909
26859
|
@handler("DescribeIpamPools")
|
|
25910
26860
|
def describe_ipam_pools(
|
|
25911
26861
|
self,
|
|
@@ -26864,6 +27814,19 @@ class Ec2Api:
|
|
|
26864
27814
|
) -> DescribeTransitGatewayConnectsResult:
|
|
26865
27815
|
raise NotImplementedError
|
|
26866
27816
|
|
|
27817
|
+
@handler("DescribeTransitGatewayMeteringPolicies")
|
|
27818
|
+
def describe_transit_gateway_metering_policies(
|
|
27819
|
+
self,
|
|
27820
|
+
context: RequestContext,
|
|
27821
|
+
transit_gateway_metering_policy_ids: TransitGatewayMeteringPolicyIdStringList | None = None,
|
|
27822
|
+
filters: FilterList | None = None,
|
|
27823
|
+
max_results: TransitGatewayMaxResults | None = None,
|
|
27824
|
+
next_token: String | None = None,
|
|
27825
|
+
dry_run: Boolean | None = None,
|
|
27826
|
+
**kwargs,
|
|
27827
|
+
) -> DescribeTransitGatewayMeteringPoliciesResult:
|
|
27828
|
+
raise NotImplementedError
|
|
27829
|
+
|
|
26867
27830
|
@handler("DescribeTransitGatewayMulticastDomains")
|
|
26868
27831
|
def describe_transit_gateway_multicast_domains(
|
|
26869
27832
|
self,
|
|
@@ -27140,6 +28103,20 @@ class Ec2Api:
|
|
|
27140
28103
|
) -> DescribeVpcClassicLinkDnsSupportResult:
|
|
27141
28104
|
raise NotImplementedError
|
|
27142
28105
|
|
|
28106
|
+
@handler("DescribeVpcEncryptionControls")
|
|
28107
|
+
def describe_vpc_encryption_controls(
|
|
28108
|
+
self,
|
|
28109
|
+
context: RequestContext,
|
|
28110
|
+
dry_run: Boolean | None = None,
|
|
28111
|
+
filters: FilterList | None = None,
|
|
28112
|
+
vpc_encryption_control_ids: VpcEncryptionControlIdList | None = None,
|
|
28113
|
+
vpc_ids: VpcIdStringList | None = None,
|
|
28114
|
+
next_token: String | None = None,
|
|
28115
|
+
max_results: DescribeVpcEncryptionControlsMaxResults | None = None,
|
|
28116
|
+
**kwargs,
|
|
28117
|
+
) -> DescribeVpcEncryptionControlsResult:
|
|
28118
|
+
raise NotImplementedError
|
|
28119
|
+
|
|
27143
28120
|
@handler("DescribeVpcEndpointAssociations")
|
|
27144
28121
|
def describe_vpc_endpoint_associations(
|
|
27145
28122
|
self,
|
|
@@ -27257,6 +28234,19 @@ class Ec2Api:
|
|
|
27257
28234
|
) -> DescribeVpcsResult:
|
|
27258
28235
|
raise NotImplementedError
|
|
27259
28236
|
|
|
28237
|
+
@handler("DescribeVpnConcentrators")
|
|
28238
|
+
def describe_vpn_concentrators(
|
|
28239
|
+
self,
|
|
28240
|
+
context: RequestContext,
|
|
28241
|
+
vpn_concentrator_ids: VpnConcentratorIdStringList | None = None,
|
|
28242
|
+
filters: FilterList | None = None,
|
|
28243
|
+
max_results: GVCDMaxResults | None = None,
|
|
28244
|
+
next_token: NextToken | None = None,
|
|
28245
|
+
dry_run: Boolean | None = None,
|
|
28246
|
+
**kwargs,
|
|
28247
|
+
) -> DescribeVpnConcentratorsResult:
|
|
28248
|
+
raise NotImplementedError
|
|
28249
|
+
|
|
27260
28250
|
@handler("DescribeVpnConnections")
|
|
27261
28251
|
def describe_vpn_connections(
|
|
27262
28252
|
self,
|
|
@@ -27440,6 +28430,16 @@ class Ec2Api:
|
|
|
27440
28430
|
) -> DisableImageDeregistrationProtectionResult:
|
|
27441
28431
|
raise NotImplementedError
|
|
27442
28432
|
|
|
28433
|
+
@handler("DisableInstanceSqlHaStandbyDetections")
|
|
28434
|
+
def disable_instance_sql_ha_standby_detections(
|
|
28435
|
+
self,
|
|
28436
|
+
context: RequestContext,
|
|
28437
|
+
instance_ids: InstanceIdUpdateStringList,
|
|
28438
|
+
dry_run: Boolean | None = None,
|
|
28439
|
+
**kwargs,
|
|
28440
|
+
) -> DisableInstanceSqlHaStandbyDetectionsResult:
|
|
28441
|
+
raise NotImplementedError
|
|
28442
|
+
|
|
27443
28443
|
@handler("DisableIpamOrganizationAdminAccount")
|
|
27444
28444
|
def disable_ipam_organization_admin_account(
|
|
27445
28445
|
self,
|
|
@@ -27450,6 +28450,17 @@ class Ec2Api:
|
|
|
27450
28450
|
) -> DisableIpamOrganizationAdminAccountResult:
|
|
27451
28451
|
raise NotImplementedError
|
|
27452
28452
|
|
|
28453
|
+
@handler("DisableIpamPolicy")
|
|
28454
|
+
def disable_ipam_policy(
|
|
28455
|
+
self,
|
|
28456
|
+
context: RequestContext,
|
|
28457
|
+
ipam_policy_id: IpamPolicyId,
|
|
28458
|
+
dry_run: Boolean | None = None,
|
|
28459
|
+
organization_target_id: String | None = None,
|
|
28460
|
+
**kwargs,
|
|
28461
|
+
) -> DisableIpamPolicyResult:
|
|
28462
|
+
raise NotImplementedError
|
|
28463
|
+
|
|
27453
28464
|
@handler("DisableRouteServerPropagation")
|
|
27454
28465
|
def disable_route_server_propagation(
|
|
27455
28466
|
self,
|
|
@@ -27807,6 +28818,17 @@ class Ec2Api:
|
|
|
27807
28818
|
) -> EnableImageDeregistrationProtectionResult:
|
|
27808
28819
|
raise NotImplementedError
|
|
27809
28820
|
|
|
28821
|
+
@handler("EnableInstanceSqlHaStandbyDetections")
|
|
28822
|
+
def enable_instance_sql_ha_standby_detections(
|
|
28823
|
+
self,
|
|
28824
|
+
context: RequestContext,
|
|
28825
|
+
instance_ids: InstanceIdUpdateStringList,
|
|
28826
|
+
sql_server_credentials: SecretArn | None = None,
|
|
28827
|
+
dry_run: Boolean | None = None,
|
|
28828
|
+
**kwargs,
|
|
28829
|
+
) -> EnableInstanceSqlHaStandbyDetectionsResult:
|
|
28830
|
+
raise NotImplementedError
|
|
28831
|
+
|
|
27810
28832
|
@handler("EnableIpamOrganizationAdminAccount")
|
|
27811
28833
|
def enable_ipam_organization_admin_account(
|
|
27812
28834
|
self,
|
|
@@ -27817,6 +28839,17 @@ class Ec2Api:
|
|
|
27817
28839
|
) -> EnableIpamOrganizationAdminAccountResult:
|
|
27818
28840
|
raise NotImplementedError
|
|
27819
28841
|
|
|
28842
|
+
@handler("EnableIpamPolicy")
|
|
28843
|
+
def enable_ipam_policy(
|
|
28844
|
+
self,
|
|
28845
|
+
context: RequestContext,
|
|
28846
|
+
ipam_policy_id: IpamPolicyId,
|
|
28847
|
+
dry_run: Boolean | None = None,
|
|
28848
|
+
organization_target_id: String | None = None,
|
|
28849
|
+
**kwargs,
|
|
28850
|
+
) -> EnableIpamPolicyResult:
|
|
28851
|
+
raise NotImplementedError
|
|
28852
|
+
|
|
27820
28853
|
@handler("EnableReachabilityAnalyzerOrganizationSharing")
|
|
27821
28854
|
def enable_reachability_analyzer_organization_sharing(
|
|
27822
28855
|
self, context: RequestContext, dry_run: Boolean | None = None, **kwargs
|
|
@@ -28121,6 +29154,12 @@ class Ec2Api:
|
|
|
28121
29154
|
) -> GetEbsEncryptionByDefaultResult:
|
|
28122
29155
|
raise NotImplementedError
|
|
28123
29156
|
|
|
29157
|
+
@handler("GetEnabledIpamPolicy")
|
|
29158
|
+
def get_enabled_ipam_policy(
|
|
29159
|
+
self, context: RequestContext, dry_run: Boolean | None = None, **kwargs
|
|
29160
|
+
) -> GetEnabledIpamPolicyResult:
|
|
29161
|
+
raise NotImplementedError
|
|
29162
|
+
|
|
28124
29163
|
@handler("GetFlowLogsIntegrationTemplate")
|
|
28125
29164
|
def get_flow_logs_integration_template(
|
|
28126
29165
|
self,
|
|
@@ -28262,6 +29301,34 @@ class Ec2Api:
|
|
|
28262
29301
|
) -> GetIpamDiscoveredResourceCidrsResult:
|
|
28263
29302
|
raise NotImplementedError
|
|
28264
29303
|
|
|
29304
|
+
@handler("GetIpamPolicyAllocationRules")
|
|
29305
|
+
def get_ipam_policy_allocation_rules(
|
|
29306
|
+
self,
|
|
29307
|
+
context: RequestContext,
|
|
29308
|
+
ipam_policy_id: IpamPolicyId,
|
|
29309
|
+
dry_run: Boolean | None = None,
|
|
29310
|
+
filters: FilterList | None = None,
|
|
29311
|
+
locale: String | None = None,
|
|
29312
|
+
resource_type: IpamPolicyResourceType | None = None,
|
|
29313
|
+
max_results: IpamMaxResults | None = None,
|
|
29314
|
+
next_token: NextToken | None = None,
|
|
29315
|
+
**kwargs,
|
|
29316
|
+
) -> GetIpamPolicyAllocationRulesResult:
|
|
29317
|
+
raise NotImplementedError
|
|
29318
|
+
|
|
29319
|
+
@handler("GetIpamPolicyOrganizationTargets")
|
|
29320
|
+
def get_ipam_policy_organization_targets(
|
|
29321
|
+
self,
|
|
29322
|
+
context: RequestContext,
|
|
29323
|
+
ipam_policy_id: IpamPolicyId,
|
|
29324
|
+
dry_run: Boolean | None = None,
|
|
29325
|
+
max_results: IpamMaxResults | None = None,
|
|
29326
|
+
next_token: NextToken | None = None,
|
|
29327
|
+
filters: FilterList | None = None,
|
|
29328
|
+
**kwargs,
|
|
29329
|
+
) -> GetIpamPolicyOrganizationTargetsResult:
|
|
29330
|
+
raise NotImplementedError
|
|
29331
|
+
|
|
28265
29332
|
@handler("GetIpamPoolAllocations")
|
|
28266
29333
|
def get_ipam_pool_allocations(
|
|
28267
29334
|
self,
|
|
@@ -28527,6 +29594,19 @@ class Ec2Api:
|
|
|
28527
29594
|
) -> GetTransitGatewayAttachmentPropagationsResult:
|
|
28528
29595
|
raise NotImplementedError
|
|
28529
29596
|
|
|
29597
|
+
@handler("GetTransitGatewayMeteringPolicyEntries")
|
|
29598
|
+
def get_transit_gateway_metering_policy_entries(
|
|
29599
|
+
self,
|
|
29600
|
+
context: RequestContext,
|
|
29601
|
+
transit_gateway_metering_policy_id: TransitGatewayMeteringPolicyId,
|
|
29602
|
+
filters: FilterList | None = None,
|
|
29603
|
+
max_results: TransitGatewayMaxResults | None = None,
|
|
29604
|
+
next_token: String | None = None,
|
|
29605
|
+
dry_run: Boolean | None = None,
|
|
29606
|
+
**kwargs,
|
|
29607
|
+
) -> GetTransitGatewayMeteringPolicyEntriesResult:
|
|
29608
|
+
raise NotImplementedError
|
|
29609
|
+
|
|
28530
29610
|
@handler("GetTransitGatewayMulticastDomainAssociations")
|
|
28531
29611
|
def get_transit_gateway_multicast_domain_associations(
|
|
28532
29612
|
self,
|
|
@@ -28637,6 +29717,18 @@ class Ec2Api:
|
|
|
28637
29717
|
) -> GetVerifiedAccessGroupPolicyResult:
|
|
28638
29718
|
raise NotImplementedError
|
|
28639
29719
|
|
|
29720
|
+
@handler("GetVpcResourcesBlockingEncryptionEnforcement")
|
|
29721
|
+
def get_vpc_resources_blocking_encryption_enforcement(
|
|
29722
|
+
self,
|
|
29723
|
+
context: RequestContext,
|
|
29724
|
+
vpc_id: VpcId,
|
|
29725
|
+
max_results: GetVpcResourcesBlockingEncryptionEnforcementMaxResults | None = None,
|
|
29726
|
+
next_token: String | None = None,
|
|
29727
|
+
dry_run: Boolean | None = None,
|
|
29728
|
+
**kwargs,
|
|
29729
|
+
) -> GetVpcResourcesBlockingEncryptionEnforcementResult:
|
|
29730
|
+
raise NotImplementedError
|
|
29731
|
+
|
|
28640
29732
|
@handler("GetVpnConnectionDeviceSampleConfiguration")
|
|
28641
29733
|
def get_vpn_connection_device_sample_configuration(
|
|
28642
29734
|
self,
|
|
@@ -28787,6 +29879,18 @@ class Ec2Api:
|
|
|
28787
29879
|
) -> ListSnapshotsInRecycleBinResult:
|
|
28788
29880
|
raise NotImplementedError
|
|
28789
29881
|
|
|
29882
|
+
@handler("ListVolumesInRecycleBin")
|
|
29883
|
+
def list_volumes_in_recycle_bin(
|
|
29884
|
+
self,
|
|
29885
|
+
context: RequestContext,
|
|
29886
|
+
volume_ids: VolumeIdStringList | None = None,
|
|
29887
|
+
dry_run: Boolean | None = None,
|
|
29888
|
+
max_results: Integer | None = None,
|
|
29889
|
+
next_token: String | None = None,
|
|
29890
|
+
**kwargs,
|
|
29891
|
+
) -> ListVolumesInRecycleBinResult:
|
|
29892
|
+
raise NotImplementedError
|
|
29893
|
+
|
|
28790
29894
|
@handler("LockSnapshot")
|
|
28791
29895
|
def lock_snapshot(
|
|
28792
29896
|
self,
|
|
@@ -29153,6 +30257,19 @@ class Ec2Api:
|
|
|
29153
30257
|
) -> ModifyIpamResult:
|
|
29154
30258
|
raise NotImplementedError
|
|
29155
30259
|
|
|
30260
|
+
@handler("ModifyIpamPolicyAllocationRules")
|
|
30261
|
+
def modify_ipam_policy_allocation_rules(
|
|
30262
|
+
self,
|
|
30263
|
+
context: RequestContext,
|
|
30264
|
+
ipam_policy_id: IpamPolicyId,
|
|
30265
|
+
locale: String,
|
|
30266
|
+
resource_type: IpamPolicyResourceType,
|
|
30267
|
+
dry_run: Boolean | None = None,
|
|
30268
|
+
allocation_rules: IpamPolicyAllocationRuleListRequest | None = None,
|
|
30269
|
+
**kwargs,
|
|
30270
|
+
) -> ModifyIpamPolicyAllocationRulesResult:
|
|
30271
|
+
raise NotImplementedError
|
|
30272
|
+
|
|
29156
30273
|
@handler("ModifyIpamPool")
|
|
29157
30274
|
def modify_ipam_pool(
|
|
29158
30275
|
self,
|
|
@@ -29473,6 +30590,18 @@ class Ec2Api:
|
|
|
29473
30590
|
) -> ModifyTransitGatewayResult:
|
|
29474
30591
|
raise NotImplementedError
|
|
29475
30592
|
|
|
30593
|
+
@handler("ModifyTransitGatewayMeteringPolicy")
|
|
30594
|
+
def modify_transit_gateway_metering_policy(
|
|
30595
|
+
self,
|
|
30596
|
+
context: RequestContext,
|
|
30597
|
+
transit_gateway_metering_policy_id: TransitGatewayMeteringPolicyId,
|
|
30598
|
+
add_middlebox_attachment_ids: TransitGatewayAttachmentIdStringList | None = None,
|
|
30599
|
+
remove_middlebox_attachment_ids: TransitGatewayAttachmentIdStringList | None = None,
|
|
30600
|
+
dry_run: Boolean | None = None,
|
|
30601
|
+
**kwargs,
|
|
30602
|
+
) -> ModifyTransitGatewayMeteringPolicyResult:
|
|
30603
|
+
raise NotImplementedError
|
|
30604
|
+
|
|
29476
30605
|
@handler("ModifyTransitGatewayPrefixListReference")
|
|
29477
30606
|
def modify_transit_gateway_prefix_list_reference(
|
|
29478
30607
|
self,
|
|
@@ -29658,6 +30787,26 @@ class Ec2Api:
|
|
|
29658
30787
|
) -> ModifyVpcBlockPublicAccessOptionsResult:
|
|
29659
30788
|
raise NotImplementedError
|
|
29660
30789
|
|
|
30790
|
+
@handler("ModifyVpcEncryptionControl")
|
|
30791
|
+
def modify_vpc_encryption_control(
|
|
30792
|
+
self,
|
|
30793
|
+
context: RequestContext,
|
|
30794
|
+
vpc_encryption_control_id: VpcEncryptionControlId,
|
|
30795
|
+
dry_run: Boolean | None = None,
|
|
30796
|
+
mode: VpcEncryptionControlMode | None = None,
|
|
30797
|
+
internet_gateway_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30798
|
+
egress_only_internet_gateway_exclusion: VpcEncryptionControlExclusionStateInput
|
|
30799
|
+
| None = None,
|
|
30800
|
+
nat_gateway_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30801
|
+
virtual_private_gateway_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30802
|
+
vpc_peering_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30803
|
+
lambda_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30804
|
+
vpc_lattice_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30805
|
+
elastic_file_system_exclusion: VpcEncryptionControlExclusionStateInput | None = None,
|
|
30806
|
+
**kwargs,
|
|
30807
|
+
) -> ModifyVpcEncryptionControlResult:
|
|
30808
|
+
raise NotImplementedError
|
|
30809
|
+
|
|
29661
30810
|
@handler("ModifyVpcEndpoint")
|
|
29662
30811
|
def modify_vpc_endpoint(
|
|
29663
30812
|
self,
|
|
@@ -30394,6 +31543,12 @@ class Ec2Api:
|
|
|
30394
31543
|
) -> RestoreSnapshotTierResult:
|
|
30395
31544
|
raise NotImplementedError
|
|
30396
31545
|
|
|
31546
|
+
@handler("RestoreVolumeFromRecycleBin")
|
|
31547
|
+
def restore_volume_from_recycle_bin(
|
|
31548
|
+
self, context: RequestContext, volume_id: VolumeId, dry_run: Boolean | None = None, **kwargs
|
|
31549
|
+
) -> RestoreVolumeFromRecycleBinResult:
|
|
31550
|
+
raise NotImplementedError
|
|
31551
|
+
|
|
30397
31552
|
@handler("RevokeClientVpnIngress")
|
|
30398
31553
|
def revoke_client_vpn_ingress(
|
|
30399
31554
|
self,
|
|
@@ -30719,6 +31874,17 @@ class Ec2Api:
|
|
|
30719
31874
|
) -> UpdateCapacityManagerOrganizationsAccessResult:
|
|
30720
31875
|
raise NotImplementedError
|
|
30721
31876
|
|
|
31877
|
+
@handler("UpdateInterruptibleCapacityReservationAllocation")
|
|
31878
|
+
def update_interruptible_capacity_reservation_allocation(
|
|
31879
|
+
self,
|
|
31880
|
+
context: RequestContext,
|
|
31881
|
+
capacity_reservation_id: CapacityReservationId,
|
|
31882
|
+
target_instance_count: Integer,
|
|
31883
|
+
dry_run: Boolean | None = None,
|
|
31884
|
+
**kwargs,
|
|
31885
|
+
) -> UpdateInterruptibleCapacityReservationAllocationResult:
|
|
31886
|
+
raise NotImplementedError
|
|
31887
|
+
|
|
30722
31888
|
@handler("UpdateSecurityGroupRuleDescriptionsEgress")
|
|
30723
31889
|
def update_security_group_rule_descriptions_egress(
|
|
30724
31890
|
self,
|