localstack-core 4.7.1.dev49__py3-none-any.whl → 4.10.1.dev12__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/cloudformation/__init__.py +18 -4
- localstack/aws/api/cloudwatch/__init__.py +41 -1
- localstack/aws/api/config/__init__.py +4 -0
- localstack/aws/api/core.py +6 -2
- localstack/aws/api/dynamodb/__init__.py +30 -0
- localstack/aws/api/ec2/__init__.py +1522 -65
- localstack/aws/api/iam/__init__.py +7 -0
- localstack/aws/api/kinesis/__init__.py +19 -0
- localstack/aws/api/kms/__init__.py +6 -0
- localstack/aws/api/lambda_/__init__.py +13 -0
- localstack/aws/api/logs/__init__.py +15 -0
- localstack/aws/api/redshift/__init__.py +9 -3
- localstack/aws/api/route53/__init__.py +5 -0
- localstack/aws/api/s3/__init__.py +12 -0
- localstack/aws/api/s3control/__init__.py +54 -0
- localstack/aws/api/ssm/__init__.py +2 -0
- localstack/aws/api/transcribe/__init__.py +17 -0
- localstack/aws/client.py +7 -2
- localstack/aws/forwarder.py +52 -5
- localstack/aws/handlers/analytics.py +1 -1
- localstack/aws/handlers/internal_requests.py +6 -1
- localstack/aws/handlers/logging.py +12 -2
- localstack/aws/handlers/metric_handler.py +41 -1
- localstack/aws/handlers/service.py +40 -20
- localstack/aws/mocking.py +2 -2
- localstack/aws/patches.py +2 -2
- localstack/aws/protocol/parser.py +459 -32
- localstack/aws/protocol/serializer.py +689 -69
- localstack/aws/protocol/service_router.py +120 -20
- localstack/aws/protocol/validate.py +1 -1
- localstack/aws/scaffold.py +1 -1
- localstack/aws/skeleton.py +4 -2
- localstack/aws/spec-patches.json +58 -0
- localstack/aws/spec.py +37 -16
- localstack/cli/exceptions.py +1 -1
- localstack/cli/localstack.py +6 -6
- localstack/cli/lpm.py +3 -4
- localstack/cli/plugins.py +1 -1
- localstack/cli/profiles.py +1 -2
- localstack/config.py +25 -18
- localstack/constants.py +4 -29
- localstack/dev/kubernetes/__main__.py +130 -7
- localstack/dev/run/configurators.py +1 -4
- localstack/dev/run/paths.py +1 -1
- localstack/dns/plugins.py +5 -1
- localstack/dns/server.py +13 -4
- localstack/logging/format.py +3 -3
- localstack/packages/api.py +9 -8
- localstack/packages/core.py +2 -2
- localstack/packages/plugins.py +0 -8
- localstack/runtime/analytics.py +3 -0
- localstack/runtime/hooks.py +1 -1
- localstack/runtime/init.py +2 -2
- localstack/runtime/main.py +5 -5
- localstack/runtime/patches.py +2 -2
- localstack/services/apigateway/helpers.py +1 -4
- localstack/services/apigateway/legacy/helpers.py +7 -8
- localstack/services/apigateway/legacy/integration.py +4 -3
- localstack/services/apigateway/legacy/invocations.py +6 -5
- localstack/services/apigateway/legacy/provider.py +148 -68
- localstack/services/apigateway/legacy/templates.py +1 -1
- localstack/services/apigateway/next_gen/execute_api/handlers/method_request.py +7 -2
- localstack/services/apigateway/next_gen/execute_api/handlers/resource_router.py +1 -2
- localstack/services/apigateway/next_gen/execute_api/integrations/aws.py +3 -0
- localstack/services/apigateway/next_gen/execute_api/integrations/http.py +3 -3
- localstack/services/apigateway/next_gen/execute_api/template_mapping.py +2 -2
- localstack/services/apigateway/next_gen/execute_api/test_invoke.py +114 -9
- localstack/services/apigateway/next_gen/provider.py +5 -0
- localstack/services/apigateway/resource_providers/aws_apigateway_resource.py +1 -1
- localstack/services/cloudformation/api_utils.py +4 -8
- localstack/services/cloudformation/cfn_utils.py +1 -1
- localstack/services/cloudformation/engine/entities.py +14 -4
- localstack/services/cloudformation/engine/template_deployer.py +6 -4
- localstack/services/cloudformation/engine/transformers.py +6 -4
- localstack/services/cloudformation/engine/v2/change_set_model.py +201 -13
- localstack/services/cloudformation/engine/v2/change_set_model_describer.py +52 -3
- localstack/services/cloudformation/engine/v2/change_set_model_executor.py +117 -76
- localstack/services/cloudformation/engine/v2/change_set_model_preproc.py +205 -52
- localstack/services/cloudformation/engine/v2/change_set_model_transform.py +350 -116
- localstack/services/cloudformation/engine/v2/change_set_model_validator.py +56 -14
- localstack/services/cloudformation/engine/v2/change_set_model_visitor.py +1 -0
- localstack/services/cloudformation/engine/v2/resolving.py +7 -5
- localstack/services/cloudformation/engine/yaml_parser.py +9 -2
- localstack/services/cloudformation/provider.py +7 -5
- localstack/services/cloudformation/resource_provider.py +7 -1
- localstack/services/cloudformation/resources.py +24149 -0
- localstack/services/cloudformation/service_models.py +2 -2
- localstack/services/cloudformation/v2/entities.py +19 -9
- localstack/services/cloudformation/v2/provider.py +336 -106
- localstack/services/cloudformation/v2/types.py +13 -7
- localstack/services/cloudformation/v2/utils.py +4 -1
- localstack/services/cloudwatch/alarm_scheduler.py +4 -1
- localstack/services/cloudwatch/provider.py +18 -13
- localstack/services/cloudwatch/provider_v2.py +25 -28
- localstack/services/dynamodb/packages.py +2 -1
- localstack/services/dynamodb/provider.py +42 -0
- localstack/services/dynamodb/server.py +2 -2
- localstack/services/dynamodb/v2/provider.py +42 -0
- localstack/services/ecr/resource_providers/aws_ecr_repository.py +5 -2
- localstack/services/edge.py +1 -1
- localstack/services/es/provider.py +2 -2
- localstack/services/events/event_rule_engine.py +31 -13
- localstack/services/events/models.py +4 -5
- localstack/services/events/provider.py +17 -14
- localstack/services/events/target.py +17 -9
- localstack/services/events/v1/provider.py +5 -5
- localstack/services/firehose/provider.py +14 -4
- localstack/services/iam/provider.py +11 -116
- localstack/services/iam/resources/policy_simulator.py +133 -0
- localstack/services/kinesis/models.py +15 -2
- localstack/services/kinesis/provider.py +86 -3
- localstack/services/kms/provider.py +14 -5
- localstack/services/lambda_/api_utils.py +6 -3
- localstack/services/lambda_/invocation/docker_runtime_executor.py +1 -1
- localstack/services/lambda_/invocation/event_manager.py +1 -1
- localstack/services/lambda_/invocation/internal_sqs_queue.py +5 -9
- localstack/services/lambda_/invocation/lambda_models.py +10 -7
- localstack/services/lambda_/invocation/lambda_service.py +5 -1
- localstack/services/lambda_/packages.py +1 -1
- localstack/services/lambda_/provider.py +4 -3
- localstack/services/lambda_/provider_utils.py +1 -1
- localstack/services/logs/provider.py +36 -19
- localstack/services/moto.py +2 -1
- localstack/services/opensearch/cluster.py +15 -7
- localstack/services/opensearch/packages.py +26 -7
- localstack/services/opensearch/provider.py +8 -2
- localstack/services/opensearch/versions.py +56 -7
- localstack/services/plugins.py +11 -7
- localstack/services/providers.py +10 -2
- localstack/services/redshift/provider.py +0 -21
- localstack/services/s3/constants.py +5 -2
- localstack/services/s3/cors.py +4 -4
- localstack/services/s3/models.py +1 -1
- localstack/services/s3/notifications.py +55 -39
- localstack/services/s3/presigned_url.py +35 -54
- localstack/services/s3/provider.py +73 -15
- localstack/services/s3/utils.py +42 -22
- localstack/services/s3/validation.py +46 -32
- localstack/services/s3/website_hosting.py +4 -2
- localstack/services/ses/provider.py +18 -8
- localstack/services/sns/constants.py +7 -1
- localstack/services/sns/executor.py +9 -2
- localstack/services/sns/provider.py +8 -5
- localstack/services/sns/publisher.py +31 -16
- localstack/services/sns/v2/models.py +167 -0
- localstack/services/sns/v2/provider.py +867 -0
- localstack/services/sns/v2/utils.py +130 -0
- localstack/services/sqs/constants.py +1 -1
- localstack/services/sqs/developer_api.py +205 -0
- localstack/services/sqs/models.py +48 -5
- localstack/services/sqs/provider.py +38 -311
- localstack/services/sqs/query_api.py +6 -2
- localstack/services/sqs/utils.py +121 -2
- localstack/services/ssm/provider.py +1 -1
- localstack/services/stepfunctions/asl/component/intrinsic/member.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_choice/comparison/comparison.py +5 -11
- localstack/services/stepfunctions/asl/component/state/state_choice/state_choice.py +2 -2
- localstack/services/stepfunctions/asl/component/state/state_execution/state_map/state_map.py +2 -2
- localstack/services/stepfunctions/asl/component/state/state_execution/state_parallel/state_parallel.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/state_task.py +2 -2
- localstack/services/stepfunctions/asl/component/state/state_fail/state_fail.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_pass/state_pass.py +2 -2
- localstack/services/stepfunctions/asl/component/state/state_succeed/state_succeed.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_wait/state_wait.py +1 -1
- localstack/services/stepfunctions/asl/eval/environment.py +1 -1
- localstack/services/stepfunctions/asl/jsonata/jsonata.py +1 -1
- localstack/services/stepfunctions/backend/execution.py +2 -1
- localstack/services/stores.py +1 -1
- localstack/services/transcribe/provider.py +6 -1
- localstack/state/codecs.py +61 -0
- localstack/state/core.py +11 -5
- localstack/state/pickle.py +10 -49
- localstack/testing/aws/cloudformation_utils.py +1 -1
- localstack/testing/pytest/cloudformation/fixtures.py +3 -3
- localstack/testing/pytest/cloudformation/transformers.py +0 -0
- localstack/testing/pytest/container.py +4 -5
- localstack/testing/pytest/fixtures.py +33 -31
- localstack/testing/pytest/in_memory_localstack.py +0 -4
- localstack/testing/pytest/marking.py +38 -11
- localstack/testing/pytest/stepfunctions/utils.py +4 -3
- localstack/testing/pytest/util.py +1 -1
- localstack/testing/pytest/validation_tracking.py +1 -2
- localstack/testing/snapshots/transformer_utility.py +6 -1
- localstack/utils/analytics/events.py +2 -2
- localstack/utils/analytics/metadata.py +6 -4
- localstack/utils/analytics/metrics/counter.py +8 -15
- localstack/utils/analytics/publisher.py +1 -2
- localstack/utils/analytics/service_providers.py +19 -0
- localstack/utils/analytics/service_request_aggregator.py +2 -2
- localstack/utils/archives.py +11 -11
- localstack/utils/asyncio.py +2 -2
- localstack/utils/aws/arns.py +24 -29
- localstack/utils/aws/aws_responses.py +8 -8
- localstack/utils/aws/aws_stack.py +2 -3
- localstack/utils/aws/dead_letter_queue.py +1 -5
- localstack/utils/aws/message_forwarding.py +1 -2
- localstack/utils/aws/request_context.py +4 -5
- localstack/utils/aws/resources.py +1 -1
- localstack/utils/aws/templating.py +1 -1
- localstack/utils/batch_policy.py +3 -3
- localstack/utils/bootstrap.py +21 -13
- localstack/utils/catalog/catalog.py +139 -0
- localstack/utils/catalog/catalog_loader.py +119 -0
- localstack/utils/catalog/common.py +58 -0
- localstack/utils/catalog/plugins.py +28 -0
- localstack/utils/cloudwatch/cloudwatch_util.py +5 -5
- localstack/utils/collections.py +7 -8
- localstack/utils/config_listener.py +1 -1
- localstack/utils/container_networking.py +2 -3
- localstack/utils/container_utils/container_client.py +135 -136
- localstack/utils/container_utils/docker_cmd_client.py +85 -69
- localstack/utils/container_utils/docker_sdk_client.py +69 -66
- localstack/utils/crypto.py +10 -10
- localstack/utils/diagnose.py +3 -4
- localstack/utils/docker_utils.py +9 -5
- localstack/utils/files.py +33 -13
- localstack/utils/functions.py +4 -3
- localstack/utils/http.py +11 -11
- localstack/utils/json.py +20 -6
- localstack/utils/kinesis/kinesis_connector.py +2 -1
- localstack/utils/net.py +15 -9
- localstack/utils/no_exit_argument_parser.py +2 -2
- localstack/utils/numbers.py +9 -2
- localstack/utils/objects.py +7 -6
- localstack/utils/patch.py +10 -3
- localstack/utils/run.py +12 -11
- localstack/utils/scheduler.py +11 -11
- localstack/utils/server/tcp_proxy.py +2 -2
- localstack/utils/serving.py +3 -4
- localstack/utils/strings.py +15 -16
- localstack/utils/sync.py +126 -1
- localstack/utils/tagging.py +8 -6
- localstack/utils/testutil.py +8 -8
- localstack/utils/threads.py +2 -2
- localstack/utils/time.py +12 -4
- localstack/utils/urls.py +1 -3
- localstack/utils/xray/traceid.py +1 -1
- localstack/version.py +16 -3
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.10.1.dev12.dist-info}/METADATA +18 -14
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.10.1.dev12.dist-info}/RECORD +248 -239
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.10.1.dev12.dist-info}/entry_points.txt +8 -4
- localstack_core-4.10.1.dev12.dist-info/plux.json +1 -0
- localstack/packages/terraform.py +0 -46
- localstack/services/cloudformation/deploy.html +0 -144
- localstack/services/cloudformation/deploy_ui.py +0 -47
- localstack/services/cloudformation/plugins.py +0 -12
- localstack_core-4.7.1.dev49.dist-info/plux.json +0 -1
- {localstack_core-4.7.1.dev49.data → localstack_core-4.10.1.dev12.data}/scripts/localstack +0 -0
- {localstack_core-4.7.1.dev49.data → localstack_core-4.10.1.dev12.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.7.1.dev49.data → localstack_core-4.10.1.dev12.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.10.1.dev12.dist-info}/WHEEL +0 -0
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.10.1.dev12.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.10.1.dev12.dist-info}/top_level.txt +0 -0
|
@@ -2,14 +2,8 @@ from datetime import datetime
|
|
|
2
2
|
from enum import StrEnum
|
|
3
3
|
from typing import List, Optional, TypedDict
|
|
4
4
|
|
|
5
|
-
from localstack.aws.api import
|
|
6
|
-
|
|
7
|
-
ServiceRequest,
|
|
8
|
-
handler,
|
|
9
|
-
)
|
|
10
|
-
from localstack.aws.api import (
|
|
11
|
-
ServiceException as ServiceException,
|
|
12
|
-
)
|
|
5
|
+
from localstack.aws.api import RequestContext, ServiceRequest, handler
|
|
6
|
+
from localstack.aws.api import ServiceException as ServiceException
|
|
13
7
|
|
|
14
8
|
AccountID = str
|
|
15
9
|
AddressMaxResults = int
|
|
@@ -25,6 +19,7 @@ BaselineBandwidthInMbps = int
|
|
|
25
19
|
BaselineIops = int
|
|
26
20
|
BaselineThroughputInMBps = float
|
|
27
21
|
Boolean = bool
|
|
22
|
+
BoxedBoolean = bool
|
|
28
23
|
BoxedDouble = float
|
|
29
24
|
BoxedInteger = int
|
|
30
25
|
BundleId = str
|
|
@@ -32,6 +27,7 @@ BurstablePerformanceFlag = bool
|
|
|
32
27
|
CancelCapacityReservationFleetErrorCode = str
|
|
33
28
|
CancelCapacityReservationFleetErrorMessage = str
|
|
34
29
|
CapacityBlockId = str
|
|
30
|
+
CapacityManagerDataExportId = str
|
|
35
31
|
CapacityReservationFleetId = str
|
|
36
32
|
CapacityReservationId = str
|
|
37
33
|
CarrierGatewayId = str
|
|
@@ -70,8 +66,10 @@ DescribeCapacityBlockExtensionOfferingsMaxResults = int
|
|
|
70
66
|
DescribeCapacityBlockOfferingsMaxResults = int
|
|
71
67
|
DescribeCapacityBlockStatusMaxResults = int
|
|
72
68
|
DescribeCapacityBlocksMaxResults = int
|
|
69
|
+
DescribeCapacityManagerDataExportsRequestMaxResults = int
|
|
73
70
|
DescribeCapacityReservationBillingRequestsRequestMaxResults = int
|
|
74
71
|
DescribeCapacityReservationFleetsMaxResults = int
|
|
72
|
+
DescribeCapacityReservationTopologyMaxResults = int
|
|
75
73
|
DescribeCapacityReservationsMaxResults = int
|
|
76
74
|
DescribeClassicLinkInstancesMaxResults = int
|
|
77
75
|
DescribeClientVpnAuthorizationRulesMaxResults = int
|
|
@@ -89,6 +87,9 @@ DescribeFpgaImagesMaxResults = int
|
|
|
89
87
|
DescribeFutureCapacityMaxResults = int
|
|
90
88
|
DescribeHostReservationsMaxResults = int
|
|
91
89
|
DescribeIamInstanceProfileAssociationsMaxResults = int
|
|
90
|
+
DescribeImageReferencesMaxResults = int
|
|
91
|
+
DescribeImageUsageReportEntriesMaxResults = int
|
|
92
|
+
DescribeImageUsageReportsMaxResults = int
|
|
92
93
|
DescribeInstanceCreditSpecificationsMaxResults = int
|
|
93
94
|
DescribeInstanceImageMetadataMaxResults = int
|
|
94
95
|
DescribeInstanceTopologyMaxResults = int
|
|
@@ -174,8 +175,15 @@ HostReservationId = str
|
|
|
174
175
|
Hour = int
|
|
175
176
|
IamInstanceProfileAssociationId = str
|
|
176
177
|
ImageId = str
|
|
178
|
+
ImageName = str
|
|
179
|
+
ImageNameRequest = str
|
|
177
180
|
ImageProvider = str
|
|
178
181
|
ImageProviderRequest = str
|
|
182
|
+
ImageUsageReportId = str
|
|
183
|
+
ImageUsageReportState = str
|
|
184
|
+
ImageUsageReportStateReason = str
|
|
185
|
+
ImageUsageResourceTypeName = str
|
|
186
|
+
ImageUsageResourceTypeOptionValue = str
|
|
179
187
|
ImportImageTaskId = str
|
|
180
188
|
ImportManifestUrl = str
|
|
181
189
|
ImportSnapshotTaskId = str
|
|
@@ -205,6 +213,8 @@ IpamNetmaskLength = int
|
|
|
205
213
|
IpamPoolAllocationId = str
|
|
206
214
|
IpamPoolCidrId = str
|
|
207
215
|
IpamPoolId = str
|
|
216
|
+
IpamPrefixListResolverId = str
|
|
217
|
+
IpamPrefixListResolverTargetId = str
|
|
208
218
|
IpamResourceDiscoveryAssociationId = str
|
|
209
219
|
IpamResourceDiscoveryId = str
|
|
210
220
|
IpamScopeId = str
|
|
@@ -235,12 +245,17 @@ LocalGatewayVirtualInterfaceGroupId = str
|
|
|
235
245
|
LocalGatewayVirtualInterfaceId = str
|
|
236
246
|
Location = str
|
|
237
247
|
MacModificationTaskId = str
|
|
248
|
+
MarketplaceProductCode = str
|
|
249
|
+
MarketplaceProductCodeRequest = str
|
|
238
250
|
MaxIpv4AddrPerInterface = int
|
|
239
251
|
MaxIpv6AddrPerInterface = int
|
|
240
252
|
MaxNetworkInterfaces = int
|
|
241
253
|
MaxResults = int
|
|
242
254
|
MaxResultsParam = int
|
|
243
255
|
MaximumBandwidthInMbps = int
|
|
256
|
+
MaximumDaysSinceCreatedValue = int
|
|
257
|
+
MaximumDaysSinceDeprecatedValue = int
|
|
258
|
+
MaximumEbsAttachments = int
|
|
244
259
|
MaximumEfaInterfaces = int
|
|
245
260
|
MaximumEnaQueueCount = int
|
|
246
261
|
MaximumEnaQueueCountPerInterface = int
|
|
@@ -280,6 +295,7 @@ OutpostLagId = str
|
|
|
280
295
|
OutpostLagMaxResults = int
|
|
281
296
|
PasswordData = str
|
|
282
297
|
PeakBandwidthInGbps = float
|
|
298
|
+
Period = int
|
|
283
299
|
PlacementGroupArn = str
|
|
284
300
|
PlacementGroupId = str
|
|
285
301
|
PlacementGroupName = str
|
|
@@ -304,6 +320,7 @@ ReservedInstancesModificationId = str
|
|
|
304
320
|
ReservedInstancesOfferingId = str
|
|
305
321
|
ResourceArn = str
|
|
306
322
|
ResourceConfigurationArn = str
|
|
323
|
+
ResourceTypeOptionValue = str
|
|
307
324
|
RestoreSnapshotTierRequestTemporaryRestoreDays = int
|
|
308
325
|
ResultRange = int
|
|
309
326
|
RetentionPeriodRequestDays = int
|
|
@@ -549,6 +566,11 @@ class AssociationStatusCode(StrEnum):
|
|
|
549
566
|
disassociated = "disassociated"
|
|
550
567
|
|
|
551
568
|
|
|
569
|
+
class AttachmentLimitType(StrEnum):
|
|
570
|
+
shared = "shared"
|
|
571
|
+
dedicated = "dedicated"
|
|
572
|
+
|
|
573
|
+
|
|
552
574
|
class AttachmentStatus(StrEnum):
|
|
553
575
|
attaching = "attaching"
|
|
554
576
|
attached = "attached"
|
|
@@ -699,6 +721,18 @@ class CapacityBlockResourceState(StrEnum):
|
|
|
699
721
|
payment_failed = "payment-failed"
|
|
700
722
|
|
|
701
723
|
|
|
724
|
+
class CapacityManagerDataExportStatus(StrEnum):
|
|
725
|
+
pending = "pending"
|
|
726
|
+
in_progress = "in-progress"
|
|
727
|
+
delivered = "delivered"
|
|
728
|
+
failed = "failed"
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
class CapacityManagerStatus(StrEnum):
|
|
732
|
+
enabled = "enabled"
|
|
733
|
+
disabled = "disabled"
|
|
734
|
+
|
|
735
|
+
|
|
702
736
|
class CapacityReservationBillingRequestStatus(StrEnum):
|
|
703
737
|
pending = "pending"
|
|
704
738
|
accepted = "accepted"
|
|
@@ -777,6 +811,11 @@ class CapacityReservationType(StrEnum):
|
|
|
777
811
|
capacity_block = "capacity-block"
|
|
778
812
|
|
|
779
813
|
|
|
814
|
+
class CapacityTenancy(StrEnum):
|
|
815
|
+
default = "default"
|
|
816
|
+
dedicated = "dedicated"
|
|
817
|
+
|
|
818
|
+
|
|
780
819
|
class CarrierGatewayState(StrEnum):
|
|
781
820
|
pending = "pending"
|
|
782
821
|
available = "available"
|
|
@@ -828,6 +867,11 @@ class ClientVpnRouteStatusCode(StrEnum):
|
|
|
828
867
|
deleting = "deleting"
|
|
829
868
|
|
|
830
869
|
|
|
870
|
+
class Comparison(StrEnum):
|
|
871
|
+
equals = "equals"
|
|
872
|
+
in_ = "in"
|
|
873
|
+
|
|
874
|
+
|
|
831
875
|
class ConnectionNotificationState(StrEnum):
|
|
832
876
|
Enabled = "Enabled"
|
|
833
877
|
Disabled = "Disabled"
|
|
@@ -993,6 +1037,9 @@ class Ec2InstanceConnectEndpointState(StrEnum):
|
|
|
993
1037
|
delete_in_progress = "delete-in-progress"
|
|
994
1038
|
delete_complete = "delete-complete"
|
|
995
1039
|
delete_failed = "delete-failed"
|
|
1040
|
+
update_in_progress = "update-in-progress"
|
|
1041
|
+
update_complete = "update-complete"
|
|
1042
|
+
update_failed = "update-failed"
|
|
996
1043
|
|
|
997
1044
|
|
|
998
1045
|
class EkPubKeyFormat(StrEnum):
|
|
@@ -1025,6 +1072,12 @@ class EndDateType(StrEnum):
|
|
|
1025
1072
|
limited = "limited"
|
|
1026
1073
|
|
|
1027
1074
|
|
|
1075
|
+
class EndpointIpAddressType(StrEnum):
|
|
1076
|
+
ipv4 = "ipv4"
|
|
1077
|
+
ipv6 = "ipv6"
|
|
1078
|
+
dual_stack = "dual-stack"
|
|
1079
|
+
|
|
1080
|
+
|
|
1028
1081
|
class EphemeralNvmeSupport(StrEnum):
|
|
1029
1082
|
unsupported = "unsupported"
|
|
1030
1083
|
supported = "supported"
|
|
@@ -1085,6 +1138,26 @@ class FastSnapshotRestoreStateCode(StrEnum):
|
|
|
1085
1138
|
disabled = "disabled"
|
|
1086
1139
|
|
|
1087
1140
|
|
|
1141
|
+
class FilterByDimension(StrEnum):
|
|
1142
|
+
resource_region = "resource-region"
|
|
1143
|
+
availability_zone_id = "availability-zone-id"
|
|
1144
|
+
account_id = "account-id"
|
|
1145
|
+
instance_family = "instance-family"
|
|
1146
|
+
instance_type = "instance-type"
|
|
1147
|
+
instance_platform = "instance-platform"
|
|
1148
|
+
reservation_arn = "reservation-arn"
|
|
1149
|
+
reservation_id = "reservation-id"
|
|
1150
|
+
reservation_type = "reservation-type"
|
|
1151
|
+
reservation_create_timestamp = "reservation-create-timestamp"
|
|
1152
|
+
reservation_start_timestamp = "reservation-start-timestamp"
|
|
1153
|
+
reservation_end_timestamp = "reservation-end-timestamp"
|
|
1154
|
+
reservation_end_date_type = "reservation-end-date-type"
|
|
1155
|
+
tenancy = "tenancy"
|
|
1156
|
+
reservation_state = "reservation-state"
|
|
1157
|
+
reservation_instance_match_criteria = "reservation-instance-match-criteria"
|
|
1158
|
+
reservation_unused_financial_owner = "reservation-unused-financial-owner"
|
|
1159
|
+
|
|
1160
|
+
|
|
1088
1161
|
class FindingsFound(StrEnum):
|
|
1089
1162
|
true = "true"
|
|
1090
1163
|
false = "false"
|
|
@@ -1185,6 +1258,26 @@ class GatewayType(StrEnum):
|
|
|
1185
1258
|
ipsec_1 = "ipsec.1"
|
|
1186
1259
|
|
|
1187
1260
|
|
|
1261
|
+
class GroupBy(StrEnum):
|
|
1262
|
+
resource_region = "resource-region"
|
|
1263
|
+
availability_zone_id = "availability-zone-id"
|
|
1264
|
+
account_id = "account-id"
|
|
1265
|
+
instance_family = "instance-family"
|
|
1266
|
+
instance_type = "instance-type"
|
|
1267
|
+
instance_platform = "instance-platform"
|
|
1268
|
+
reservation_arn = "reservation-arn"
|
|
1269
|
+
reservation_id = "reservation-id"
|
|
1270
|
+
reservation_type = "reservation-type"
|
|
1271
|
+
reservation_create_timestamp = "reservation-create-timestamp"
|
|
1272
|
+
reservation_start_timestamp = "reservation-start-timestamp"
|
|
1273
|
+
reservation_end_timestamp = "reservation-end-timestamp"
|
|
1274
|
+
reservation_end_date_type = "reservation-end-date-type"
|
|
1275
|
+
tenancy = "tenancy"
|
|
1276
|
+
reservation_state = "reservation-state"
|
|
1277
|
+
reservation_instance_match_criteria = "reservation-instance-match-criteria"
|
|
1278
|
+
reservation_unused_financial_owner = "reservation-unused-financial-owner"
|
|
1279
|
+
|
|
1280
|
+
|
|
1188
1281
|
class HostMaintenance(StrEnum):
|
|
1189
1282
|
on = "on"
|
|
1190
1283
|
off = "off"
|
|
@@ -1252,6 +1345,19 @@ class ImageBlockPublicAccessEnabledState(StrEnum):
|
|
|
1252
1345
|
block_new_sharing = "block-new-sharing"
|
|
1253
1346
|
|
|
1254
1347
|
|
|
1348
|
+
class ImageReferenceOptionName(StrEnum):
|
|
1349
|
+
state_name = "state-name"
|
|
1350
|
+
version_depth = "version-depth"
|
|
1351
|
+
|
|
1352
|
+
|
|
1353
|
+
class ImageReferenceResourceType(StrEnum):
|
|
1354
|
+
ec2_Instance = "ec2:Instance"
|
|
1355
|
+
ec2_LaunchTemplate = "ec2:LaunchTemplate"
|
|
1356
|
+
ssm_Parameter = "ssm:Parameter"
|
|
1357
|
+
imagebuilder_ImageRecipe = "imagebuilder:ImageRecipe"
|
|
1358
|
+
imagebuilder_ContainerRecipe = "imagebuilder:ContainerRecipe"
|
|
1359
|
+
|
|
1360
|
+
|
|
1255
1361
|
class ImageState(StrEnum):
|
|
1256
1362
|
pending = "pending"
|
|
1257
1363
|
available = "available"
|
|
@@ -1273,9 +1379,16 @@ class ImdsSupportValues(StrEnum):
|
|
|
1273
1379
|
v2_0 = "v2.0"
|
|
1274
1380
|
|
|
1275
1381
|
|
|
1382
|
+
class IngestionStatus(StrEnum):
|
|
1383
|
+
initial_ingestion_in_progress = "initial-ingestion-in-progress"
|
|
1384
|
+
ingestion_complete = "ingestion-complete"
|
|
1385
|
+
ingestion_failed = "ingestion-failed"
|
|
1386
|
+
|
|
1387
|
+
|
|
1276
1388
|
class InitializationType(StrEnum):
|
|
1277
1389
|
default = "default"
|
|
1278
1390
|
provisioned_rate = "provisioned-rate"
|
|
1391
|
+
volume_copy = "volume-copy"
|
|
1279
1392
|
|
|
1280
1393
|
|
|
1281
1394
|
class InstanceAttributeName(StrEnum):
|
|
@@ -2351,6 +2464,119 @@ class InstanceType(StrEnum):
|
|
|
2351
2464
|
c8gn_metal_48xl = "c8gn.metal-48xl"
|
|
2352
2465
|
f2_6xlarge = "f2.6xlarge"
|
|
2353
2466
|
p6e_gb200_36xlarge = "p6e-gb200.36xlarge"
|
|
2467
|
+
g6f_large = "g6f.large"
|
|
2468
|
+
g6f_xlarge = "g6f.xlarge"
|
|
2469
|
+
g6f_2xlarge = "g6f.2xlarge"
|
|
2470
|
+
g6f_4xlarge = "g6f.4xlarge"
|
|
2471
|
+
gr6f_4xlarge = "gr6f.4xlarge"
|
|
2472
|
+
p5_4xlarge = "p5.4xlarge"
|
|
2473
|
+
r8i_large = "r8i.large"
|
|
2474
|
+
r8i_xlarge = "r8i.xlarge"
|
|
2475
|
+
r8i_2xlarge = "r8i.2xlarge"
|
|
2476
|
+
r8i_4xlarge = "r8i.4xlarge"
|
|
2477
|
+
r8i_8xlarge = "r8i.8xlarge"
|
|
2478
|
+
r8i_12xlarge = "r8i.12xlarge"
|
|
2479
|
+
r8i_16xlarge = "r8i.16xlarge"
|
|
2480
|
+
r8i_24xlarge = "r8i.24xlarge"
|
|
2481
|
+
r8i_32xlarge = "r8i.32xlarge"
|
|
2482
|
+
r8i_48xlarge = "r8i.48xlarge"
|
|
2483
|
+
r8i_96xlarge = "r8i.96xlarge"
|
|
2484
|
+
r8i_metal_48xl = "r8i.metal-48xl"
|
|
2485
|
+
r8i_metal_96xl = "r8i.metal-96xl"
|
|
2486
|
+
r8i_flex_large = "r8i-flex.large"
|
|
2487
|
+
r8i_flex_xlarge = "r8i-flex.xlarge"
|
|
2488
|
+
r8i_flex_2xlarge = "r8i-flex.2xlarge"
|
|
2489
|
+
r8i_flex_4xlarge = "r8i-flex.4xlarge"
|
|
2490
|
+
r8i_flex_8xlarge = "r8i-flex.8xlarge"
|
|
2491
|
+
r8i_flex_12xlarge = "r8i-flex.12xlarge"
|
|
2492
|
+
r8i_flex_16xlarge = "r8i-flex.16xlarge"
|
|
2493
|
+
m8i_large = "m8i.large"
|
|
2494
|
+
m8i_xlarge = "m8i.xlarge"
|
|
2495
|
+
m8i_2xlarge = "m8i.2xlarge"
|
|
2496
|
+
m8i_4xlarge = "m8i.4xlarge"
|
|
2497
|
+
m8i_8xlarge = "m8i.8xlarge"
|
|
2498
|
+
m8i_12xlarge = "m8i.12xlarge"
|
|
2499
|
+
m8i_16xlarge = "m8i.16xlarge"
|
|
2500
|
+
m8i_24xlarge = "m8i.24xlarge"
|
|
2501
|
+
m8i_32xlarge = "m8i.32xlarge"
|
|
2502
|
+
m8i_48xlarge = "m8i.48xlarge"
|
|
2503
|
+
m8i_96xlarge = "m8i.96xlarge"
|
|
2504
|
+
m8i_metal_48xl = "m8i.metal-48xl"
|
|
2505
|
+
m8i_metal_96xl = "m8i.metal-96xl"
|
|
2506
|
+
m8i_flex_large = "m8i-flex.large"
|
|
2507
|
+
m8i_flex_xlarge = "m8i-flex.xlarge"
|
|
2508
|
+
m8i_flex_2xlarge = "m8i-flex.2xlarge"
|
|
2509
|
+
m8i_flex_4xlarge = "m8i-flex.4xlarge"
|
|
2510
|
+
m8i_flex_8xlarge = "m8i-flex.8xlarge"
|
|
2511
|
+
m8i_flex_12xlarge = "m8i-flex.12xlarge"
|
|
2512
|
+
m8i_flex_16xlarge = "m8i-flex.16xlarge"
|
|
2513
|
+
i8ge_large = "i8ge.large"
|
|
2514
|
+
i8ge_xlarge = "i8ge.xlarge"
|
|
2515
|
+
i8ge_2xlarge = "i8ge.2xlarge"
|
|
2516
|
+
i8ge_3xlarge = "i8ge.3xlarge"
|
|
2517
|
+
i8ge_6xlarge = "i8ge.6xlarge"
|
|
2518
|
+
i8ge_12xlarge = "i8ge.12xlarge"
|
|
2519
|
+
i8ge_18xlarge = "i8ge.18xlarge"
|
|
2520
|
+
i8ge_24xlarge = "i8ge.24xlarge"
|
|
2521
|
+
i8ge_48xlarge = "i8ge.48xlarge"
|
|
2522
|
+
i8ge_metal_24xl = "i8ge.metal-24xl"
|
|
2523
|
+
i8ge_metal_48xl = "i8ge.metal-48xl"
|
|
2524
|
+
mac_m4_metal = "mac-m4.metal"
|
|
2525
|
+
mac_m4pro_metal = "mac-m4pro.metal"
|
|
2526
|
+
r8gn_medium = "r8gn.medium"
|
|
2527
|
+
r8gn_large = "r8gn.large"
|
|
2528
|
+
r8gn_xlarge = "r8gn.xlarge"
|
|
2529
|
+
r8gn_2xlarge = "r8gn.2xlarge"
|
|
2530
|
+
r8gn_4xlarge = "r8gn.4xlarge"
|
|
2531
|
+
r8gn_8xlarge = "r8gn.8xlarge"
|
|
2532
|
+
r8gn_12xlarge = "r8gn.12xlarge"
|
|
2533
|
+
r8gn_16xlarge = "r8gn.16xlarge"
|
|
2534
|
+
r8gn_24xlarge = "r8gn.24xlarge"
|
|
2535
|
+
r8gn_48xlarge = "r8gn.48xlarge"
|
|
2536
|
+
r8gn_metal_24xl = "r8gn.metal-24xl"
|
|
2537
|
+
r8gn_metal_48xl = "r8gn.metal-48xl"
|
|
2538
|
+
c8i_large = "c8i.large"
|
|
2539
|
+
c8i_xlarge = "c8i.xlarge"
|
|
2540
|
+
c8i_2xlarge = "c8i.2xlarge"
|
|
2541
|
+
c8i_4xlarge = "c8i.4xlarge"
|
|
2542
|
+
c8i_8xlarge = "c8i.8xlarge"
|
|
2543
|
+
c8i_12xlarge = "c8i.12xlarge"
|
|
2544
|
+
c8i_16xlarge = "c8i.16xlarge"
|
|
2545
|
+
c8i_24xlarge = "c8i.24xlarge"
|
|
2546
|
+
c8i_32xlarge = "c8i.32xlarge"
|
|
2547
|
+
c8i_48xlarge = "c8i.48xlarge"
|
|
2548
|
+
c8i_96xlarge = "c8i.96xlarge"
|
|
2549
|
+
c8i_metal_48xl = "c8i.metal-48xl"
|
|
2550
|
+
c8i_metal_96xl = "c8i.metal-96xl"
|
|
2551
|
+
c8i_flex_large = "c8i-flex.large"
|
|
2552
|
+
c8i_flex_xlarge = "c8i-flex.xlarge"
|
|
2553
|
+
c8i_flex_2xlarge = "c8i-flex.2xlarge"
|
|
2554
|
+
c8i_flex_4xlarge = "c8i-flex.4xlarge"
|
|
2555
|
+
c8i_flex_8xlarge = "c8i-flex.8xlarge"
|
|
2556
|
+
c8i_flex_12xlarge = "c8i-flex.12xlarge"
|
|
2557
|
+
c8i_flex_16xlarge = "c8i-flex.16xlarge"
|
|
2558
|
+
r8gb_medium = "r8gb.medium"
|
|
2559
|
+
r8gb_large = "r8gb.large"
|
|
2560
|
+
r8gb_xlarge = "r8gb.xlarge"
|
|
2561
|
+
r8gb_2xlarge = "r8gb.2xlarge"
|
|
2562
|
+
r8gb_4xlarge = "r8gb.4xlarge"
|
|
2563
|
+
r8gb_8xlarge = "r8gb.8xlarge"
|
|
2564
|
+
r8gb_12xlarge = "r8gb.12xlarge"
|
|
2565
|
+
r8gb_16xlarge = "r8gb.16xlarge"
|
|
2566
|
+
r8gb_24xlarge = "r8gb.24xlarge"
|
|
2567
|
+
r8gb_metal_24xl = "r8gb.metal-24xl"
|
|
2568
|
+
m8a_medium = "m8a.medium"
|
|
2569
|
+
m8a_large = "m8a.large"
|
|
2570
|
+
m8a_xlarge = "m8a.xlarge"
|
|
2571
|
+
m8a_2xlarge = "m8a.2xlarge"
|
|
2572
|
+
m8a_4xlarge = "m8a.4xlarge"
|
|
2573
|
+
m8a_8xlarge = "m8a.8xlarge"
|
|
2574
|
+
m8a_12xlarge = "m8a.12xlarge"
|
|
2575
|
+
m8a_16xlarge = "m8a.16xlarge"
|
|
2576
|
+
m8a_24xlarge = "m8a.24xlarge"
|
|
2577
|
+
m8a_48xlarge = "m8a.48xlarge"
|
|
2578
|
+
m8a_metal_24xl = "m8a.metal-24xl"
|
|
2579
|
+
m8a_metal_48xl = "m8a.metal-48xl"
|
|
2354
2580
|
|
|
2355
2581
|
|
|
2356
2582
|
class InstanceTypeHypervisor(StrEnum):
|
|
@@ -2501,6 +2727,57 @@ class IpamPoolState(StrEnum):
|
|
|
2501
2727
|
restore_in_progress = "restore-in-progress"
|
|
2502
2728
|
|
|
2503
2729
|
|
|
2730
|
+
class IpamPrefixListResolverRuleConditionOperation(StrEnum):
|
|
2731
|
+
equals = "equals"
|
|
2732
|
+
not_equals = "not-equals"
|
|
2733
|
+
subnet_of = "subnet-of"
|
|
2734
|
+
|
|
2735
|
+
|
|
2736
|
+
class IpamPrefixListResolverRuleType(StrEnum):
|
|
2737
|
+
static_cidr = "static-cidr"
|
|
2738
|
+
ipam_resource_cidr = "ipam-resource-cidr"
|
|
2739
|
+
ipam_pool_cidr = "ipam-pool-cidr"
|
|
2740
|
+
|
|
2741
|
+
|
|
2742
|
+
class IpamPrefixListResolverState(StrEnum):
|
|
2743
|
+
create_in_progress = "create-in-progress"
|
|
2744
|
+
create_complete = "create-complete"
|
|
2745
|
+
create_failed = "create-failed"
|
|
2746
|
+
modify_in_progress = "modify-in-progress"
|
|
2747
|
+
modify_complete = "modify-complete"
|
|
2748
|
+
modify_failed = "modify-failed"
|
|
2749
|
+
delete_in_progress = "delete-in-progress"
|
|
2750
|
+
delete_complete = "delete-complete"
|
|
2751
|
+
delete_failed = "delete-failed"
|
|
2752
|
+
isolate_in_progress = "isolate-in-progress"
|
|
2753
|
+
isolate_complete = "isolate-complete"
|
|
2754
|
+
restore_in_progress = "restore-in-progress"
|
|
2755
|
+
|
|
2756
|
+
|
|
2757
|
+
class IpamPrefixListResolverTargetState(StrEnum):
|
|
2758
|
+
create_in_progress = "create-in-progress"
|
|
2759
|
+
create_complete = "create-complete"
|
|
2760
|
+
create_failed = "create-failed"
|
|
2761
|
+
modify_in_progress = "modify-in-progress"
|
|
2762
|
+
modify_complete = "modify-complete"
|
|
2763
|
+
modify_failed = "modify-failed"
|
|
2764
|
+
sync_in_progress = "sync-in-progress"
|
|
2765
|
+
sync_complete = "sync-complete"
|
|
2766
|
+
sync_failed = "sync-failed"
|
|
2767
|
+
delete_in_progress = "delete-in-progress"
|
|
2768
|
+
delete_complete = "delete-complete"
|
|
2769
|
+
delete_failed = "delete-failed"
|
|
2770
|
+
isolate_in_progress = "isolate-in-progress"
|
|
2771
|
+
isolate_complete = "isolate-complete"
|
|
2772
|
+
restore_in_progress = "restore-in-progress"
|
|
2773
|
+
|
|
2774
|
+
|
|
2775
|
+
class IpamPrefixListResolverVersionCreationStatus(StrEnum):
|
|
2776
|
+
pending = "pending"
|
|
2777
|
+
success = "success"
|
|
2778
|
+
failure = "failure"
|
|
2779
|
+
|
|
2780
|
+
|
|
2504
2781
|
class IpamPublicAddressAssociationStatus(StrEnum):
|
|
2505
2782
|
associated = "associated"
|
|
2506
2783
|
disassociated = "disassociated"
|
|
@@ -2789,6 +3066,52 @@ class MetadataDefaultHttpTokensState(StrEnum):
|
|
|
2789
3066
|
no_preference = "no-preference"
|
|
2790
3067
|
|
|
2791
3068
|
|
|
3069
|
+
class Metric(StrEnum):
|
|
3070
|
+
reservation_total_capacity_hrs_vcpu = "reservation-total-capacity-hrs-vcpu"
|
|
3071
|
+
reservation_total_capacity_hrs_inst = "reservation-total-capacity-hrs-inst"
|
|
3072
|
+
reservation_max_size_vcpu = "reservation-max-size-vcpu"
|
|
3073
|
+
reservation_max_size_inst = "reservation-max-size-inst"
|
|
3074
|
+
reservation_min_size_vcpu = "reservation-min-size-vcpu"
|
|
3075
|
+
reservation_min_size_inst = "reservation-min-size-inst"
|
|
3076
|
+
reservation_unused_total_capacity_hrs_vcpu = "reservation-unused-total-capacity-hrs-vcpu"
|
|
3077
|
+
reservation_unused_total_capacity_hrs_inst = "reservation-unused-total-capacity-hrs-inst"
|
|
3078
|
+
reservation_unused_total_estimated_cost = "reservation-unused-total-estimated-cost"
|
|
3079
|
+
reservation_max_unused_size_vcpu = "reservation-max-unused-size-vcpu"
|
|
3080
|
+
reservation_max_unused_size_inst = "reservation-max-unused-size-inst"
|
|
3081
|
+
reservation_min_unused_size_vcpu = "reservation-min-unused-size-vcpu"
|
|
3082
|
+
reservation_min_unused_size_inst = "reservation-min-unused-size-inst"
|
|
3083
|
+
reservation_max_utilization = "reservation-max-utilization"
|
|
3084
|
+
reservation_min_utilization = "reservation-min-utilization"
|
|
3085
|
+
reservation_avg_utilization_vcpu = "reservation-avg-utilization-vcpu"
|
|
3086
|
+
reservation_avg_utilization_inst = "reservation-avg-utilization-inst"
|
|
3087
|
+
reservation_total_count = "reservation-total-count"
|
|
3088
|
+
reservation_total_estimated_cost = "reservation-total-estimated-cost"
|
|
3089
|
+
reservation_avg_future_size_vcpu = "reservation-avg-future-size-vcpu"
|
|
3090
|
+
reservation_avg_future_size_inst = "reservation-avg-future-size-inst"
|
|
3091
|
+
reservation_min_future_size_vcpu = "reservation-min-future-size-vcpu"
|
|
3092
|
+
reservation_min_future_size_inst = "reservation-min-future-size-inst"
|
|
3093
|
+
reservation_max_future_size_vcpu = "reservation-max-future-size-vcpu"
|
|
3094
|
+
reservation_max_future_size_inst = "reservation-max-future-size-inst"
|
|
3095
|
+
reservation_avg_committed_size_vcpu = "reservation-avg-committed-size-vcpu"
|
|
3096
|
+
reservation_avg_committed_size_inst = "reservation-avg-committed-size-inst"
|
|
3097
|
+
reservation_max_committed_size_vcpu = "reservation-max-committed-size-vcpu"
|
|
3098
|
+
reservation_max_committed_size_inst = "reservation-max-committed-size-inst"
|
|
3099
|
+
reservation_min_committed_size_vcpu = "reservation-min-committed-size-vcpu"
|
|
3100
|
+
reservation_min_committed_size_inst = "reservation-min-committed-size-inst"
|
|
3101
|
+
reserved_total_usage_hrs_vcpu = "reserved-total-usage-hrs-vcpu"
|
|
3102
|
+
reserved_total_usage_hrs_inst = "reserved-total-usage-hrs-inst"
|
|
3103
|
+
reserved_total_estimated_cost = "reserved-total-estimated-cost"
|
|
3104
|
+
unreserved_total_usage_hrs_vcpu = "unreserved-total-usage-hrs-vcpu"
|
|
3105
|
+
unreserved_total_usage_hrs_inst = "unreserved-total-usage-hrs-inst"
|
|
3106
|
+
unreserved_total_estimated_cost = "unreserved-total-estimated-cost"
|
|
3107
|
+
spot_total_usage_hrs_vcpu = "spot-total-usage-hrs-vcpu"
|
|
3108
|
+
spot_total_usage_hrs_inst = "spot-total-usage-hrs-inst"
|
|
3109
|
+
spot_total_estimated_cost = "spot-total-estimated-cost"
|
|
3110
|
+
spot_avg_run_time_before_interruption_inst = "spot-avg-run-time-before-interruption-inst"
|
|
3111
|
+
spot_max_run_time_before_interruption_inst = "spot-max-run-time-before-interruption-inst"
|
|
3112
|
+
spot_min_run_time_before_interruption_inst = "spot-min-run-time-before-interruption-inst"
|
|
3113
|
+
|
|
3114
|
+
|
|
2792
3115
|
class MetricType(StrEnum):
|
|
2793
3116
|
aggregate_latency = "aggregate-latency"
|
|
2794
3117
|
|
|
@@ -2917,6 +3240,11 @@ class OperationType(StrEnum):
|
|
|
2917
3240
|
remove = "remove"
|
|
2918
3241
|
|
|
2919
3242
|
|
|
3243
|
+
class OutputFormat(StrEnum):
|
|
3244
|
+
csv = "csv"
|
|
3245
|
+
parquet = "parquet"
|
|
3246
|
+
|
|
3247
|
+
|
|
2920
3248
|
class PartitionLoadFrequency(StrEnum):
|
|
2921
3249
|
none = "none"
|
|
2922
3250
|
daily = "daily"
|
|
@@ -3073,13 +3401,30 @@ class ReportStatusType(StrEnum):
|
|
|
3073
3401
|
impaired = "impaired"
|
|
3074
3402
|
|
|
3075
3403
|
|
|
3404
|
+
class ReservationEndDateType(StrEnum):
|
|
3405
|
+
limited = "limited"
|
|
3406
|
+
unlimited = "unlimited"
|
|
3407
|
+
|
|
3408
|
+
|
|
3076
3409
|
class ReservationState(StrEnum):
|
|
3410
|
+
active = "active"
|
|
3411
|
+
expired = "expired"
|
|
3412
|
+
cancelled = "cancelled"
|
|
3413
|
+
scheduled = "scheduled"
|
|
3414
|
+
pending = "pending"
|
|
3415
|
+
failed = "failed"
|
|
3416
|
+
delayed = "delayed"
|
|
3417
|
+
unsupported = "unsupported"
|
|
3077
3418
|
payment_pending = "payment-pending"
|
|
3078
3419
|
payment_failed = "payment-failed"
|
|
3079
|
-
active = "active"
|
|
3080
3420
|
retired = "retired"
|
|
3081
3421
|
|
|
3082
3422
|
|
|
3423
|
+
class ReservationType(StrEnum):
|
|
3424
|
+
capacity_block = "capacity-block"
|
|
3425
|
+
odcr = "odcr"
|
|
3426
|
+
|
|
3427
|
+
|
|
3083
3428
|
class ReservedInstanceState(StrEnum):
|
|
3084
3429
|
payment_pending = "payment-pending"
|
|
3085
3430
|
active = "active"
|
|
@@ -3115,6 +3460,7 @@ class ResourceType(StrEnum):
|
|
|
3115
3460
|
fpga_image = "fpga-image"
|
|
3116
3461
|
host_reservation = "host-reservation"
|
|
3117
3462
|
image = "image"
|
|
3463
|
+
image_usage_report = "image-usage-report"
|
|
3118
3464
|
import_image_task = "import-image-task"
|
|
3119
3465
|
import_snapshot_task = "import-snapshot-task"
|
|
3120
3466
|
instance = "instance"
|
|
@@ -3196,6 +3542,9 @@ class ResourceType(StrEnum):
|
|
|
3196
3542
|
ipam_external_resource_verification_token = "ipam-external-resource-verification-token"
|
|
3197
3543
|
capacity_block = "capacity-block"
|
|
3198
3544
|
mac_modification_task = "mac-modification-task"
|
|
3545
|
+
ipam_prefix_list_resolver = "ipam-prefix-list-resolver"
|
|
3546
|
+
ipam_prefix_list_resolver_target = "ipam-prefix-list-resolver-target"
|
|
3547
|
+
capacity_manager_data_export = "capacity-manager-data-export"
|
|
3199
3548
|
|
|
3200
3549
|
|
|
3201
3550
|
class RootDeviceType(StrEnum):
|
|
@@ -3207,6 +3556,7 @@ class RouteOrigin(StrEnum):
|
|
|
3207
3556
|
CreateRouteTable = "CreateRouteTable"
|
|
3208
3557
|
CreateRoute = "CreateRoute"
|
|
3209
3558
|
EnableVgwRoutePropagation = "EnableVgwRoutePropagation"
|
|
3559
|
+
Advertisement = "Advertisement"
|
|
3210
3560
|
|
|
3211
3561
|
|
|
3212
3562
|
class RouteServerAssociationState(StrEnum):
|
|
@@ -3291,6 +3641,7 @@ class RouteServerState(StrEnum):
|
|
|
3291
3641
|
class RouteState(StrEnum):
|
|
3292
3642
|
active = "active"
|
|
3293
3643
|
blackhole = "blackhole"
|
|
3644
|
+
filtered = "filtered"
|
|
3294
3645
|
|
|
3295
3646
|
|
|
3296
3647
|
class RouteTableAssociationStateCode(StrEnum):
|
|
@@ -3312,6 +3663,10 @@ class SSEType(StrEnum):
|
|
|
3312
3663
|
none = "none"
|
|
3313
3664
|
|
|
3314
3665
|
|
|
3666
|
+
class Schedule(StrEnum):
|
|
3667
|
+
hourly = "hourly"
|
|
3668
|
+
|
|
3669
|
+
|
|
3315
3670
|
class SecurityGroupReferencingSupportValue(StrEnum):
|
|
3316
3671
|
enable = "enable"
|
|
3317
3672
|
disable = "disable"
|
|
@@ -3557,6 +3912,12 @@ class TrafficDirection(StrEnum):
|
|
|
3557
3912
|
egress = "egress"
|
|
3558
3913
|
|
|
3559
3914
|
|
|
3915
|
+
class TrafficIpAddressType(StrEnum):
|
|
3916
|
+
ipv4 = "ipv4"
|
|
3917
|
+
ipv6 = "ipv6"
|
|
3918
|
+
dual_stack = "dual-stack"
|
|
3919
|
+
|
|
3920
|
+
|
|
3560
3921
|
class TrafficMirrorFilterRuleField(StrEnum):
|
|
3561
3922
|
destination_port_range = "destination-port-range"
|
|
3562
3923
|
source_port_range = "source-port-range"
|
|
@@ -3829,6 +4190,7 @@ class VolumeStatusInfoStatus(StrEnum):
|
|
|
3829
4190
|
ok = "ok"
|
|
3830
4191
|
impaired = "impaired"
|
|
3831
4192
|
insufficient_data = "insufficient-data"
|
|
4193
|
+
warning = "warning"
|
|
3832
4194
|
|
|
3833
4195
|
|
|
3834
4196
|
class VolumeStatusName(StrEnum):
|
|
@@ -5110,6 +5472,7 @@ class AssociateRouteServerResult(TypedDict, total=False):
|
|
|
5110
5472
|
|
|
5111
5473
|
class AssociateRouteTableRequest(ServiceRequest):
|
|
5112
5474
|
GatewayId: Optional[RouteGatewayId]
|
|
5475
|
+
PublicIpv4Pool: Optional[Ipv4PoolEc2Id]
|
|
5113
5476
|
DryRun: Optional[Boolean]
|
|
5114
5477
|
SubnetId: Optional[SubnetId]
|
|
5115
5478
|
RouteTableId: RouteTableId
|
|
@@ -6127,6 +6490,58 @@ class CapacityBlockStatus(TypedDict, total=False):
|
|
|
6127
6490
|
|
|
6128
6491
|
|
|
6129
6492
|
CapacityBlockStatusSet = List[CapacityBlockStatus]
|
|
6493
|
+
ConditionValueList = List[String]
|
|
6494
|
+
|
|
6495
|
+
|
|
6496
|
+
class DimensionCondition(TypedDict, total=False):
|
|
6497
|
+
Dimension: Optional[FilterByDimension]
|
|
6498
|
+
Comparison: Optional[Comparison]
|
|
6499
|
+
Values: Optional[ConditionValueList]
|
|
6500
|
+
|
|
6501
|
+
|
|
6502
|
+
class CapacityManagerCondition(TypedDict, total=False):
|
|
6503
|
+
DimensionCondition: Optional[DimensionCondition]
|
|
6504
|
+
|
|
6505
|
+
|
|
6506
|
+
CapacityManagerConditionSet = List[CapacityManagerCondition]
|
|
6507
|
+
CapacityManagerDataExportIdSet = List[CapacityManagerDataExportId]
|
|
6508
|
+
|
|
6509
|
+
|
|
6510
|
+
class CapacityManagerDataExportResponse(TypedDict, total=False):
|
|
6511
|
+
CapacityManagerDataExportId: Optional[CapacityManagerDataExportId]
|
|
6512
|
+
S3BucketName: Optional[String]
|
|
6513
|
+
S3BucketPrefix: Optional[String]
|
|
6514
|
+
Schedule: Optional[Schedule]
|
|
6515
|
+
OutputFormat: Optional[OutputFormat]
|
|
6516
|
+
CreateTime: Optional[MillisecondDateTime]
|
|
6517
|
+
LatestDeliveryStatus: Optional[CapacityManagerDataExportStatus]
|
|
6518
|
+
LatestDeliveryStatusMessage: Optional[String]
|
|
6519
|
+
LatestDeliveryS3LocationUri: Optional[String]
|
|
6520
|
+
LatestDeliveryTime: Optional[MillisecondDateTime]
|
|
6521
|
+
Tags: Optional[TagList]
|
|
6522
|
+
|
|
6523
|
+
|
|
6524
|
+
CapacityManagerDataExportResponseSet = List[CapacityManagerDataExportResponse]
|
|
6525
|
+
|
|
6526
|
+
|
|
6527
|
+
class CapacityManagerDimension(TypedDict, total=False):
|
|
6528
|
+
ResourceRegion: Optional[String]
|
|
6529
|
+
AvailabilityZoneId: Optional[String]
|
|
6530
|
+
AccountId: Optional[String]
|
|
6531
|
+
InstanceFamily: Optional[String]
|
|
6532
|
+
InstanceType: Optional[String]
|
|
6533
|
+
InstancePlatform: Optional[String]
|
|
6534
|
+
ReservationArn: Optional[String]
|
|
6535
|
+
ReservationId: Optional[String]
|
|
6536
|
+
ReservationType: Optional[ReservationType]
|
|
6537
|
+
ReservationCreateTimestamp: Optional[MillisecondDateTime]
|
|
6538
|
+
ReservationStartTimestamp: Optional[MillisecondDateTime]
|
|
6539
|
+
ReservationEndTimestamp: Optional[MillisecondDateTime]
|
|
6540
|
+
ReservationEndDateType: Optional[ReservationEndDateType]
|
|
6541
|
+
Tenancy: Optional[CapacityTenancy]
|
|
6542
|
+
ReservationState: Optional[ReservationState]
|
|
6543
|
+
ReservationInstanceMatchCriteria: Optional[String]
|
|
6544
|
+
ReservationUnusedFinancialOwner: Optional[String]
|
|
6130
6545
|
|
|
6131
6546
|
|
|
6132
6547
|
class CapacityReservationCommitmentInfo(TypedDict, total=False):
|
|
@@ -6260,6 +6675,23 @@ class CapacityReservationSpecificationResponse(TypedDict, total=False):
|
|
|
6260
6675
|
CapacityReservationTarget: Optional[CapacityReservationTargetResponse]
|
|
6261
6676
|
|
|
6262
6677
|
|
|
6678
|
+
NetworkNodeSet = List[String]
|
|
6679
|
+
|
|
6680
|
+
|
|
6681
|
+
class CapacityReservationTopology(TypedDict, total=False):
|
|
6682
|
+
CapacityReservationId: Optional[String]
|
|
6683
|
+
CapacityBlockId: Optional[String]
|
|
6684
|
+
State: Optional[String]
|
|
6685
|
+
InstanceType: Optional[String]
|
|
6686
|
+
GroupName: Optional[String]
|
|
6687
|
+
NetworkNodes: Optional[NetworkNodeSet]
|
|
6688
|
+
AvailabilityZoneId: Optional[String]
|
|
6689
|
+
AvailabilityZone: Optional[String]
|
|
6690
|
+
|
|
6691
|
+
|
|
6692
|
+
CapacityReservationTopologySet = List[CapacityReservationTopology]
|
|
6693
|
+
|
|
6694
|
+
|
|
6263
6695
|
class CarrierGateway(TypedDict, total=False):
|
|
6264
6696
|
CarrierGatewayId: Optional[CarrierGatewayId]
|
|
6265
6697
|
VpcId: Optional[VpcId]
|
|
@@ -6422,6 +6854,7 @@ class ClientVpnConnection(TypedDict, total=False):
|
|
|
6422
6854
|
IngressPackets: Optional[String]
|
|
6423
6855
|
EgressPackets: Optional[String]
|
|
6424
6856
|
ClientIp: Optional[String]
|
|
6857
|
+
ClientIpv6Address: Optional[String]
|
|
6425
6858
|
CommonName: Optional[String]
|
|
6426
6859
|
Status: Optional[ClientVpnConnectionStatus]
|
|
6427
6860
|
ConnectionEndTime: Optional[String]
|
|
@@ -6468,6 +6901,8 @@ class ClientVpnEndpoint(TypedDict, total=False):
|
|
|
6468
6901
|
ClientLoginBannerOptions: Optional[ClientLoginBannerResponseOptions]
|
|
6469
6902
|
ClientRouteEnforcementOptions: Optional[ClientRouteEnforcementResponseOptions]
|
|
6470
6903
|
DisconnectOnSessionTimeout: Optional[Boolean]
|
|
6904
|
+
EndpointIpAddressType: Optional[EndpointIpAddressType]
|
|
6905
|
+
TrafficIpAddressType: Optional[TrafficIpAddressType]
|
|
6471
6906
|
|
|
6472
6907
|
|
|
6473
6908
|
ClientVpnEndpointIdList = List[ClientVpnEndpointId]
|
|
@@ -6604,6 +7039,7 @@ class DiskImageDescription(TypedDict, total=False):
|
|
|
6604
7039
|
|
|
6605
7040
|
class ImportVolumeTaskDetails(TypedDict, total=False):
|
|
6606
7041
|
AvailabilityZone: Optional[String]
|
|
7042
|
+
AvailabilityZoneId: Optional[String]
|
|
6607
7043
|
BytesConverted: Optional[Long]
|
|
6608
7044
|
Description: Optional[String]
|
|
6609
7045
|
Image: Optional[DiskImageDescription]
|
|
@@ -6612,6 +7048,7 @@ class ImportVolumeTaskDetails(TypedDict, total=False):
|
|
|
6612
7048
|
|
|
6613
7049
|
class ImportInstanceVolumeDetailItem(TypedDict, total=False):
|
|
6614
7050
|
AvailabilityZone: Optional[String]
|
|
7051
|
+
AvailabilityZoneId: Optional[String]
|
|
6615
7052
|
BytesConverted: Optional[Long]
|
|
6616
7053
|
Description: Optional[String]
|
|
6617
7054
|
Image: Optional[DiskImageDescription]
|
|
@@ -6665,6 +7102,8 @@ class CopyImageRequest(ServiceRequest):
|
|
|
6665
7102
|
CopyImageTags: Optional[Boolean]
|
|
6666
7103
|
TagSpecifications: Optional[TagSpecificationList]
|
|
6667
7104
|
SnapshotCopyCompletionDurationMinutes: Optional[Long]
|
|
7105
|
+
DestinationAvailabilityZone: Optional[String]
|
|
7106
|
+
DestinationAvailabilityZoneId: Optional[String]
|
|
6668
7107
|
DryRun: Optional[Boolean]
|
|
6669
7108
|
|
|
6670
7109
|
|
|
@@ -6683,6 +7122,7 @@ class CopySnapshotRequest(ServiceRequest):
|
|
|
6683
7122
|
SourceSnapshotId: String
|
|
6684
7123
|
TagSpecifications: Optional[TagSpecificationList]
|
|
6685
7124
|
CompletionDurationMinutes: Optional[SnapshotCompletionDurationMinutesRequest]
|
|
7125
|
+
DestinationAvailabilityZone: Optional[String]
|
|
6686
7126
|
DryRun: Optional[Boolean]
|
|
6687
7127
|
|
|
6688
7128
|
|
|
@@ -6691,6 +7131,68 @@ class CopySnapshotResult(TypedDict, total=False):
|
|
|
6691
7131
|
SnapshotId: Optional[String]
|
|
6692
7132
|
|
|
6693
7133
|
|
|
7134
|
+
class CopyVolumesRequest(ServiceRequest):
|
|
7135
|
+
SourceVolumeId: VolumeId
|
|
7136
|
+
Iops: Optional[Integer]
|
|
7137
|
+
Size: Optional[Integer]
|
|
7138
|
+
VolumeType: Optional[VolumeType]
|
|
7139
|
+
DryRun: Optional[Boolean]
|
|
7140
|
+
TagSpecifications: Optional[TagSpecificationList]
|
|
7141
|
+
MultiAttachEnabled: Optional[Boolean]
|
|
7142
|
+
Throughput: Optional[Integer]
|
|
7143
|
+
ClientToken: Optional[String]
|
|
7144
|
+
|
|
7145
|
+
|
|
7146
|
+
class VolumeAttachment(TypedDict, total=False):
|
|
7147
|
+
DeleteOnTermination: Optional[Boolean]
|
|
7148
|
+
AssociatedResource: Optional[String]
|
|
7149
|
+
InstanceOwningService: Optional[String]
|
|
7150
|
+
VolumeId: Optional[String]
|
|
7151
|
+
InstanceId: Optional[String]
|
|
7152
|
+
Device: Optional[String]
|
|
7153
|
+
State: Optional[VolumeAttachmentState]
|
|
7154
|
+
AttachTime: Optional[DateTime]
|
|
7155
|
+
|
|
7156
|
+
|
|
7157
|
+
VolumeAttachmentList = List[VolumeAttachment]
|
|
7158
|
+
|
|
7159
|
+
|
|
7160
|
+
class OperatorResponse(TypedDict, total=False):
|
|
7161
|
+
Managed: Optional[Boolean]
|
|
7162
|
+
Principal: Optional[String]
|
|
7163
|
+
|
|
7164
|
+
|
|
7165
|
+
class Volume(TypedDict, total=False):
|
|
7166
|
+
AvailabilityZoneId: Optional[String]
|
|
7167
|
+
OutpostArn: Optional[String]
|
|
7168
|
+
SourceVolumeId: Optional[String]
|
|
7169
|
+
Iops: Optional[Integer]
|
|
7170
|
+
Tags: Optional[TagList]
|
|
7171
|
+
VolumeType: Optional[VolumeType]
|
|
7172
|
+
FastRestored: Optional[Boolean]
|
|
7173
|
+
MultiAttachEnabled: Optional[Boolean]
|
|
7174
|
+
Throughput: Optional[Integer]
|
|
7175
|
+
SseType: Optional[SSEType]
|
|
7176
|
+
Operator: Optional[OperatorResponse]
|
|
7177
|
+
VolumeInitializationRate: Optional[Integer]
|
|
7178
|
+
VolumeId: Optional[String]
|
|
7179
|
+
Size: Optional[Integer]
|
|
7180
|
+
SnapshotId: Optional[String]
|
|
7181
|
+
AvailabilityZone: Optional[String]
|
|
7182
|
+
State: Optional[VolumeState]
|
|
7183
|
+
CreateTime: Optional[DateTime]
|
|
7184
|
+
Attachments: Optional[VolumeAttachmentList]
|
|
7185
|
+
Encrypted: Optional[Boolean]
|
|
7186
|
+
KmsKeyId: Optional[String]
|
|
7187
|
+
|
|
7188
|
+
|
|
7189
|
+
VolumeList = List[Volume]
|
|
7190
|
+
|
|
7191
|
+
|
|
7192
|
+
class CopyVolumesResult(TypedDict, total=False):
|
|
7193
|
+
Volumes: Optional[VolumeList]
|
|
7194
|
+
|
|
7195
|
+
|
|
6694
7196
|
CoreCountList = List[CoreCount]
|
|
6695
7197
|
CpuManufacturerSet = List[CpuManufacturer]
|
|
6696
7198
|
|
|
@@ -6707,6 +7209,20 @@ class CpuOptionsRequest(TypedDict, total=False):
|
|
|
6707
7209
|
AmdSevSnp: Optional[AmdSevSnpSpecification]
|
|
6708
7210
|
|
|
6709
7211
|
|
|
7212
|
+
class CreateCapacityManagerDataExportRequest(ServiceRequest):
|
|
7213
|
+
S3BucketName: String
|
|
7214
|
+
S3BucketPrefix: Optional[String]
|
|
7215
|
+
Schedule: Schedule
|
|
7216
|
+
OutputFormat: OutputFormat
|
|
7217
|
+
ClientToken: Optional[String]
|
|
7218
|
+
DryRun: Optional[Boolean]
|
|
7219
|
+
TagSpecifications: Optional[TagSpecificationList]
|
|
7220
|
+
|
|
7221
|
+
|
|
7222
|
+
class CreateCapacityManagerDataExportResult(TypedDict, total=False):
|
|
7223
|
+
CapacityManagerDataExportId: Optional[CapacityManagerDataExportId]
|
|
7224
|
+
|
|
7225
|
+
|
|
6710
7226
|
class CreateCapacityReservationBySplittingRequest(ServiceRequest):
|
|
6711
7227
|
DryRun: Optional[Boolean]
|
|
6712
7228
|
ClientToken: Optional[String]
|
|
@@ -6798,7 +7314,7 @@ class CreateCarrierGatewayResult(TypedDict, total=False):
|
|
|
6798
7314
|
|
|
6799
7315
|
|
|
6800
7316
|
class CreateClientVpnEndpointRequest(ServiceRequest):
|
|
6801
|
-
ClientCidrBlock: String
|
|
7317
|
+
ClientCidrBlock: Optional[String]
|
|
6802
7318
|
ServerCertificateArn: String
|
|
6803
7319
|
AuthenticationOptions: ClientVpnAuthenticationRequestList
|
|
6804
7320
|
ConnectionLogOptions: ConnectionLogOptions
|
|
@@ -6818,6 +7334,8 @@ class CreateClientVpnEndpointRequest(ServiceRequest):
|
|
|
6818
7334
|
ClientLoginBannerOptions: Optional[ClientLoginBannerOptions]
|
|
6819
7335
|
ClientRouteEnforcementOptions: Optional[ClientRouteEnforcementOptions]
|
|
6820
7336
|
DisconnectOnSessionTimeout: Optional[Boolean]
|
|
7337
|
+
EndpointIpAddressType: Optional[EndpointIpAddressType]
|
|
7338
|
+
TrafficIpAddressType: Optional[TrafficIpAddressType]
|
|
6821
7339
|
|
|
6822
7340
|
|
|
6823
7341
|
class CreateClientVpnEndpointResult(TypedDict, total=False):
|
|
@@ -6888,9 +7406,10 @@ class CreateCustomerGatewayResult(TypedDict, total=False):
|
|
|
6888
7406
|
|
|
6889
7407
|
|
|
6890
7408
|
class CreateDefaultSubnetRequest(ServiceRequest):
|
|
6891
|
-
AvailabilityZone: AvailabilityZoneName
|
|
7409
|
+
AvailabilityZone: Optional[AvailabilityZoneName]
|
|
6892
7410
|
DryRun: Optional[Boolean]
|
|
6893
7411
|
Ipv6Native: Optional[Boolean]
|
|
7412
|
+
AvailabilityZoneId: Optional[AvailabilityZoneId]
|
|
6894
7413
|
|
|
6895
7414
|
|
|
6896
7415
|
class PrivateDnsNameOptionsOnLaunch(TypedDict, total=False):
|
|
@@ -6947,6 +7466,9 @@ class VpcEncryptionControlExclusions(TypedDict, total=False):
|
|
|
6947
7466
|
NatGateway: Optional[VpcEncryptionControlExclusion]
|
|
6948
7467
|
VirtualPrivateGateway: Optional[VpcEncryptionControlExclusion]
|
|
6949
7468
|
VpcPeering: Optional[VpcEncryptionControlExclusion]
|
|
7469
|
+
Lambda: Optional[VpcEncryptionControlExclusion]
|
|
7470
|
+
VpcLattice: Optional[VpcEncryptionControlExclusion]
|
|
7471
|
+
ElasticFileSystem: Optional[VpcEncryptionControlExclusion]
|
|
6950
7472
|
|
|
6951
7473
|
|
|
6952
7474
|
class VpcEncryptionControl(TypedDict, total=False):
|
|
@@ -7280,6 +7802,7 @@ FleetBlockDeviceMappingRequestList = List[FleetBlockDeviceMappingRequest]
|
|
|
7280
7802
|
|
|
7281
7803
|
|
|
7282
7804
|
class Placement(TypedDict, total=False):
|
|
7805
|
+
AvailabilityZoneId: Optional[AvailabilityZoneId]
|
|
7283
7806
|
Affinity: Optional[String]
|
|
7284
7807
|
GroupName: Optional[PlacementGroupName]
|
|
7285
7808
|
PartitionNumber: Optional[Integer]
|
|
@@ -7440,6 +7963,39 @@ class CreateImageResult(TypedDict, total=False):
|
|
|
7440
7963
|
ImageId: Optional[String]
|
|
7441
7964
|
|
|
7442
7965
|
|
|
7966
|
+
ImageUsageReportUserIdStringList = List[String]
|
|
7967
|
+
ImageUsageResourceTypeOptionValuesList = List[ImageUsageResourceTypeOptionValue]
|
|
7968
|
+
|
|
7969
|
+
|
|
7970
|
+
class ImageUsageResourceTypeOptionRequest(TypedDict, total=False):
|
|
7971
|
+
OptionName: Optional[String]
|
|
7972
|
+
OptionValues: Optional[ImageUsageResourceTypeOptionValuesList]
|
|
7973
|
+
|
|
7974
|
+
|
|
7975
|
+
ImageUsageResourceTypeOptionRequestList = List[ImageUsageResourceTypeOptionRequest]
|
|
7976
|
+
|
|
7977
|
+
|
|
7978
|
+
class ImageUsageResourceTypeRequest(TypedDict, total=False):
|
|
7979
|
+
ResourceType: Optional[ImageUsageResourceTypeName]
|
|
7980
|
+
ResourceTypeOptions: Optional[ImageUsageResourceTypeOptionRequestList]
|
|
7981
|
+
|
|
7982
|
+
|
|
7983
|
+
ImageUsageResourceTypeRequestList = List[ImageUsageResourceTypeRequest]
|
|
7984
|
+
|
|
7985
|
+
|
|
7986
|
+
class CreateImageUsageReportRequest(ServiceRequest):
|
|
7987
|
+
ImageId: ImageId
|
|
7988
|
+
DryRun: Optional[Boolean]
|
|
7989
|
+
ResourceTypes: ImageUsageResourceTypeRequestList
|
|
7990
|
+
AccountIds: Optional[ImageUsageReportUserIdStringList]
|
|
7991
|
+
ClientToken: Optional[String]
|
|
7992
|
+
TagSpecifications: Optional[TagSpecificationList]
|
|
7993
|
+
|
|
7994
|
+
|
|
7995
|
+
class CreateImageUsageReportResult(TypedDict, total=False):
|
|
7996
|
+
ReportId: Optional[ImageUsageReportId]
|
|
7997
|
+
|
|
7998
|
+
|
|
7443
7999
|
SecurityGroupIdStringListRequest = List[SecurityGroupId]
|
|
7444
8000
|
|
|
7445
8001
|
|
|
@@ -7453,6 +8009,16 @@ class CreateInstanceConnectEndpointRequest(ServiceRequest):
|
|
|
7453
8009
|
IpAddressType: Optional[IpAddressType]
|
|
7454
8010
|
|
|
7455
8011
|
|
|
8012
|
+
class InstanceConnectEndpointDnsNames(TypedDict, total=False):
|
|
8013
|
+
DnsName: Optional[String]
|
|
8014
|
+
FipsDnsName: Optional[String]
|
|
8015
|
+
|
|
8016
|
+
|
|
8017
|
+
class InstanceConnectEndpointPublicDnsNames(TypedDict, total=False):
|
|
8018
|
+
Ipv4: Optional[InstanceConnectEndpointDnsNames]
|
|
8019
|
+
Dualstack: Optional[InstanceConnectEndpointDnsNames]
|
|
8020
|
+
|
|
8021
|
+
|
|
7456
8022
|
SecurityGroupIdSet = List[SecurityGroupId]
|
|
7457
8023
|
NetworkInterfaceIdSet = List[String]
|
|
7458
8024
|
|
|
@@ -7474,6 +8040,7 @@ class Ec2InstanceConnectEndpoint(TypedDict, total=False):
|
|
|
7474
8040
|
SecurityGroupIds: Optional[SecurityGroupIdSet]
|
|
7475
8041
|
Tags: Optional[TagList]
|
|
7476
8042
|
IpAddressType: Optional[IpAddressType]
|
|
8043
|
+
PublicDnsNames: Optional[InstanceConnectEndpointPublicDnsNames]
|
|
7477
8044
|
|
|
7478
8045
|
|
|
7479
8046
|
class CreateInstanceConnectEndpointResult(TypedDict, total=False):
|
|
@@ -7666,6 +8233,88 @@ class CreateIpamPoolResult(TypedDict, total=False):
|
|
|
7666
8233
|
IpamPool: Optional[IpamPool]
|
|
7667
8234
|
|
|
7668
8235
|
|
|
8236
|
+
class IpamPrefixListResolverRuleConditionRequest(TypedDict, total=False):
|
|
8237
|
+
Operation: IpamPrefixListResolverRuleConditionOperation
|
|
8238
|
+
IpamPoolId: Optional[String]
|
|
8239
|
+
ResourceId: Optional[String]
|
|
8240
|
+
ResourceOwner: Optional[String]
|
|
8241
|
+
ResourceRegion: Optional[String]
|
|
8242
|
+
ResourceTag: Optional[RequestIpamResourceTag]
|
|
8243
|
+
Cidr: Optional[String]
|
|
8244
|
+
|
|
8245
|
+
|
|
8246
|
+
IpamPrefixListResolverRuleConditionRequestSet = List[IpamPrefixListResolverRuleConditionRequest]
|
|
8247
|
+
|
|
8248
|
+
|
|
8249
|
+
class IpamPrefixListResolverRuleRequest(TypedDict, total=False):
|
|
8250
|
+
RuleType: IpamPrefixListResolverRuleType
|
|
8251
|
+
StaticCidr: Optional[String]
|
|
8252
|
+
IpamScopeId: Optional[IpamScopeId]
|
|
8253
|
+
ResourceType: Optional[IpamResourceType]
|
|
8254
|
+
Conditions: Optional[IpamPrefixListResolverRuleConditionRequestSet]
|
|
8255
|
+
|
|
8256
|
+
|
|
8257
|
+
IpamPrefixListResolverRuleRequestSet = List[IpamPrefixListResolverRuleRequest]
|
|
8258
|
+
|
|
8259
|
+
|
|
8260
|
+
class CreateIpamPrefixListResolverRequest(ServiceRequest):
|
|
8261
|
+
DryRun: Optional[Boolean]
|
|
8262
|
+
IpamId: IpamId
|
|
8263
|
+
Description: Optional[String]
|
|
8264
|
+
AddressFamily: AddressFamily
|
|
8265
|
+
Rules: Optional[IpamPrefixListResolverRuleRequestSet]
|
|
8266
|
+
TagSpecifications: Optional[TagSpecificationList]
|
|
8267
|
+
ClientToken: Optional[String]
|
|
8268
|
+
|
|
8269
|
+
|
|
8270
|
+
class IpamPrefixListResolver(TypedDict, total=False):
|
|
8271
|
+
OwnerId: Optional[String]
|
|
8272
|
+
IpamPrefixListResolverId: Optional[IpamPrefixListResolverId]
|
|
8273
|
+
IpamPrefixListResolverArn: Optional[ResourceArn]
|
|
8274
|
+
IpamArn: Optional[ResourceArn]
|
|
8275
|
+
IpamRegion: Optional[String]
|
|
8276
|
+
Description: Optional[String]
|
|
8277
|
+
AddressFamily: Optional[AddressFamily]
|
|
8278
|
+
State: Optional[IpamPrefixListResolverState]
|
|
8279
|
+
Tags: Optional[TagList]
|
|
8280
|
+
LastVersionCreationStatus: Optional[IpamPrefixListResolverVersionCreationStatus]
|
|
8281
|
+
LastVersionCreationStatusMessage: Optional[String]
|
|
8282
|
+
|
|
8283
|
+
|
|
8284
|
+
class CreateIpamPrefixListResolverResult(TypedDict, total=False):
|
|
8285
|
+
IpamPrefixListResolver: Optional[IpamPrefixListResolver]
|
|
8286
|
+
|
|
8287
|
+
|
|
8288
|
+
class CreateIpamPrefixListResolverTargetRequest(ServiceRequest):
|
|
8289
|
+
DryRun: Optional[Boolean]
|
|
8290
|
+
IpamPrefixListResolverId: IpamPrefixListResolverId
|
|
8291
|
+
PrefixListId: String
|
|
8292
|
+
PrefixListRegion: String
|
|
8293
|
+
DesiredVersion: Optional[BoxedLong]
|
|
8294
|
+
TrackLatestVersion: Boolean
|
|
8295
|
+
TagSpecifications: Optional[TagSpecificationList]
|
|
8296
|
+
ClientToken: Optional[String]
|
|
8297
|
+
|
|
8298
|
+
|
|
8299
|
+
class IpamPrefixListResolverTarget(TypedDict, total=False):
|
|
8300
|
+
IpamPrefixListResolverTargetId: Optional[IpamPrefixListResolverTargetId]
|
|
8301
|
+
IpamPrefixListResolverTargetArn: Optional[ResourceArn]
|
|
8302
|
+
IpamPrefixListResolverId: Optional[IpamPrefixListResolverId]
|
|
8303
|
+
OwnerId: Optional[String]
|
|
8304
|
+
PrefixListId: Optional[PrefixListResourceId]
|
|
8305
|
+
PrefixListRegion: Optional[String]
|
|
8306
|
+
DesiredVersion: Optional[BoxedLong]
|
|
8307
|
+
LastSyncedVersion: Optional[BoxedLong]
|
|
8308
|
+
TrackLatestVersion: Optional[Boolean]
|
|
8309
|
+
StateMessage: Optional[String]
|
|
8310
|
+
State: Optional[IpamPrefixListResolverTargetState]
|
|
8311
|
+
Tags: Optional[TagList]
|
|
8312
|
+
|
|
8313
|
+
|
|
8314
|
+
class CreateIpamPrefixListResolverTargetResult(TypedDict, total=False):
|
|
8315
|
+
IpamPrefixListResolverTarget: Optional[IpamPrefixListResolverTarget]
|
|
8316
|
+
|
|
8317
|
+
|
|
7669
8318
|
class CreateIpamRequest(ServiceRequest):
|
|
7670
8319
|
DryRun: Optional[Boolean]
|
|
7671
8320
|
Description: Optional[String]
|
|
@@ -7873,6 +8522,7 @@ LaunchTemplateTagSpecificationRequestList = List[LaunchTemplateTagSpecificationR
|
|
|
7873
8522
|
|
|
7874
8523
|
class LaunchTemplatePlacementRequest(TypedDict, total=False):
|
|
7875
8524
|
AvailabilityZone: Optional[String]
|
|
8525
|
+
AvailabilityZoneId: Optional[AvailabilityZoneId]
|
|
7876
8526
|
Affinity: Optional[String]
|
|
7877
8527
|
GroupName: Optional[PlacementGroupName]
|
|
7878
8528
|
HostId: Optional[DedicatedHostId]
|
|
@@ -8043,11 +8693,6 @@ class ValidationWarning(TypedDict, total=False):
|
|
|
8043
8693
|
Errors: Optional[ErrorSet]
|
|
8044
8694
|
|
|
8045
8695
|
|
|
8046
|
-
class OperatorResponse(TypedDict, total=False):
|
|
8047
|
-
Managed: Optional[Boolean]
|
|
8048
|
-
Principal: Optional[String]
|
|
8049
|
-
|
|
8050
|
-
|
|
8051
8696
|
class LaunchTemplate(TypedDict, total=False):
|
|
8052
8697
|
LaunchTemplateId: Optional[String]
|
|
8053
8698
|
LaunchTemplateName: Optional[LaunchTemplateName]
|
|
@@ -8168,6 +8813,7 @@ LaunchTemplateTagSpecificationList = List[LaunchTemplateTagSpecification]
|
|
|
8168
8813
|
|
|
8169
8814
|
class LaunchTemplatePlacement(TypedDict, total=False):
|
|
8170
8815
|
AvailabilityZone: Optional[String]
|
|
8816
|
+
AvailabilityZoneId: Optional[AvailabilityZoneId]
|
|
8171
8817
|
Affinity: Optional[String]
|
|
8172
8818
|
GroupName: Optional[String]
|
|
8173
8819
|
HostId: Optional[String]
|
|
@@ -8536,6 +9182,8 @@ class ManagedPrefixList(TypedDict, total=False):
|
|
|
8536
9182
|
Version: Optional[Long]
|
|
8537
9183
|
Tags: Optional[TagList]
|
|
8538
9184
|
OwnerId: Optional[String]
|
|
9185
|
+
IpamPrefixListResolverTargetId: Optional[String]
|
|
9186
|
+
IpamPrefixListResolverSyncEnabled: Optional[Boolean]
|
|
8539
9187
|
|
|
8540
9188
|
|
|
8541
9189
|
class CreateManagedPrefixListResult(TypedDict, total=False):
|
|
@@ -8868,6 +9516,7 @@ class NetworkInterface(TypedDict, total=False):
|
|
|
8868
9516
|
Ipv6Address: Optional[String]
|
|
8869
9517
|
Operator: Optional[OperatorResponse]
|
|
8870
9518
|
AssociatedSubnets: Optional[AssociatedSubnetList]
|
|
9519
|
+
AvailabilityZoneId: Optional[String]
|
|
8871
9520
|
|
|
8872
9521
|
|
|
8873
9522
|
class CreateNetworkInterfaceResult(TypedDict, total=False):
|
|
@@ -9132,6 +9781,7 @@ class RouteTableAssociation(TypedDict, total=False):
|
|
|
9132
9781
|
RouteTableId: Optional[String]
|
|
9133
9782
|
SubnetId: Optional[String]
|
|
9134
9783
|
GatewayId: Optional[String]
|
|
9784
|
+
PublicIpv4Pool: Optional[String]
|
|
9135
9785
|
AssociationState: Optional[RouteTableAssociationState]
|
|
9136
9786
|
|
|
9137
9787
|
|
|
@@ -10007,7 +10657,8 @@ class CreateVolumePermissionModifications(TypedDict, total=False):
|
|
|
10007
10657
|
|
|
10008
10658
|
|
|
10009
10659
|
class CreateVolumeRequest(ServiceRequest):
|
|
10010
|
-
AvailabilityZone: AvailabilityZoneName
|
|
10660
|
+
AvailabilityZone: Optional[AvailabilityZoneName]
|
|
10661
|
+
AvailabilityZoneId: Optional[AvailabilityZoneId]
|
|
10011
10662
|
Encrypted: Optional[Boolean]
|
|
10012
10663
|
Iops: Optional[Integer]
|
|
10013
10664
|
KmsKeyId: Optional[KmsKeyId]
|
|
@@ -10210,6 +10861,7 @@ class ServiceConfiguration(TypedDict, total=False):
|
|
|
10210
10861
|
ServiceId: Optional[String]
|
|
10211
10862
|
ServiceName: Optional[String]
|
|
10212
10863
|
ServiceState: Optional[ServiceState]
|
|
10864
|
+
AvailabilityZoneIds: Optional[ValueStringList]
|
|
10213
10865
|
AvailabilityZones: Optional[ValueStringList]
|
|
10214
10866
|
AcceptanceRequired: Optional[Boolean]
|
|
10215
10867
|
ManagesVpcEndpoints: Optional[Boolean]
|
|
@@ -10532,6 +11184,14 @@ class CreateVpnGatewayResult(TypedDict, total=False):
|
|
|
10532
11184
|
VpnGateway: Optional[VpnGateway]
|
|
10533
11185
|
|
|
10534
11186
|
|
|
11187
|
+
class CreationDateCondition(TypedDict, total=False):
|
|
11188
|
+
MaximumDaysSinceCreated: Optional[MaximumDaysSinceCreatedValue]
|
|
11189
|
+
|
|
11190
|
+
|
|
11191
|
+
class CreationDateConditionRequest(TypedDict, total=False):
|
|
11192
|
+
MaximumDaysSinceCreated: Optional[MaximumDaysSinceCreatedValue]
|
|
11193
|
+
|
|
11194
|
+
|
|
10535
11195
|
CustomerGatewayIdStringList = List[CustomerGatewayId]
|
|
10536
11196
|
CustomerGatewayList = List[CustomerGateway]
|
|
10537
11197
|
|
|
@@ -10585,6 +11245,15 @@ class DeclarativePoliciesReport(TypedDict, total=False):
|
|
|
10585
11245
|
DeclarativePoliciesReportList = List[DeclarativePoliciesReport]
|
|
10586
11246
|
|
|
10587
11247
|
|
|
11248
|
+
class DeleteCapacityManagerDataExportRequest(ServiceRequest):
|
|
11249
|
+
CapacityManagerDataExportId: CapacityManagerDataExportId
|
|
11250
|
+
DryRun: Optional[Boolean]
|
|
11251
|
+
|
|
11252
|
+
|
|
11253
|
+
class DeleteCapacityManagerDataExportResult(TypedDict, total=False):
|
|
11254
|
+
CapacityManagerDataExportId: Optional[CapacityManagerDataExportId]
|
|
11255
|
+
|
|
11256
|
+
|
|
10588
11257
|
class DeleteCarrierGatewayRequest(ServiceRequest):
|
|
10589
11258
|
CarrierGatewayId: CarrierGatewayId
|
|
10590
11259
|
DryRun: Optional[Boolean]
|
|
@@ -10707,6 +11376,15 @@ class DeleteFpgaImageResult(TypedDict, total=False):
|
|
|
10707
11376
|
Return: Optional[Boolean]
|
|
10708
11377
|
|
|
10709
11378
|
|
|
11379
|
+
class DeleteImageUsageReportRequest(ServiceRequest):
|
|
11380
|
+
ReportId: ImageUsageReportId
|
|
11381
|
+
DryRun: Optional[Boolean]
|
|
11382
|
+
|
|
11383
|
+
|
|
11384
|
+
class DeleteImageUsageReportResult(TypedDict, total=False):
|
|
11385
|
+
Return: Optional[Boolean]
|
|
11386
|
+
|
|
11387
|
+
|
|
10710
11388
|
class DeleteInstanceConnectEndpointRequest(ServiceRequest):
|
|
10711
11389
|
DryRun: Optional[Boolean]
|
|
10712
11390
|
InstanceConnectEndpointId: InstanceConnectEndpointId
|
|
@@ -10755,6 +11433,24 @@ class DeleteIpamPoolResult(TypedDict, total=False):
|
|
|
10755
11433
|
IpamPool: Optional[IpamPool]
|
|
10756
11434
|
|
|
10757
11435
|
|
|
11436
|
+
class DeleteIpamPrefixListResolverRequest(ServiceRequest):
|
|
11437
|
+
DryRun: Optional[Boolean]
|
|
11438
|
+
IpamPrefixListResolverId: IpamPrefixListResolverId
|
|
11439
|
+
|
|
11440
|
+
|
|
11441
|
+
class DeleteIpamPrefixListResolverResult(TypedDict, total=False):
|
|
11442
|
+
IpamPrefixListResolver: Optional[IpamPrefixListResolver]
|
|
11443
|
+
|
|
11444
|
+
|
|
11445
|
+
class DeleteIpamPrefixListResolverTargetRequest(ServiceRequest):
|
|
11446
|
+
DryRun: Optional[Boolean]
|
|
11447
|
+
IpamPrefixListResolverTargetId: IpamPrefixListResolverTargetId
|
|
11448
|
+
|
|
11449
|
+
|
|
11450
|
+
class DeleteIpamPrefixListResolverTargetResult(TypedDict, total=False):
|
|
11451
|
+
IpamPrefixListResolverTarget: Optional[IpamPrefixListResolverTarget]
|
|
11452
|
+
|
|
11453
|
+
|
|
10758
11454
|
class DeleteIpamRequest(ServiceRequest):
|
|
10759
11455
|
DryRun: Optional[Boolean]
|
|
10760
11456
|
IpamId: IpamId
|
|
@@ -11376,6 +12072,14 @@ class DeleteVpnGatewayRequest(ServiceRequest):
|
|
|
11376
12072
|
DryRun: Optional[Boolean]
|
|
11377
12073
|
|
|
11378
12074
|
|
|
12075
|
+
class DeprecationTimeCondition(TypedDict, total=False):
|
|
12076
|
+
MaximumDaysSinceDeprecated: Optional[MaximumDaysSinceDeprecatedValue]
|
|
12077
|
+
|
|
12078
|
+
|
|
12079
|
+
class DeprecationTimeConditionRequest(TypedDict, total=False):
|
|
12080
|
+
MaximumDaysSinceDeprecated: Optional[MaximumDaysSinceDeprecatedValue]
|
|
12081
|
+
|
|
12082
|
+
|
|
11379
12083
|
class DeprovisionByoipCidrRequest(ServiceRequest):
|
|
11380
12084
|
Cidr: String
|
|
11381
12085
|
DryRun: Optional[Boolean]
|
|
@@ -11704,6 +12408,19 @@ class DescribeCapacityBlocksResult(TypedDict, total=False):
|
|
|
11704
12408
|
NextToken: Optional[String]
|
|
11705
12409
|
|
|
11706
12410
|
|
|
12411
|
+
class DescribeCapacityManagerDataExportsRequest(ServiceRequest):
|
|
12412
|
+
CapacityManagerDataExportIds: Optional[CapacityManagerDataExportIdSet]
|
|
12413
|
+
MaxResults: Optional[DescribeCapacityManagerDataExportsRequestMaxResults]
|
|
12414
|
+
NextToken: Optional[String]
|
|
12415
|
+
DryRun: Optional[Boolean]
|
|
12416
|
+
Filters: Optional[FilterList]
|
|
12417
|
+
|
|
12418
|
+
|
|
12419
|
+
class DescribeCapacityManagerDataExportsResult(TypedDict, total=False):
|
|
12420
|
+
CapacityManagerDataExports: Optional[CapacityManagerDataExportResponseSet]
|
|
12421
|
+
NextToken: Optional[String]
|
|
12422
|
+
|
|
12423
|
+
|
|
11707
12424
|
class DescribeCapacityReservationBillingRequestsRequest(ServiceRequest):
|
|
11708
12425
|
CapacityReservationIds: Optional[CapacityReservationIdSet]
|
|
11709
12426
|
Role: CallerRole
|
|
@@ -11731,6 +12448,19 @@ class DescribeCapacityReservationFleetsResult(TypedDict, total=False):
|
|
|
11731
12448
|
NextToken: Optional[String]
|
|
11732
12449
|
|
|
11733
12450
|
|
|
12451
|
+
class DescribeCapacityReservationTopologyRequest(ServiceRequest):
|
|
12452
|
+
DryRun: Optional[Boolean]
|
|
12453
|
+
NextToken: Optional[String]
|
|
12454
|
+
MaxResults: Optional[DescribeCapacityReservationTopologyMaxResults]
|
|
12455
|
+
CapacityReservationIds: Optional[CapacityReservationIdSet]
|
|
12456
|
+
Filters: Optional[FilterList]
|
|
12457
|
+
|
|
12458
|
+
|
|
12459
|
+
class DescribeCapacityReservationTopologyResult(TypedDict, total=False):
|
|
12460
|
+
NextToken: Optional[String]
|
|
12461
|
+
CapacityReservations: Optional[CapacityReservationTopologySet]
|
|
12462
|
+
|
|
12463
|
+
|
|
11734
12464
|
class DescribeCapacityReservationsRequest(ServiceRequest):
|
|
11735
12465
|
CapacityReservationIds: Optional[CapacityReservationIdSet]
|
|
11736
12466
|
NextToken: Optional[String]
|
|
@@ -12539,6 +13269,127 @@ class DescribeImageAttributeRequest(ServiceRequest):
|
|
|
12539
13269
|
DryRun: Optional[Boolean]
|
|
12540
13270
|
|
|
12541
13271
|
|
|
13272
|
+
DescribeImageReferencesImageIdStringList = List[ImageId]
|
|
13273
|
+
ResourceTypeOptionValuesList = List[ResourceTypeOptionValue]
|
|
13274
|
+
|
|
13275
|
+
|
|
13276
|
+
class ResourceTypeOption(TypedDict, total=False):
|
|
13277
|
+
OptionName: Optional[ImageReferenceOptionName]
|
|
13278
|
+
OptionValues: Optional[ResourceTypeOptionValuesList]
|
|
13279
|
+
|
|
13280
|
+
|
|
13281
|
+
ResourceTypeOptionList = List[ResourceTypeOption]
|
|
13282
|
+
|
|
13283
|
+
|
|
13284
|
+
class ResourceTypeRequest(TypedDict, total=False):
|
|
13285
|
+
ResourceType: Optional[ImageReferenceResourceType]
|
|
13286
|
+
ResourceTypeOptions: Optional[ResourceTypeOptionList]
|
|
13287
|
+
|
|
13288
|
+
|
|
13289
|
+
ResourceTypeRequestList = List[ResourceTypeRequest]
|
|
13290
|
+
|
|
13291
|
+
|
|
13292
|
+
class DescribeImageReferencesRequest(ServiceRequest):
|
|
13293
|
+
ImageIds: DescribeImageReferencesImageIdStringList
|
|
13294
|
+
IncludeAllResourceTypes: Optional[Boolean]
|
|
13295
|
+
ResourceTypes: Optional[ResourceTypeRequestList]
|
|
13296
|
+
NextToken: Optional[String]
|
|
13297
|
+
DryRun: Optional[Boolean]
|
|
13298
|
+
MaxResults: Optional[DescribeImageReferencesMaxResults]
|
|
13299
|
+
|
|
13300
|
+
|
|
13301
|
+
class ImageReference(TypedDict, total=False):
|
|
13302
|
+
ImageId: Optional[ImageId]
|
|
13303
|
+
ResourceType: Optional[ImageReferenceResourceType]
|
|
13304
|
+
Arn: Optional[String]
|
|
13305
|
+
|
|
13306
|
+
|
|
13307
|
+
ImageReferenceList = List[ImageReference]
|
|
13308
|
+
|
|
13309
|
+
|
|
13310
|
+
class DescribeImageReferencesResult(TypedDict, total=False):
|
|
13311
|
+
NextToken: Optional[String]
|
|
13312
|
+
ImageReferences: Optional[ImageReferenceList]
|
|
13313
|
+
|
|
13314
|
+
|
|
13315
|
+
ImageUsageReportIdStringList = List[ImageUsageReportId]
|
|
13316
|
+
DescribeImageUsageReportsImageIdStringList = List[ImageId]
|
|
13317
|
+
|
|
13318
|
+
|
|
13319
|
+
class DescribeImageUsageReportEntriesRequest(ServiceRequest):
|
|
13320
|
+
ImageIds: Optional[DescribeImageUsageReportsImageIdStringList]
|
|
13321
|
+
ReportIds: Optional[ImageUsageReportIdStringList]
|
|
13322
|
+
NextToken: Optional[String]
|
|
13323
|
+
Filters: Optional[FilterList]
|
|
13324
|
+
DryRun: Optional[Boolean]
|
|
13325
|
+
MaxResults: Optional[DescribeImageUsageReportEntriesMaxResults]
|
|
13326
|
+
|
|
13327
|
+
|
|
13328
|
+
class ImageUsageReportEntry(TypedDict, total=False):
|
|
13329
|
+
ResourceType: Optional[ImageUsageResourceTypeName]
|
|
13330
|
+
ReportId: Optional[ImageUsageReportId]
|
|
13331
|
+
UsageCount: Optional[Long]
|
|
13332
|
+
AccountId: Optional[String]
|
|
13333
|
+
ImageId: Optional[ImageId]
|
|
13334
|
+
ReportCreationTime: Optional[MillisecondDateTime]
|
|
13335
|
+
|
|
13336
|
+
|
|
13337
|
+
ImageUsageReportEntryList = List[ImageUsageReportEntry]
|
|
13338
|
+
|
|
13339
|
+
|
|
13340
|
+
class DescribeImageUsageReportEntriesResult(TypedDict, total=False):
|
|
13341
|
+
NextToken: Optional[String]
|
|
13342
|
+
ImageUsageReportEntries: Optional[ImageUsageReportEntryList]
|
|
13343
|
+
|
|
13344
|
+
|
|
13345
|
+
class DescribeImageUsageReportsRequest(ServiceRequest):
|
|
13346
|
+
ImageIds: Optional[DescribeImageUsageReportsImageIdStringList]
|
|
13347
|
+
ReportIds: Optional[ImageUsageReportIdStringList]
|
|
13348
|
+
NextToken: Optional[String]
|
|
13349
|
+
Filters: Optional[FilterList]
|
|
13350
|
+
DryRun: Optional[Boolean]
|
|
13351
|
+
MaxResults: Optional[DescribeImageUsageReportsMaxResults]
|
|
13352
|
+
|
|
13353
|
+
|
|
13354
|
+
UserIdList = List[String]
|
|
13355
|
+
|
|
13356
|
+
|
|
13357
|
+
class ImageUsageResourceTypeOption(TypedDict, total=False):
|
|
13358
|
+
OptionName: Optional[String]
|
|
13359
|
+
OptionValues: Optional[ImageUsageResourceTypeOptionValuesList]
|
|
13360
|
+
|
|
13361
|
+
|
|
13362
|
+
ImageUsageResourceTypeOptionList = List[ImageUsageResourceTypeOption]
|
|
13363
|
+
|
|
13364
|
+
|
|
13365
|
+
class ImageUsageResourceType(TypedDict, total=False):
|
|
13366
|
+
ResourceType: Optional[ImageUsageResourceTypeName]
|
|
13367
|
+
ResourceTypeOptions: Optional[ImageUsageResourceTypeOptionList]
|
|
13368
|
+
|
|
13369
|
+
|
|
13370
|
+
ImageUsageResourceTypeList = List[ImageUsageResourceType]
|
|
13371
|
+
|
|
13372
|
+
|
|
13373
|
+
class ImageUsageReport(TypedDict, total=False):
|
|
13374
|
+
ImageId: Optional[ImageId]
|
|
13375
|
+
ReportId: Optional[ImageUsageReportId]
|
|
13376
|
+
ResourceTypes: Optional[ImageUsageResourceTypeList]
|
|
13377
|
+
AccountIds: Optional[UserIdList]
|
|
13378
|
+
State: Optional[ImageUsageReportState]
|
|
13379
|
+
StateReason: Optional[ImageUsageReportStateReason]
|
|
13380
|
+
CreationTime: Optional[MillisecondDateTime]
|
|
13381
|
+
ExpirationTime: Optional[MillisecondDateTime]
|
|
13382
|
+
Tags: Optional[TagList]
|
|
13383
|
+
|
|
13384
|
+
|
|
13385
|
+
ImageUsageReportList = List[ImageUsageReport]
|
|
13386
|
+
|
|
13387
|
+
|
|
13388
|
+
class DescribeImageUsageReportsResult(TypedDict, total=False):
|
|
13389
|
+
NextToken: Optional[String]
|
|
13390
|
+
ImageUsageReports: Optional[ImageUsageReportList]
|
|
13391
|
+
|
|
13392
|
+
|
|
12542
13393
|
ImageIdStringList = List[ImageId]
|
|
12543
13394
|
ExecutableByStringList = List[String]
|
|
12544
13395
|
|
|
@@ -12877,6 +13728,7 @@ InstanceStatusEventList = List[InstanceStatusEvent]
|
|
|
12877
13728
|
|
|
12878
13729
|
class InstanceStatus(TypedDict, total=False):
|
|
12879
13730
|
AvailabilityZone: Optional[String]
|
|
13731
|
+
AvailabilityZoneId: Optional[AvailabilityZoneId]
|
|
12880
13732
|
OutpostArn: Optional[String]
|
|
12881
13733
|
Operator: Optional[OperatorResponse]
|
|
12882
13734
|
Events: Optional[InstanceStatusEventList]
|
|
@@ -13126,6 +13978,8 @@ class EbsInfo(TypedDict, total=False):
|
|
|
13126
13978
|
EncryptionSupport: Optional[EbsEncryptionSupport]
|
|
13127
13979
|
EbsOptimizedInfo: Optional[EbsOptimizedInfo]
|
|
13128
13980
|
NvmeSupport: Optional[EbsNvmeSupport]
|
|
13981
|
+
MaximumEbsAttachments: Optional[MaximumEbsAttachments]
|
|
13982
|
+
AttachmentLimitType: Optional[AttachmentLimitType]
|
|
13129
13983
|
|
|
13130
13984
|
|
|
13131
13985
|
DiskSize = int
|
|
@@ -13533,6 +14387,39 @@ class DescribeIpamPoolsResult(TypedDict, total=False):
|
|
|
13533
14387
|
IpamPools: Optional[IpamPoolSet]
|
|
13534
14388
|
|
|
13535
14389
|
|
|
14390
|
+
class DescribeIpamPrefixListResolverTargetsRequest(ServiceRequest):
|
|
14391
|
+
DryRun: Optional[Boolean]
|
|
14392
|
+
Filters: Optional[FilterList]
|
|
14393
|
+
MaxResults: Optional[IpamMaxResults]
|
|
14394
|
+
NextToken: Optional[NextToken]
|
|
14395
|
+
IpamPrefixListResolverTargetIds: Optional[ValueStringList]
|
|
14396
|
+
IpamPrefixListResolverId: Optional[IpamPrefixListResolverId]
|
|
14397
|
+
|
|
14398
|
+
|
|
14399
|
+
IpamPrefixListResolverTargetSet = List[IpamPrefixListResolverTarget]
|
|
14400
|
+
|
|
14401
|
+
|
|
14402
|
+
class DescribeIpamPrefixListResolverTargetsResult(TypedDict, total=False):
|
|
14403
|
+
NextToken: Optional[NextToken]
|
|
14404
|
+
IpamPrefixListResolverTargets: Optional[IpamPrefixListResolverTargetSet]
|
|
14405
|
+
|
|
14406
|
+
|
|
14407
|
+
class DescribeIpamPrefixListResolversRequest(ServiceRequest):
|
|
14408
|
+
DryRun: Optional[Boolean]
|
|
14409
|
+
Filters: Optional[FilterList]
|
|
14410
|
+
MaxResults: Optional[IpamMaxResults]
|
|
14411
|
+
NextToken: Optional[NextToken]
|
|
14412
|
+
IpamPrefixListResolverIds: Optional[ValueStringList]
|
|
14413
|
+
|
|
14414
|
+
|
|
14415
|
+
IpamPrefixListResolverSet = List[IpamPrefixListResolver]
|
|
14416
|
+
|
|
14417
|
+
|
|
14418
|
+
class DescribeIpamPrefixListResolversResult(TypedDict, total=False):
|
|
14419
|
+
NextToken: Optional[NextToken]
|
|
14420
|
+
IpamPrefixListResolvers: Optional[IpamPrefixListResolverSet]
|
|
14421
|
+
|
|
14422
|
+
|
|
13536
14423
|
class DescribeIpamResourceDiscoveriesRequest(ServiceRequest):
|
|
13537
14424
|
DryRun: Optional[Boolean]
|
|
13538
14425
|
IpamResourceDiscoveryIds: Optional[ValueStringList]
|
|
@@ -15149,6 +16036,7 @@ class SpotInstanceRequest(TypedDict, total=False):
|
|
|
15149
16036
|
LaunchGroup: Optional[String]
|
|
15150
16037
|
LaunchSpecification: Optional[LaunchSpecification]
|
|
15151
16038
|
LaunchedAvailabilityZone: Optional[String]
|
|
16039
|
+
LaunchedAvailabilityZoneId: Optional[String]
|
|
15152
16040
|
ProductDescription: Optional[RIProductDescription]
|
|
15153
16041
|
SpotInstanceRequestId: Optional[String]
|
|
15154
16042
|
SpotPrice: Optional[String]
|
|
@@ -15174,6 +16062,7 @@ InstanceTypeList = List[InstanceType]
|
|
|
15174
16062
|
|
|
15175
16063
|
|
|
15176
16064
|
class DescribeSpotPriceHistoryRequest(ServiceRequest):
|
|
16065
|
+
AvailabilityZoneId: Optional[AvailabilityZoneId]
|
|
15177
16066
|
DryRun: Optional[Boolean]
|
|
15178
16067
|
StartTime: Optional[DateTime]
|
|
15179
16068
|
EndTime: Optional[DateTime]
|
|
@@ -15187,6 +16076,7 @@ class DescribeSpotPriceHistoryRequest(ServiceRequest):
|
|
|
15187
16076
|
|
|
15188
16077
|
class SpotPrice(TypedDict, total=False):
|
|
15189
16078
|
AvailabilityZone: Optional[String]
|
|
16079
|
+
AvailabilityZoneId: Optional[String]
|
|
15190
16080
|
InstanceType: Optional[InstanceType]
|
|
15191
16081
|
ProductDescription: Optional[RIProductDescription]
|
|
15192
16082
|
SpotPrice: Optional[String]
|
|
@@ -15874,45 +16764,6 @@ class DescribeVolumesRequest(ServiceRequest):
|
|
|
15874
16764
|
MaxResults: Optional[Integer]
|
|
15875
16765
|
|
|
15876
16766
|
|
|
15877
|
-
class VolumeAttachment(TypedDict, total=False):
|
|
15878
|
-
DeleteOnTermination: Optional[Boolean]
|
|
15879
|
-
AssociatedResource: Optional[String]
|
|
15880
|
-
InstanceOwningService: Optional[String]
|
|
15881
|
-
VolumeId: Optional[String]
|
|
15882
|
-
InstanceId: Optional[String]
|
|
15883
|
-
Device: Optional[String]
|
|
15884
|
-
State: Optional[VolumeAttachmentState]
|
|
15885
|
-
AttachTime: Optional[DateTime]
|
|
15886
|
-
|
|
15887
|
-
|
|
15888
|
-
VolumeAttachmentList = List[VolumeAttachment]
|
|
15889
|
-
|
|
15890
|
-
|
|
15891
|
-
class Volume(TypedDict, total=False):
|
|
15892
|
-
OutpostArn: Optional[String]
|
|
15893
|
-
Iops: Optional[Integer]
|
|
15894
|
-
Tags: Optional[TagList]
|
|
15895
|
-
VolumeType: Optional[VolumeType]
|
|
15896
|
-
FastRestored: Optional[Boolean]
|
|
15897
|
-
MultiAttachEnabled: Optional[Boolean]
|
|
15898
|
-
Throughput: Optional[Integer]
|
|
15899
|
-
SseType: Optional[SSEType]
|
|
15900
|
-
Operator: Optional[OperatorResponse]
|
|
15901
|
-
VolumeInitializationRate: Optional[Integer]
|
|
15902
|
-
VolumeId: Optional[String]
|
|
15903
|
-
Size: Optional[Integer]
|
|
15904
|
-
SnapshotId: Optional[String]
|
|
15905
|
-
AvailabilityZone: Optional[String]
|
|
15906
|
-
State: Optional[VolumeState]
|
|
15907
|
-
CreateTime: Optional[DateTime]
|
|
15908
|
-
Attachments: Optional[VolumeAttachmentList]
|
|
15909
|
-
Encrypted: Optional[Boolean]
|
|
15910
|
-
KmsKeyId: Optional[String]
|
|
15911
|
-
|
|
15912
|
-
|
|
15913
|
-
VolumeList = List[Volume]
|
|
15914
|
-
|
|
15915
|
-
|
|
15916
16767
|
class DescribeVolumesResult(TypedDict, total=False):
|
|
15917
16768
|
NextToken: Optional[String]
|
|
15918
16769
|
Volumes: Optional[VolumeList]
|
|
@@ -16126,6 +16977,7 @@ class ServiceDetail(TypedDict, total=False):
|
|
|
16126
16977
|
ServiceId: Optional[String]
|
|
16127
16978
|
ServiceType: Optional[ServiceTypeDetailSet]
|
|
16128
16979
|
ServiceRegion: Optional[String]
|
|
16980
|
+
AvailabilityZoneIds: Optional[ValueStringList]
|
|
16129
16981
|
AvailabilityZones: Optional[ValueStringList]
|
|
16130
16982
|
Owner: Optional[String]
|
|
16131
16983
|
BaseEndpointDnsNames: Optional[ValueStringList]
|
|
@@ -16315,6 +17167,16 @@ class DisableAwsNetworkPerformanceMetricSubscriptionResult(TypedDict, total=Fals
|
|
|
16315
17167
|
Output: Optional[Boolean]
|
|
16316
17168
|
|
|
16317
17169
|
|
|
17170
|
+
class DisableCapacityManagerRequest(ServiceRequest):
|
|
17171
|
+
DryRun: Optional[Boolean]
|
|
17172
|
+
ClientToken: Optional[String]
|
|
17173
|
+
|
|
17174
|
+
|
|
17175
|
+
class DisableCapacityManagerResult(TypedDict, total=False):
|
|
17176
|
+
CapacityManagerStatus: Optional[CapacityManagerStatus]
|
|
17177
|
+
OrganizationsAccess: Optional[Boolean]
|
|
17178
|
+
|
|
17179
|
+
|
|
16318
17180
|
class DisableEbsEncryptionByDefaultRequest(ServiceRequest):
|
|
16319
17181
|
DryRun: Optional[Boolean]
|
|
16320
17182
|
|
|
@@ -16761,6 +17623,17 @@ class EnableAwsNetworkPerformanceMetricSubscriptionResult(TypedDict, total=False
|
|
|
16761
17623
|
Output: Optional[Boolean]
|
|
16762
17624
|
|
|
16763
17625
|
|
|
17626
|
+
class EnableCapacityManagerRequest(ServiceRequest):
|
|
17627
|
+
OrganizationsAccess: Optional[Boolean]
|
|
17628
|
+
DryRun: Optional[Boolean]
|
|
17629
|
+
ClientToken: Optional[String]
|
|
17630
|
+
|
|
17631
|
+
|
|
17632
|
+
class EnableCapacityManagerResult(TypedDict, total=False):
|
|
17633
|
+
CapacityManagerStatus: Optional[CapacityManagerStatus]
|
|
17634
|
+
OrganizationsAccess: Optional[Boolean]
|
|
17635
|
+
|
|
17636
|
+
|
|
16764
17637
|
class EnableEbsEncryptionByDefaultRequest(ServiceRequest):
|
|
16765
17638
|
DryRun: Optional[Boolean]
|
|
16766
17639
|
|
|
@@ -17093,11 +17966,17 @@ class GetAllowedImagesSettingsRequest(ServiceRequest):
|
|
|
17093
17966
|
DryRun: Optional[Boolean]
|
|
17094
17967
|
|
|
17095
17968
|
|
|
17969
|
+
ImageNameList = List[ImageName]
|
|
17970
|
+
MarketplaceProductCodeList = List[MarketplaceProductCode]
|
|
17096
17971
|
ImageProviderList = List[ImageProvider]
|
|
17097
17972
|
|
|
17098
17973
|
|
|
17099
17974
|
class ImageCriterion(TypedDict, total=False):
|
|
17100
17975
|
ImageProviders: Optional[ImageProviderList]
|
|
17976
|
+
MarketplaceProductCodes: Optional[MarketplaceProductCodeList]
|
|
17977
|
+
ImageNames: Optional[ImageNameList]
|
|
17978
|
+
DeprecationTimeCondition: Optional[DeprecationTimeCondition]
|
|
17979
|
+
CreationDateCondition: Optional[CreationDateCondition]
|
|
17101
17980
|
|
|
17102
17981
|
|
|
17103
17982
|
ImageCriterionList = List[ImageCriterion]
|
|
@@ -17152,6 +18031,77 @@ class GetAwsNetworkPerformanceDataResult(TypedDict, total=False):
|
|
|
17152
18031
|
NextToken: Optional[String]
|
|
17153
18032
|
|
|
17154
18033
|
|
|
18034
|
+
class GetCapacityManagerAttributesRequest(ServiceRequest):
|
|
18035
|
+
DryRun: Optional[Boolean]
|
|
18036
|
+
|
|
18037
|
+
|
|
18038
|
+
class GetCapacityManagerAttributesResult(TypedDict, total=False):
|
|
18039
|
+
CapacityManagerStatus: Optional[CapacityManagerStatus]
|
|
18040
|
+
OrganizationsAccess: Optional[Boolean]
|
|
18041
|
+
DataExportCount: Optional[Integer]
|
|
18042
|
+
IngestionStatus: Optional[IngestionStatus]
|
|
18043
|
+
IngestionStatusMessage: Optional[String]
|
|
18044
|
+
EarliestDatapointTimestamp: Optional[MillisecondDateTime]
|
|
18045
|
+
LatestDatapointTimestamp: Optional[MillisecondDateTime]
|
|
18046
|
+
|
|
18047
|
+
|
|
18048
|
+
GroupBySet = List[GroupBy]
|
|
18049
|
+
MetricSet = List[Metric]
|
|
18050
|
+
|
|
18051
|
+
|
|
18052
|
+
class GetCapacityManagerMetricDataRequest(ServiceRequest):
|
|
18053
|
+
MetricNames: MetricSet
|
|
18054
|
+
StartTime: MillisecondDateTime
|
|
18055
|
+
EndTime: MillisecondDateTime
|
|
18056
|
+
Period: Period
|
|
18057
|
+
GroupBy: Optional[GroupBySet]
|
|
18058
|
+
FilterBy: Optional[CapacityManagerConditionSet]
|
|
18059
|
+
MaxResults: Optional[MaxResults]
|
|
18060
|
+
NextToken: Optional[NextToken]
|
|
18061
|
+
DryRun: Optional[Boolean]
|
|
18062
|
+
|
|
18063
|
+
|
|
18064
|
+
class MetricValue(TypedDict, total=False):
|
|
18065
|
+
Metric: Optional[Metric]
|
|
18066
|
+
Value: Optional[Double]
|
|
18067
|
+
|
|
18068
|
+
|
|
18069
|
+
MetricValueSet = List[MetricValue]
|
|
18070
|
+
|
|
18071
|
+
|
|
18072
|
+
class MetricDataResult(TypedDict, total=False):
|
|
18073
|
+
Dimension: Optional[CapacityManagerDimension]
|
|
18074
|
+
Timestamp: Optional[MillisecondDateTime]
|
|
18075
|
+
MetricValues: Optional[MetricValueSet]
|
|
18076
|
+
|
|
18077
|
+
|
|
18078
|
+
MetricDataResultSet = List[MetricDataResult]
|
|
18079
|
+
|
|
18080
|
+
|
|
18081
|
+
class GetCapacityManagerMetricDataResult(TypedDict, total=False):
|
|
18082
|
+
MetricDataResults: Optional[MetricDataResultSet]
|
|
18083
|
+
NextToken: Optional[NextToken]
|
|
18084
|
+
|
|
18085
|
+
|
|
18086
|
+
class GetCapacityManagerMetricDimensionsRequest(ServiceRequest):
|
|
18087
|
+
GroupBy: GroupBySet
|
|
18088
|
+
FilterBy: Optional[CapacityManagerConditionSet]
|
|
18089
|
+
StartTime: MillisecondDateTime
|
|
18090
|
+
EndTime: MillisecondDateTime
|
|
18091
|
+
MetricNames: MetricSet
|
|
18092
|
+
MaxResults: Optional[MaxResults]
|
|
18093
|
+
NextToken: Optional[NextToken]
|
|
18094
|
+
DryRun: Optional[Boolean]
|
|
18095
|
+
|
|
18096
|
+
|
|
18097
|
+
MetricDimensionResultSet = List[CapacityManagerDimension]
|
|
18098
|
+
|
|
18099
|
+
|
|
18100
|
+
class GetCapacityManagerMetricDimensionsResult(TypedDict, total=False):
|
|
18101
|
+
MetricDimensionResults: Optional[MetricDimensionResultSet]
|
|
18102
|
+
NextToken: Optional[NextToken]
|
|
18103
|
+
|
|
18104
|
+
|
|
17155
18105
|
class GetCapacityReservationUsageRequest(ServiceRequest):
|
|
17156
18106
|
CapacityReservationId: CapacityReservationId
|
|
17157
18107
|
NextToken: Optional[String]
|
|
@@ -17585,6 +18535,87 @@ class GetIpamPoolCidrsResult(TypedDict, total=False):
|
|
|
17585
18535
|
NextToken: Optional[NextToken]
|
|
17586
18536
|
|
|
17587
18537
|
|
|
18538
|
+
class GetIpamPrefixListResolverRulesRequest(ServiceRequest):
|
|
18539
|
+
DryRun: Optional[Boolean]
|
|
18540
|
+
IpamPrefixListResolverId: IpamPrefixListResolverId
|
|
18541
|
+
Filters: Optional[FilterList]
|
|
18542
|
+
MaxResults: Optional[IpamMaxResults]
|
|
18543
|
+
NextToken: Optional[NextToken]
|
|
18544
|
+
|
|
18545
|
+
|
|
18546
|
+
class IpamPrefixListResolverRuleCondition(TypedDict, total=False):
|
|
18547
|
+
Operation: Optional[IpamPrefixListResolverRuleConditionOperation]
|
|
18548
|
+
IpamPoolId: Optional[String]
|
|
18549
|
+
ResourceId: Optional[String]
|
|
18550
|
+
ResourceOwner: Optional[String]
|
|
18551
|
+
ResourceRegion: Optional[String]
|
|
18552
|
+
ResourceTag: Optional[IpamResourceTag]
|
|
18553
|
+
Cidr: Optional[String]
|
|
18554
|
+
|
|
18555
|
+
|
|
18556
|
+
IpamPrefixListResolverRuleConditionSet = List[IpamPrefixListResolverRuleCondition]
|
|
18557
|
+
|
|
18558
|
+
|
|
18559
|
+
class IpamPrefixListResolverRule(TypedDict, total=False):
|
|
18560
|
+
RuleType: Optional[IpamPrefixListResolverRuleType]
|
|
18561
|
+
StaticCidr: Optional[String]
|
|
18562
|
+
IpamScopeId: Optional[IpamScopeId]
|
|
18563
|
+
ResourceType: Optional[IpamResourceType]
|
|
18564
|
+
Conditions: Optional[IpamPrefixListResolverRuleConditionSet]
|
|
18565
|
+
|
|
18566
|
+
|
|
18567
|
+
IpamPrefixListResolverRuleSet = List[IpamPrefixListResolverRule]
|
|
18568
|
+
|
|
18569
|
+
|
|
18570
|
+
class GetIpamPrefixListResolverRulesResult(TypedDict, total=False):
|
|
18571
|
+
Rules: Optional[IpamPrefixListResolverRuleSet]
|
|
18572
|
+
NextToken: Optional[NextToken]
|
|
18573
|
+
|
|
18574
|
+
|
|
18575
|
+
class GetIpamPrefixListResolverVersionEntriesRequest(ServiceRequest):
|
|
18576
|
+
DryRun: Optional[Boolean]
|
|
18577
|
+
IpamPrefixListResolverId: IpamPrefixListResolverId
|
|
18578
|
+
IpamPrefixListResolverVersion: Long
|
|
18579
|
+
MaxResults: Optional[IpamMaxResults]
|
|
18580
|
+
NextToken: Optional[NextToken]
|
|
18581
|
+
|
|
18582
|
+
|
|
18583
|
+
class IpamPrefixListResolverVersionEntry(TypedDict, total=False):
|
|
18584
|
+
Cidr: Optional[String]
|
|
18585
|
+
|
|
18586
|
+
|
|
18587
|
+
IpamPrefixListResolverVersionEntrySet = List[IpamPrefixListResolverVersionEntry]
|
|
18588
|
+
|
|
18589
|
+
|
|
18590
|
+
class GetIpamPrefixListResolverVersionEntriesResult(TypedDict, total=False):
|
|
18591
|
+
Entries: Optional[IpamPrefixListResolverVersionEntrySet]
|
|
18592
|
+
NextToken: Optional[NextToken]
|
|
18593
|
+
|
|
18594
|
+
|
|
18595
|
+
IpamPrefixListResolverVersionNumberSet = List[Long]
|
|
18596
|
+
|
|
18597
|
+
|
|
18598
|
+
class GetIpamPrefixListResolverVersionsRequest(ServiceRequest):
|
|
18599
|
+
DryRun: Optional[Boolean]
|
|
18600
|
+
IpamPrefixListResolverId: IpamPrefixListResolverId
|
|
18601
|
+
IpamPrefixListResolverVersions: Optional[IpamPrefixListResolverVersionNumberSet]
|
|
18602
|
+
MaxResults: Optional[IpamMaxResults]
|
|
18603
|
+
Filters: Optional[FilterList]
|
|
18604
|
+
NextToken: Optional[NextToken]
|
|
18605
|
+
|
|
18606
|
+
|
|
18607
|
+
class IpamPrefixListResolverVersion(TypedDict, total=False):
|
|
18608
|
+
Version: Optional[Long]
|
|
18609
|
+
|
|
18610
|
+
|
|
18611
|
+
IpamPrefixListResolverVersionSet = List[IpamPrefixListResolverVersion]
|
|
18612
|
+
|
|
18613
|
+
|
|
18614
|
+
class GetIpamPrefixListResolverVersionsResult(TypedDict, total=False):
|
|
18615
|
+
IpamPrefixListResolverVersions: Optional[IpamPrefixListResolverVersionSet]
|
|
18616
|
+
NextToken: Optional[NextToken]
|
|
18617
|
+
|
|
18618
|
+
|
|
17588
18619
|
class GetIpamResourceCidrsRequest(ServiceRequest):
|
|
17589
18620
|
DryRun: Optional[Boolean]
|
|
17590
18621
|
Filters: Optional[FilterList]
|
|
@@ -18197,11 +19228,17 @@ class ImageAttribute(TypedDict, total=False):
|
|
|
18197
19228
|
BlockDeviceMappings: Optional[BlockDeviceMappingList]
|
|
18198
19229
|
|
|
18199
19230
|
|
|
19231
|
+
ImageNameRequestList = List[ImageNameRequest]
|
|
19232
|
+
MarketplaceProductCodeRequestList = List[MarketplaceProductCodeRequest]
|
|
18200
19233
|
ImageProviderRequestList = List[ImageProviderRequest]
|
|
18201
19234
|
|
|
18202
19235
|
|
|
18203
19236
|
class ImageCriterionRequest(TypedDict, total=False):
|
|
18204
19237
|
ImageProviders: Optional[ImageProviderRequestList]
|
|
19238
|
+
MarketplaceProductCodes: Optional[MarketplaceProductCodeRequestList]
|
|
19239
|
+
ImageNames: Optional[ImageNameRequestList]
|
|
19240
|
+
DeprecationTimeCondition: Optional[DeprecationTimeConditionRequest]
|
|
19241
|
+
CreationDateCondition: Optional[CreationDateConditionRequest]
|
|
18205
19242
|
|
|
18206
19243
|
|
|
18207
19244
|
ImageCriterionRequestList = List[ImageCriterionRequest]
|
|
@@ -18361,8 +19398,9 @@ class ImportSnapshotResult(TypedDict, total=False):
|
|
|
18361
19398
|
|
|
18362
19399
|
|
|
18363
19400
|
class ImportVolumeRequest(ServiceRequest):
|
|
19401
|
+
AvailabilityZoneId: Optional[AvailabilityZoneId]
|
|
18364
19402
|
DryRun: Optional[Boolean]
|
|
18365
|
-
AvailabilityZone: String
|
|
19403
|
+
AvailabilityZone: Optional[String]
|
|
18366
19404
|
Image: DiskImageDetail
|
|
18367
19405
|
Description: Optional[String]
|
|
18368
19406
|
Volume: VolumeDetail
|
|
@@ -18751,13 +19789,25 @@ class ModifyInstanceAttributeRequest(ServiceRequest):
|
|
|
18751
19789
|
EnaSupport: Optional[AttributeBooleanValue]
|
|
18752
19790
|
|
|
18753
19791
|
|
|
18754
|
-
class ModifyInstanceCapacityReservationAttributesRequest(ServiceRequest):
|
|
18755
|
-
InstanceId: InstanceId
|
|
18756
|
-
CapacityReservationSpecification: CapacityReservationSpecification
|
|
19792
|
+
class ModifyInstanceCapacityReservationAttributesRequest(ServiceRequest):
|
|
19793
|
+
InstanceId: InstanceId
|
|
19794
|
+
CapacityReservationSpecification: CapacityReservationSpecification
|
|
19795
|
+
DryRun: Optional[Boolean]
|
|
19796
|
+
|
|
19797
|
+
|
|
19798
|
+
class ModifyInstanceCapacityReservationAttributesResult(TypedDict, total=False):
|
|
19799
|
+
Return: Optional[Boolean]
|
|
19800
|
+
|
|
19801
|
+
|
|
19802
|
+
class ModifyInstanceConnectEndpointRequest(ServiceRequest):
|
|
18757
19803
|
DryRun: Optional[Boolean]
|
|
19804
|
+
InstanceConnectEndpointId: InstanceConnectEndpointId
|
|
19805
|
+
IpAddressType: Optional[IpAddressType]
|
|
19806
|
+
SecurityGroupIds: Optional[SecurityGroupIdStringListRequest]
|
|
19807
|
+
PreserveClientIp: Optional[Boolean]
|
|
18758
19808
|
|
|
18759
19809
|
|
|
18760
|
-
class
|
|
19810
|
+
class ModifyInstanceConnectEndpointResult(TypedDict, total=False):
|
|
18761
19811
|
Return: Optional[Boolean]
|
|
18762
19812
|
|
|
18763
19813
|
|
|
@@ -18911,6 +19961,29 @@ class ModifyIpamPoolResult(TypedDict, total=False):
|
|
|
18911
19961
|
IpamPool: Optional[IpamPool]
|
|
18912
19962
|
|
|
18913
19963
|
|
|
19964
|
+
class ModifyIpamPrefixListResolverRequest(ServiceRequest):
|
|
19965
|
+
DryRun: Optional[Boolean]
|
|
19966
|
+
IpamPrefixListResolverId: IpamPrefixListResolverId
|
|
19967
|
+
Description: Optional[String]
|
|
19968
|
+
Rules: Optional[IpamPrefixListResolverRuleRequestSet]
|
|
19969
|
+
|
|
19970
|
+
|
|
19971
|
+
class ModifyIpamPrefixListResolverResult(TypedDict, total=False):
|
|
19972
|
+
IpamPrefixListResolver: Optional[IpamPrefixListResolver]
|
|
19973
|
+
|
|
19974
|
+
|
|
19975
|
+
class ModifyIpamPrefixListResolverTargetRequest(ServiceRequest):
|
|
19976
|
+
DryRun: Optional[Boolean]
|
|
19977
|
+
IpamPrefixListResolverTargetId: IpamPrefixListResolverTargetId
|
|
19978
|
+
DesiredVersion: Optional[BoxedLong]
|
|
19979
|
+
TrackLatestVersion: Optional[BoxedBoolean]
|
|
19980
|
+
ClientToken: Optional[String]
|
|
19981
|
+
|
|
19982
|
+
|
|
19983
|
+
class ModifyIpamPrefixListResolverTargetResult(TypedDict, total=False):
|
|
19984
|
+
IpamPrefixListResolverTarget: Optional[IpamPrefixListResolverTarget]
|
|
19985
|
+
|
|
19986
|
+
|
|
18914
19987
|
class RemoveIpamOperatingRegion(TypedDict, total=False):
|
|
18915
19988
|
RegionName: Optional[String]
|
|
18916
19989
|
|
|
@@ -19018,6 +20091,7 @@ class ModifyManagedPrefixListRequest(ServiceRequest):
|
|
|
19018
20091
|
AddEntries: Optional[AddPrefixListEntries]
|
|
19019
20092
|
RemoveEntries: Optional[RemovePrefixListEntries]
|
|
19020
20093
|
MaxEntries: Optional[Integer]
|
|
20094
|
+
IpamPrefixListResolverSyncEnabled: Optional[BoxedBoolean]
|
|
19021
20095
|
|
|
19022
20096
|
|
|
19023
20097
|
class ModifyManagedPrefixListResult(TypedDict, total=False):
|
|
@@ -20736,6 +21810,17 @@ class UnmonitorInstancesResult(TypedDict, total=False):
|
|
|
20736
21810
|
InstanceMonitorings: Optional[InstanceMonitoringList]
|
|
20737
21811
|
|
|
20738
21812
|
|
|
21813
|
+
class UpdateCapacityManagerOrganizationsAccessRequest(ServiceRequest):
|
|
21814
|
+
OrganizationsAccess: BoxedBoolean
|
|
21815
|
+
DryRun: Optional[Boolean]
|
|
21816
|
+
ClientToken: Optional[String]
|
|
21817
|
+
|
|
21818
|
+
|
|
21819
|
+
class UpdateCapacityManagerOrganizationsAccessResult(TypedDict, total=False):
|
|
21820
|
+
CapacityManagerStatus: Optional[CapacityManagerStatus]
|
|
21821
|
+
OrganizationsAccess: Optional[Boolean]
|
|
21822
|
+
|
|
21823
|
+
|
|
20739
21824
|
class UpdateSecurityGroupRuleDescriptionsEgressRequest(ServiceRequest):
|
|
20740
21825
|
DryRun: Optional[Boolean]
|
|
20741
21826
|
GroupId: Optional[SecurityGroupId]
|
|
@@ -21108,6 +22193,7 @@ class Ec2Api:
|
|
|
21108
22193
|
context: RequestContext,
|
|
21109
22194
|
route_table_id: RouteTableId,
|
|
21110
22195
|
gateway_id: RouteGatewayId | None = None,
|
|
22196
|
+
public_ipv4_pool: Ipv4PoolEc2Id | None = None,
|
|
21111
22197
|
dry_run: Boolean | None = None,
|
|
21112
22198
|
subnet_id: SubnetId | None = None,
|
|
21113
22199
|
**kwargs,
|
|
@@ -21479,6 +22565,8 @@ class Ec2Api:
|
|
|
21479
22565
|
copy_image_tags: Boolean | None = None,
|
|
21480
22566
|
tag_specifications: TagSpecificationList | None = None,
|
|
21481
22567
|
snapshot_copy_completion_duration_minutes: Long | None = None,
|
|
22568
|
+
destination_availability_zone: String | None = None,
|
|
22569
|
+
destination_availability_zone_id: String | None = None,
|
|
21482
22570
|
dry_run: Boolean | None = None,
|
|
21483
22571
|
**kwargs,
|
|
21484
22572
|
) -> CopyImageResult:
|
|
@@ -21498,11 +22586,44 @@ class Ec2Api:
|
|
|
21498
22586
|
presigned_url: CopySnapshotRequestPSU | None = None,
|
|
21499
22587
|
tag_specifications: TagSpecificationList | None = None,
|
|
21500
22588
|
completion_duration_minutes: SnapshotCompletionDurationMinutesRequest | None = None,
|
|
22589
|
+
destination_availability_zone: String | None = None,
|
|
21501
22590
|
dry_run: Boolean | None = None,
|
|
21502
22591
|
**kwargs,
|
|
21503
22592
|
) -> CopySnapshotResult:
|
|
21504
22593
|
raise NotImplementedError
|
|
21505
22594
|
|
|
22595
|
+
@handler("CopyVolumes")
|
|
22596
|
+
def copy_volumes(
|
|
22597
|
+
self,
|
|
22598
|
+
context: RequestContext,
|
|
22599
|
+
source_volume_id: VolumeId,
|
|
22600
|
+
iops: Integer | None = None,
|
|
22601
|
+
size: Integer | None = None,
|
|
22602
|
+
volume_type: VolumeType | None = None,
|
|
22603
|
+
dry_run: Boolean | None = None,
|
|
22604
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
22605
|
+
multi_attach_enabled: Boolean | None = None,
|
|
22606
|
+
throughput: Integer | None = None,
|
|
22607
|
+
client_token: String | None = None,
|
|
22608
|
+
**kwargs,
|
|
22609
|
+
) -> CopyVolumesResult:
|
|
22610
|
+
raise NotImplementedError
|
|
22611
|
+
|
|
22612
|
+
@handler("CreateCapacityManagerDataExport")
|
|
22613
|
+
def create_capacity_manager_data_export(
|
|
22614
|
+
self,
|
|
22615
|
+
context: RequestContext,
|
|
22616
|
+
s3_bucket_name: String,
|
|
22617
|
+
schedule: Schedule,
|
|
22618
|
+
output_format: OutputFormat,
|
|
22619
|
+
s3_bucket_prefix: String | None = None,
|
|
22620
|
+
client_token: String | None = None,
|
|
22621
|
+
dry_run: Boolean | None = None,
|
|
22622
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
22623
|
+
**kwargs,
|
|
22624
|
+
) -> CreateCapacityManagerDataExportResult:
|
|
22625
|
+
raise NotImplementedError
|
|
22626
|
+
|
|
21506
22627
|
@handler("CreateCapacityReservation")
|
|
21507
22628
|
def create_capacity_reservation(
|
|
21508
22629
|
self,
|
|
@@ -21576,10 +22697,10 @@ class Ec2Api:
|
|
|
21576
22697
|
def create_client_vpn_endpoint(
|
|
21577
22698
|
self,
|
|
21578
22699
|
context: RequestContext,
|
|
21579
|
-
client_cidr_block: String,
|
|
21580
22700
|
server_certificate_arn: String,
|
|
21581
22701
|
authentication_options: ClientVpnAuthenticationRequestList,
|
|
21582
22702
|
connection_log_options: ConnectionLogOptions,
|
|
22703
|
+
client_cidr_block: String | None = None,
|
|
21583
22704
|
dns_servers: ValueStringList | None = None,
|
|
21584
22705
|
transport_protocol: TransportProtocol | None = None,
|
|
21585
22706
|
vpn_port: Integer | None = None,
|
|
@@ -21596,6 +22717,8 @@ class Ec2Api:
|
|
|
21596
22717
|
client_login_banner_options: ClientLoginBannerOptions | None = None,
|
|
21597
22718
|
client_route_enforcement_options: ClientRouteEnforcementOptions | None = None,
|
|
21598
22719
|
disconnect_on_session_timeout: Boolean | None = None,
|
|
22720
|
+
endpoint_ip_address_type: EndpointIpAddressType | None = None,
|
|
22721
|
+
traffic_ip_address_type: TrafficIpAddressType | None = None,
|
|
21599
22722
|
**kwargs,
|
|
21600
22723
|
) -> CreateClientVpnEndpointResult:
|
|
21601
22724
|
raise NotImplementedError
|
|
@@ -21646,9 +22769,10 @@ class Ec2Api:
|
|
|
21646
22769
|
def create_default_subnet(
|
|
21647
22770
|
self,
|
|
21648
22771
|
context: RequestContext,
|
|
21649
|
-
availability_zone: AvailabilityZoneName,
|
|
22772
|
+
availability_zone: AvailabilityZoneName | None = None,
|
|
21650
22773
|
dry_run: Boolean | None = None,
|
|
21651
22774
|
ipv6_native: Boolean | None = None,
|
|
22775
|
+
availability_zone_id: AvailabilityZoneId | None = None,
|
|
21652
22776
|
**kwargs,
|
|
21653
22777
|
) -> CreateDefaultSubnetResult:
|
|
21654
22778
|
raise NotImplementedError
|
|
@@ -21754,6 +22878,20 @@ class Ec2Api:
|
|
|
21754
22878
|
) -> CreateImageResult:
|
|
21755
22879
|
raise NotImplementedError
|
|
21756
22880
|
|
|
22881
|
+
@handler("CreateImageUsageReport")
|
|
22882
|
+
def create_image_usage_report(
|
|
22883
|
+
self,
|
|
22884
|
+
context: RequestContext,
|
|
22885
|
+
image_id: ImageId,
|
|
22886
|
+
resource_types: ImageUsageResourceTypeRequestList,
|
|
22887
|
+
dry_run: Boolean | None = None,
|
|
22888
|
+
account_ids: ImageUsageReportUserIdStringList | None = None,
|
|
22889
|
+
client_token: String | None = None,
|
|
22890
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
22891
|
+
**kwargs,
|
|
22892
|
+
) -> CreateImageUsageReportResult:
|
|
22893
|
+
raise NotImplementedError
|
|
22894
|
+
|
|
21757
22895
|
@handler("CreateInstanceConnectEndpoint")
|
|
21758
22896
|
def create_instance_connect_endpoint(
|
|
21759
22897
|
self,
|
|
@@ -21858,6 +22996,37 @@ class Ec2Api:
|
|
|
21858
22996
|
) -> CreateIpamPoolResult:
|
|
21859
22997
|
raise NotImplementedError
|
|
21860
22998
|
|
|
22999
|
+
@handler("CreateIpamPrefixListResolver")
|
|
23000
|
+
def create_ipam_prefix_list_resolver(
|
|
23001
|
+
self,
|
|
23002
|
+
context: RequestContext,
|
|
23003
|
+
ipam_id: IpamId,
|
|
23004
|
+
address_family: AddressFamily,
|
|
23005
|
+
dry_run: Boolean | None = None,
|
|
23006
|
+
description: String | None = None,
|
|
23007
|
+
rules: IpamPrefixListResolverRuleRequestSet | None = None,
|
|
23008
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
23009
|
+
client_token: String | None = None,
|
|
23010
|
+
**kwargs,
|
|
23011
|
+
) -> CreateIpamPrefixListResolverResult:
|
|
23012
|
+
raise NotImplementedError
|
|
23013
|
+
|
|
23014
|
+
@handler("CreateIpamPrefixListResolverTarget")
|
|
23015
|
+
def create_ipam_prefix_list_resolver_target(
|
|
23016
|
+
self,
|
|
23017
|
+
context: RequestContext,
|
|
23018
|
+
ipam_prefix_list_resolver_id: IpamPrefixListResolverId,
|
|
23019
|
+
prefix_list_id: String,
|
|
23020
|
+
prefix_list_region: String,
|
|
23021
|
+
track_latest_version: Boolean,
|
|
23022
|
+
dry_run: Boolean | None = None,
|
|
23023
|
+
desired_version: BoxedLong | None = None,
|
|
23024
|
+
tag_specifications: TagSpecificationList | None = None,
|
|
23025
|
+
client_token: String | None = None,
|
|
23026
|
+
**kwargs,
|
|
23027
|
+
) -> CreateIpamPrefixListResolverTargetResult:
|
|
23028
|
+
raise NotImplementedError
|
|
23029
|
+
|
|
21861
23030
|
@handler("CreateIpamResourceDiscovery")
|
|
21862
23031
|
def create_ipam_resource_discovery(
|
|
21863
23032
|
self,
|
|
@@ -22699,7 +23868,8 @@ class Ec2Api:
|
|
|
22699
23868
|
def create_volume(
|
|
22700
23869
|
self,
|
|
22701
23870
|
context: RequestContext,
|
|
22702
|
-
availability_zone: AvailabilityZoneName,
|
|
23871
|
+
availability_zone: AvailabilityZoneName | None = None,
|
|
23872
|
+
availability_zone_id: AvailabilityZoneId | None = None,
|
|
22703
23873
|
encrypted: Boolean | None = None,
|
|
22704
23874
|
iops: Integer | None = None,
|
|
22705
23875
|
kms_key_id: KmsKeyId | None = None,
|
|
@@ -22843,6 +24013,16 @@ class Ec2Api:
|
|
|
22843
24013
|
) -> CreateVpnGatewayResult:
|
|
22844
24014
|
raise NotImplementedError
|
|
22845
24015
|
|
|
24016
|
+
@handler("DeleteCapacityManagerDataExport")
|
|
24017
|
+
def delete_capacity_manager_data_export(
|
|
24018
|
+
self,
|
|
24019
|
+
context: RequestContext,
|
|
24020
|
+
capacity_manager_data_export_id: CapacityManagerDataExportId,
|
|
24021
|
+
dry_run: Boolean | None = None,
|
|
24022
|
+
**kwargs,
|
|
24023
|
+
) -> DeleteCapacityManagerDataExportResult:
|
|
24024
|
+
raise NotImplementedError
|
|
24025
|
+
|
|
22846
24026
|
@handler("DeleteCarrierGateway")
|
|
22847
24027
|
def delete_carrier_gateway(
|
|
22848
24028
|
self,
|
|
@@ -22957,6 +24137,16 @@ class Ec2Api:
|
|
|
22957
24137
|
) -> DeleteFpgaImageResult:
|
|
22958
24138
|
raise NotImplementedError
|
|
22959
24139
|
|
|
24140
|
+
@handler("DeleteImageUsageReport")
|
|
24141
|
+
def delete_image_usage_report(
|
|
24142
|
+
self,
|
|
24143
|
+
context: RequestContext,
|
|
24144
|
+
report_id: ImageUsageReportId,
|
|
24145
|
+
dry_run: Boolean | None = None,
|
|
24146
|
+
**kwargs,
|
|
24147
|
+
) -> DeleteImageUsageReportResult:
|
|
24148
|
+
raise NotImplementedError
|
|
24149
|
+
|
|
22960
24150
|
@handler("DeleteInstanceConnectEndpoint")
|
|
22961
24151
|
def delete_instance_connect_endpoint(
|
|
22962
24152
|
self,
|
|
@@ -23020,6 +24210,26 @@ class Ec2Api:
|
|
|
23020
24210
|
) -> DeleteIpamPoolResult:
|
|
23021
24211
|
raise NotImplementedError
|
|
23022
24212
|
|
|
24213
|
+
@handler("DeleteIpamPrefixListResolver")
|
|
24214
|
+
def delete_ipam_prefix_list_resolver(
|
|
24215
|
+
self,
|
|
24216
|
+
context: RequestContext,
|
|
24217
|
+
ipam_prefix_list_resolver_id: IpamPrefixListResolverId,
|
|
24218
|
+
dry_run: Boolean | None = None,
|
|
24219
|
+
**kwargs,
|
|
24220
|
+
) -> DeleteIpamPrefixListResolverResult:
|
|
24221
|
+
raise NotImplementedError
|
|
24222
|
+
|
|
24223
|
+
@handler("DeleteIpamPrefixListResolverTarget")
|
|
24224
|
+
def delete_ipam_prefix_list_resolver_target(
|
|
24225
|
+
self,
|
|
24226
|
+
context: RequestContext,
|
|
24227
|
+
ipam_prefix_list_resolver_target_id: IpamPrefixListResolverTargetId,
|
|
24228
|
+
dry_run: Boolean | None = None,
|
|
24229
|
+
**kwargs,
|
|
24230
|
+
) -> DeleteIpamPrefixListResolverTargetResult:
|
|
24231
|
+
raise NotImplementedError
|
|
24232
|
+
|
|
23023
24233
|
@handler("DeleteIpamResourceDiscovery")
|
|
23024
24234
|
def delete_ipam_resource_discovery(
|
|
23025
24235
|
self,
|
|
@@ -23919,6 +25129,19 @@ class Ec2Api:
|
|
|
23919
25129
|
) -> DescribeCapacityBlocksResult:
|
|
23920
25130
|
raise NotImplementedError
|
|
23921
25131
|
|
|
25132
|
+
@handler("DescribeCapacityManagerDataExports")
|
|
25133
|
+
def describe_capacity_manager_data_exports(
|
|
25134
|
+
self,
|
|
25135
|
+
context: RequestContext,
|
|
25136
|
+
capacity_manager_data_export_ids: CapacityManagerDataExportIdSet | None = None,
|
|
25137
|
+
max_results: DescribeCapacityManagerDataExportsRequestMaxResults | None = None,
|
|
25138
|
+
next_token: String | None = None,
|
|
25139
|
+
dry_run: Boolean | None = None,
|
|
25140
|
+
filters: FilterList | None = None,
|
|
25141
|
+
**kwargs,
|
|
25142
|
+
) -> DescribeCapacityManagerDataExportsResult:
|
|
25143
|
+
raise NotImplementedError
|
|
25144
|
+
|
|
23922
25145
|
@handler("DescribeCapacityReservationBillingRequests")
|
|
23923
25146
|
def describe_capacity_reservation_billing_requests(
|
|
23924
25147
|
self,
|
|
@@ -23946,6 +25169,19 @@ class Ec2Api:
|
|
|
23946
25169
|
) -> DescribeCapacityReservationFleetsResult:
|
|
23947
25170
|
raise NotImplementedError
|
|
23948
25171
|
|
|
25172
|
+
@handler("DescribeCapacityReservationTopology")
|
|
25173
|
+
def describe_capacity_reservation_topology(
|
|
25174
|
+
self,
|
|
25175
|
+
context: RequestContext,
|
|
25176
|
+
dry_run: Boolean | None = None,
|
|
25177
|
+
next_token: String | None = None,
|
|
25178
|
+
max_results: DescribeCapacityReservationTopologyMaxResults | None = None,
|
|
25179
|
+
capacity_reservation_ids: CapacityReservationIdSet | None = None,
|
|
25180
|
+
filters: FilterList | None = None,
|
|
25181
|
+
**kwargs,
|
|
25182
|
+
) -> DescribeCapacityReservationTopologyResult:
|
|
25183
|
+
raise NotImplementedError
|
|
25184
|
+
|
|
23949
25185
|
@handler("DescribeCapacityReservations")
|
|
23950
25186
|
def describe_capacity_reservations(
|
|
23951
25187
|
self,
|
|
@@ -24339,6 +25575,48 @@ class Ec2Api:
|
|
|
24339
25575
|
) -> ImageAttribute:
|
|
24340
25576
|
raise NotImplementedError
|
|
24341
25577
|
|
|
25578
|
+
@handler("DescribeImageReferences")
|
|
25579
|
+
def describe_image_references(
|
|
25580
|
+
self,
|
|
25581
|
+
context: RequestContext,
|
|
25582
|
+
image_ids: DescribeImageReferencesImageIdStringList,
|
|
25583
|
+
include_all_resource_types: Boolean | None = None,
|
|
25584
|
+
resource_types: ResourceTypeRequestList | None = None,
|
|
25585
|
+
next_token: String | None = None,
|
|
25586
|
+
dry_run: Boolean | None = None,
|
|
25587
|
+
max_results: DescribeImageReferencesMaxResults | None = None,
|
|
25588
|
+
**kwargs,
|
|
25589
|
+
) -> DescribeImageReferencesResult:
|
|
25590
|
+
raise NotImplementedError
|
|
25591
|
+
|
|
25592
|
+
@handler("DescribeImageUsageReportEntries")
|
|
25593
|
+
def describe_image_usage_report_entries(
|
|
25594
|
+
self,
|
|
25595
|
+
context: RequestContext,
|
|
25596
|
+
image_ids: DescribeImageUsageReportsImageIdStringList | None = None,
|
|
25597
|
+
report_ids: ImageUsageReportIdStringList | None = None,
|
|
25598
|
+
next_token: String | None = None,
|
|
25599
|
+
filters: FilterList | None = None,
|
|
25600
|
+
dry_run: Boolean | None = None,
|
|
25601
|
+
max_results: DescribeImageUsageReportEntriesMaxResults | None = None,
|
|
25602
|
+
**kwargs,
|
|
25603
|
+
) -> DescribeImageUsageReportEntriesResult:
|
|
25604
|
+
raise NotImplementedError
|
|
25605
|
+
|
|
25606
|
+
@handler("DescribeImageUsageReports")
|
|
25607
|
+
def describe_image_usage_reports(
|
|
25608
|
+
self,
|
|
25609
|
+
context: RequestContext,
|
|
25610
|
+
image_ids: DescribeImageUsageReportsImageIdStringList | None = None,
|
|
25611
|
+
report_ids: ImageUsageReportIdStringList | None = None,
|
|
25612
|
+
next_token: String | None = None,
|
|
25613
|
+
filters: FilterList | None = None,
|
|
25614
|
+
dry_run: Boolean | None = None,
|
|
25615
|
+
max_results: DescribeImageUsageReportsMaxResults | None = None,
|
|
25616
|
+
**kwargs,
|
|
25617
|
+
) -> DescribeImageUsageReportsResult:
|
|
25618
|
+
raise NotImplementedError
|
|
25619
|
+
|
|
24342
25620
|
@handler("DescribeImages")
|
|
24343
25621
|
def describe_images(
|
|
24344
25622
|
self,
|
|
@@ -24568,6 +25846,33 @@ class Ec2Api:
|
|
|
24568
25846
|
) -> DescribeIpamPoolsResult:
|
|
24569
25847
|
raise NotImplementedError
|
|
24570
25848
|
|
|
25849
|
+
@handler("DescribeIpamPrefixListResolverTargets")
|
|
25850
|
+
def describe_ipam_prefix_list_resolver_targets(
|
|
25851
|
+
self,
|
|
25852
|
+
context: RequestContext,
|
|
25853
|
+
dry_run: Boolean | None = None,
|
|
25854
|
+
filters: FilterList | None = None,
|
|
25855
|
+
max_results: IpamMaxResults | None = None,
|
|
25856
|
+
next_token: NextToken | None = None,
|
|
25857
|
+
ipam_prefix_list_resolver_target_ids: ValueStringList | None = None,
|
|
25858
|
+
ipam_prefix_list_resolver_id: IpamPrefixListResolverId | None = None,
|
|
25859
|
+
**kwargs,
|
|
25860
|
+
) -> DescribeIpamPrefixListResolverTargetsResult:
|
|
25861
|
+
raise NotImplementedError
|
|
25862
|
+
|
|
25863
|
+
@handler("DescribeIpamPrefixListResolvers")
|
|
25864
|
+
def describe_ipam_prefix_list_resolvers(
|
|
25865
|
+
self,
|
|
25866
|
+
context: RequestContext,
|
|
25867
|
+
dry_run: Boolean | None = None,
|
|
25868
|
+
filters: FilterList | None = None,
|
|
25869
|
+
max_results: IpamMaxResults | None = None,
|
|
25870
|
+
next_token: NextToken | None = None,
|
|
25871
|
+
ipam_prefix_list_resolver_ids: ValueStringList | None = None,
|
|
25872
|
+
**kwargs,
|
|
25873
|
+
) -> DescribeIpamPrefixListResolversResult:
|
|
25874
|
+
raise NotImplementedError
|
|
25875
|
+
|
|
24571
25876
|
@handler("DescribeIpamResourceDiscoveries")
|
|
24572
25877
|
def describe_ipam_resource_discoveries(
|
|
24573
25878
|
self,
|
|
@@ -25330,6 +26635,7 @@ class Ec2Api:
|
|
|
25330
26635
|
def describe_spot_price_history(
|
|
25331
26636
|
self,
|
|
25332
26637
|
context: RequestContext,
|
|
26638
|
+
availability_zone_id: AvailabilityZoneId | None = None,
|
|
25333
26639
|
dry_run: Boolean | None = None,
|
|
25334
26640
|
start_time: DateTime | None = None,
|
|
25335
26641
|
end_time: DateTime | None = None,
|
|
@@ -25998,6 +27304,16 @@ class Ec2Api:
|
|
|
25998
27304
|
) -> DisableAwsNetworkPerformanceMetricSubscriptionResult:
|
|
25999
27305
|
raise NotImplementedError
|
|
26000
27306
|
|
|
27307
|
+
@handler("DisableCapacityManager")
|
|
27308
|
+
def disable_capacity_manager(
|
|
27309
|
+
self,
|
|
27310
|
+
context: RequestContext,
|
|
27311
|
+
dry_run: Boolean | None = None,
|
|
27312
|
+
client_token: String | None = None,
|
|
27313
|
+
**kwargs,
|
|
27314
|
+
) -> DisableCapacityManagerResult:
|
|
27315
|
+
raise NotImplementedError
|
|
27316
|
+
|
|
26001
27317
|
@handler("DisableEbsEncryptionByDefault")
|
|
26002
27318
|
def disable_ebs_encryption_by_default(
|
|
26003
27319
|
self, context: RequestContext, dry_run: Boolean | None = None, **kwargs
|
|
@@ -26336,6 +27652,17 @@ class Ec2Api:
|
|
|
26336
27652
|
) -> EnableAwsNetworkPerformanceMetricSubscriptionResult:
|
|
26337
27653
|
raise NotImplementedError
|
|
26338
27654
|
|
|
27655
|
+
@handler("EnableCapacityManager")
|
|
27656
|
+
def enable_capacity_manager(
|
|
27657
|
+
self,
|
|
27658
|
+
context: RequestContext,
|
|
27659
|
+
organizations_access: Boolean | None = None,
|
|
27660
|
+
dry_run: Boolean | None = None,
|
|
27661
|
+
client_token: String | None = None,
|
|
27662
|
+
**kwargs,
|
|
27663
|
+
) -> EnableCapacityManagerResult:
|
|
27664
|
+
raise NotImplementedError
|
|
27665
|
+
|
|
26339
27666
|
@handler("EnableEbsEncryptionByDefault")
|
|
26340
27667
|
def enable_ebs_encryption_by_default(
|
|
26341
27668
|
self, context: RequestContext, dry_run: Boolean | None = None, **kwargs
|
|
@@ -26601,6 +27928,45 @@ class Ec2Api:
|
|
|
26601
27928
|
) -> GetAwsNetworkPerformanceDataResult:
|
|
26602
27929
|
raise NotImplementedError
|
|
26603
27930
|
|
|
27931
|
+
@handler("GetCapacityManagerAttributes")
|
|
27932
|
+
def get_capacity_manager_attributes(
|
|
27933
|
+
self, context: RequestContext, dry_run: Boolean | None = None, **kwargs
|
|
27934
|
+
) -> GetCapacityManagerAttributesResult:
|
|
27935
|
+
raise NotImplementedError
|
|
27936
|
+
|
|
27937
|
+
@handler("GetCapacityManagerMetricData")
|
|
27938
|
+
def get_capacity_manager_metric_data(
|
|
27939
|
+
self,
|
|
27940
|
+
context: RequestContext,
|
|
27941
|
+
metric_names: MetricSet,
|
|
27942
|
+
start_time: MillisecondDateTime,
|
|
27943
|
+
end_time: MillisecondDateTime,
|
|
27944
|
+
period: Period,
|
|
27945
|
+
group_by: GroupBySet | None = None,
|
|
27946
|
+
filter_by: CapacityManagerConditionSet | None = None,
|
|
27947
|
+
max_results: MaxResults | None = None,
|
|
27948
|
+
next_token: NextToken | None = None,
|
|
27949
|
+
dry_run: Boolean | None = None,
|
|
27950
|
+
**kwargs,
|
|
27951
|
+
) -> GetCapacityManagerMetricDataResult:
|
|
27952
|
+
raise NotImplementedError
|
|
27953
|
+
|
|
27954
|
+
@handler("GetCapacityManagerMetricDimensions")
|
|
27955
|
+
def get_capacity_manager_metric_dimensions(
|
|
27956
|
+
self,
|
|
27957
|
+
context: RequestContext,
|
|
27958
|
+
group_by: GroupBySet,
|
|
27959
|
+
start_time: MillisecondDateTime,
|
|
27960
|
+
end_time: MillisecondDateTime,
|
|
27961
|
+
metric_names: MetricSet,
|
|
27962
|
+
filter_by: CapacityManagerConditionSet | None = None,
|
|
27963
|
+
max_results: MaxResults | None = None,
|
|
27964
|
+
next_token: NextToken | None = None,
|
|
27965
|
+
dry_run: Boolean | None = None,
|
|
27966
|
+
**kwargs,
|
|
27967
|
+
) -> GetCapacityManagerMetricDimensionsResult:
|
|
27968
|
+
raise NotImplementedError
|
|
27969
|
+
|
|
26604
27970
|
@handler("GetCapacityReservationUsage")
|
|
26605
27971
|
def get_capacity_reservation_usage(
|
|
26606
27972
|
self,
|
|
@@ -26842,6 +28208,46 @@ class Ec2Api:
|
|
|
26842
28208
|
) -> GetIpamPoolCidrsResult:
|
|
26843
28209
|
raise NotImplementedError
|
|
26844
28210
|
|
|
28211
|
+
@handler("GetIpamPrefixListResolverRules")
|
|
28212
|
+
def get_ipam_prefix_list_resolver_rules(
|
|
28213
|
+
self,
|
|
28214
|
+
context: RequestContext,
|
|
28215
|
+
ipam_prefix_list_resolver_id: IpamPrefixListResolverId,
|
|
28216
|
+
dry_run: Boolean | None = None,
|
|
28217
|
+
filters: FilterList | None = None,
|
|
28218
|
+
max_results: IpamMaxResults | None = None,
|
|
28219
|
+
next_token: NextToken | None = None,
|
|
28220
|
+
**kwargs,
|
|
28221
|
+
) -> GetIpamPrefixListResolverRulesResult:
|
|
28222
|
+
raise NotImplementedError
|
|
28223
|
+
|
|
28224
|
+
@handler("GetIpamPrefixListResolverVersionEntries")
|
|
28225
|
+
def get_ipam_prefix_list_resolver_version_entries(
|
|
28226
|
+
self,
|
|
28227
|
+
context: RequestContext,
|
|
28228
|
+
ipam_prefix_list_resolver_id: IpamPrefixListResolverId,
|
|
28229
|
+
ipam_prefix_list_resolver_version: Long,
|
|
28230
|
+
dry_run: Boolean | None = None,
|
|
28231
|
+
max_results: IpamMaxResults | None = None,
|
|
28232
|
+
next_token: NextToken | None = None,
|
|
28233
|
+
**kwargs,
|
|
28234
|
+
) -> GetIpamPrefixListResolverVersionEntriesResult:
|
|
28235
|
+
raise NotImplementedError
|
|
28236
|
+
|
|
28237
|
+
@handler("GetIpamPrefixListResolverVersions")
|
|
28238
|
+
def get_ipam_prefix_list_resolver_versions(
|
|
28239
|
+
self,
|
|
28240
|
+
context: RequestContext,
|
|
28241
|
+
ipam_prefix_list_resolver_id: IpamPrefixListResolverId,
|
|
28242
|
+
dry_run: Boolean | None = None,
|
|
28243
|
+
ipam_prefix_list_resolver_versions: IpamPrefixListResolverVersionNumberSet | None = None,
|
|
28244
|
+
max_results: IpamMaxResults | None = None,
|
|
28245
|
+
filters: FilterList | None = None,
|
|
28246
|
+
next_token: NextToken | None = None,
|
|
28247
|
+
**kwargs,
|
|
28248
|
+
) -> GetIpamPrefixListResolverVersionsResult:
|
|
28249
|
+
raise NotImplementedError
|
|
28250
|
+
|
|
26845
28251
|
@handler("GetIpamResourceCidrs")
|
|
26846
28252
|
def get_ipam_resource_cidrs(
|
|
26847
28253
|
self,
|
|
@@ -27266,10 +28672,11 @@ class Ec2Api:
|
|
|
27266
28672
|
def import_volume(
|
|
27267
28673
|
self,
|
|
27268
28674
|
context: RequestContext,
|
|
27269
|
-
availability_zone: String,
|
|
27270
28675
|
image: DiskImageDetail,
|
|
27271
28676
|
volume: VolumeDetail,
|
|
28677
|
+
availability_zone_id: AvailabilityZoneId | None = None,
|
|
27272
28678
|
dry_run: Boolean | None = None,
|
|
28679
|
+
availability_zone: String | None = None,
|
|
27273
28680
|
description: String | None = None,
|
|
27274
28681
|
**kwargs,
|
|
27275
28682
|
) -> ImportVolumeResult:
|
|
@@ -27521,6 +28928,19 @@ class Ec2Api:
|
|
|
27521
28928
|
) -> ModifyInstanceCapacityReservationAttributesResult:
|
|
27522
28929
|
raise NotImplementedError
|
|
27523
28930
|
|
|
28931
|
+
@handler("ModifyInstanceConnectEndpoint")
|
|
28932
|
+
def modify_instance_connect_endpoint(
|
|
28933
|
+
self,
|
|
28934
|
+
context: RequestContext,
|
|
28935
|
+
instance_connect_endpoint_id: InstanceConnectEndpointId,
|
|
28936
|
+
dry_run: Boolean | None = None,
|
|
28937
|
+
ip_address_type: IpAddressType | None = None,
|
|
28938
|
+
security_group_ids: SecurityGroupIdStringListRequest | None = None,
|
|
28939
|
+
preserve_client_ip: Boolean | None = None,
|
|
28940
|
+
**kwargs,
|
|
28941
|
+
) -> ModifyInstanceConnectEndpointResult:
|
|
28942
|
+
raise NotImplementedError
|
|
28943
|
+
|
|
27524
28944
|
@handler("ModifyInstanceCpuOptions")
|
|
27525
28945
|
def modify_instance_cpu_options(
|
|
27526
28946
|
self,
|
|
@@ -27670,6 +29090,31 @@ class Ec2Api:
|
|
|
27670
29090
|
) -> ModifyIpamPoolResult:
|
|
27671
29091
|
raise NotImplementedError
|
|
27672
29092
|
|
|
29093
|
+
@handler("ModifyIpamPrefixListResolver")
|
|
29094
|
+
def modify_ipam_prefix_list_resolver(
|
|
29095
|
+
self,
|
|
29096
|
+
context: RequestContext,
|
|
29097
|
+
ipam_prefix_list_resolver_id: IpamPrefixListResolverId,
|
|
29098
|
+
dry_run: Boolean | None = None,
|
|
29099
|
+
description: String | None = None,
|
|
29100
|
+
rules: IpamPrefixListResolverRuleRequestSet | None = None,
|
|
29101
|
+
**kwargs,
|
|
29102
|
+
) -> ModifyIpamPrefixListResolverResult:
|
|
29103
|
+
raise NotImplementedError
|
|
29104
|
+
|
|
29105
|
+
@handler("ModifyIpamPrefixListResolverTarget")
|
|
29106
|
+
def modify_ipam_prefix_list_resolver_target(
|
|
29107
|
+
self,
|
|
29108
|
+
context: RequestContext,
|
|
29109
|
+
ipam_prefix_list_resolver_target_id: IpamPrefixListResolverTargetId,
|
|
29110
|
+
dry_run: Boolean | None = None,
|
|
29111
|
+
desired_version: BoxedLong | None = None,
|
|
29112
|
+
track_latest_version: BoxedBoolean | None = None,
|
|
29113
|
+
client_token: String | None = None,
|
|
29114
|
+
**kwargs,
|
|
29115
|
+
) -> ModifyIpamPrefixListResolverTargetResult:
|
|
29116
|
+
raise NotImplementedError
|
|
29117
|
+
|
|
27673
29118
|
@handler("ModifyIpamResourceCidr")
|
|
27674
29119
|
def modify_ipam_resource_cidr(
|
|
27675
29120
|
self,
|
|
@@ -27750,6 +29195,7 @@ class Ec2Api:
|
|
|
27750
29195
|
add_entries: AddPrefixListEntries | None = None,
|
|
27751
29196
|
remove_entries: RemovePrefixListEntries | None = None,
|
|
27752
29197
|
max_entries: Integer | None = None,
|
|
29198
|
+
ipam_prefix_list_resolver_sync_enabled: BoxedBoolean | None = None,
|
|
27753
29199
|
**kwargs,
|
|
27754
29200
|
) -> ModifyManagedPrefixListResult:
|
|
27755
29201
|
raise NotImplementedError
|
|
@@ -29179,6 +30625,17 @@ class Ec2Api:
|
|
|
29179
30625
|
) -> UnmonitorInstancesResult:
|
|
29180
30626
|
raise NotImplementedError
|
|
29181
30627
|
|
|
30628
|
+
@handler("UpdateCapacityManagerOrganizationsAccess")
|
|
30629
|
+
def update_capacity_manager_organizations_access(
|
|
30630
|
+
self,
|
|
30631
|
+
context: RequestContext,
|
|
30632
|
+
organizations_access: BoxedBoolean,
|
|
30633
|
+
dry_run: Boolean | None = None,
|
|
30634
|
+
client_token: String | None = None,
|
|
30635
|
+
**kwargs,
|
|
30636
|
+
) -> UpdateCapacityManagerOrganizationsAccessResult:
|
|
30637
|
+
raise NotImplementedError
|
|
30638
|
+
|
|
29182
30639
|
@handler("UpdateSecurityGroupRuleDescriptionsEgress")
|
|
29183
30640
|
def update_security_group_rule_descriptions_egress(
|
|
29184
30641
|
self,
|