localstack-core 4.10.1.dev7__py3-none-any.whl → 4.11.2.dev14__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- localstack/aws/api/acm/__init__.py +122 -122
- localstack/aws/api/apigateway/__init__.py +604 -561
- localstack/aws/api/cloudcontrol/__init__.py +63 -63
- localstack/aws/api/cloudformation/__init__.py +1201 -969
- localstack/aws/api/cloudwatch/__init__.py +375 -375
- localstack/aws/api/config/__init__.py +784 -786
- localstack/aws/api/dynamodb/__init__.py +753 -759
- localstack/aws/api/dynamodbstreams/__init__.py +74 -74
- localstack/aws/api/ec2/__init__.py +10062 -8826
- localstack/aws/api/es/__init__.py +453 -453
- localstack/aws/api/events/__init__.py +552 -552
- localstack/aws/api/firehose/__init__.py +541 -543
- localstack/aws/api/iam/__init__.py +866 -572
- localstack/aws/api/kinesis/__init__.py +235 -147
- localstack/aws/api/kms/__init__.py +341 -336
- localstack/aws/api/lambda_/__init__.py +974 -621
- localstack/aws/api/logs/__init__.py +988 -675
- localstack/aws/api/opensearch/__init__.py +903 -785
- localstack/aws/api/pipes/__init__.py +336 -336
- localstack/aws/api/redshift/__init__.py +1257 -1166
- localstack/aws/api/resource_groups/__init__.py +175 -175
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +103 -67
- localstack/aws/api/route53/__init__.py +296 -254
- localstack/aws/api/route53resolver/__init__.py +397 -396
- localstack/aws/api/s3/__init__.py +1412 -1349
- localstack/aws/api/s3control/__init__.py +594 -594
- localstack/aws/api/scheduler/__init__.py +118 -118
- localstack/aws/api/secretsmanager/__init__.py +221 -216
- localstack/aws/api/ses/__init__.py +227 -227
- localstack/aws/api/sns/__init__.py +115 -115
- localstack/aws/api/sqs/__init__.py +100 -100
- localstack/aws/api/ssm/__init__.py +1977 -1971
- localstack/aws/api/stepfunctions/__init__.py +375 -333
- localstack/aws/api/sts/__init__.py +142 -66
- localstack/aws/api/support/__init__.py +112 -112
- localstack/aws/api/swf/__init__.py +378 -386
- localstack/aws/api/transcribe/__init__.py +425 -425
- localstack/aws/handlers/logging.py +8 -4
- localstack/aws/handlers/service.py +22 -3
- localstack/aws/protocol/parser.py +1 -1
- localstack/aws/protocol/serializer.py +1 -1
- localstack/aws/scaffold.py +15 -17
- localstack/cli/localstack.py +6 -1
- localstack/deprecations.py +0 -6
- localstack/dev/kubernetes/__main__.py +38 -3
- localstack/services/acm/provider.py +4 -0
- localstack/services/apigateway/helpers.py +5 -9
- localstack/services/apigateway/legacy/provider.py +60 -24
- localstack/services/apigateway/patches.py +0 -9
- localstack/services/cloudformation/engine/template_preparer.py +6 -2
- localstack/services/cloudformation/engine/v2/change_set_model_preproc.py +12 -0
- localstack/services/cloudformation/provider.py +2 -2
- localstack/services/cloudformation/v2/provider.py +6 -6
- localstack/services/cloudwatch/provider.py +10 -3
- localstack/services/cloudwatch/provider_v2.py +6 -3
- localstack/services/configservice/provider.py +5 -1
- localstack/services/dynamodb/provider.py +1 -0
- localstack/services/dynamodb/v2/provider.py +1 -0
- localstack/services/dynamodbstreams/provider.py +6 -0
- localstack/services/dynamodbstreams/v2/provider.py +6 -0
- localstack/services/ec2/provider.py +6 -0
- localstack/services/es/provider.py +6 -0
- localstack/services/events/provider.py +4 -0
- localstack/services/events/v1/provider.py +9 -0
- localstack/services/firehose/provider.py +5 -0
- localstack/services/iam/provider.py +4 -0
- localstack/services/kinesis/packages.py +1 -1
- localstack/services/kms/models.py +44 -24
- localstack/services/kms/provider.py +97 -16
- localstack/services/lambda_/api_utils.py +40 -21
- localstack/services/lambda_/event_source_mapping/pollers/stream_poller.py +1 -1
- localstack/services/lambda_/invocation/assignment.py +4 -1
- localstack/services/lambda_/invocation/execution_environment.py +21 -2
- localstack/services/lambda_/invocation/lambda_models.py +27 -2
- localstack/services/lambda_/invocation/lambda_service.py +51 -3
- localstack/services/lambda_/invocation/models.py +9 -1
- localstack/services/lambda_/invocation/version_manager.py +18 -3
- localstack/services/lambda_/packages.py +1 -1
- localstack/services/lambda_/provider.py +240 -96
- localstack/services/lambda_/resource_providers/aws_lambda_function.py +33 -1
- localstack/services/lambda_/runtimes.py +10 -3
- localstack/services/logs/provider.py +45 -19
- localstack/services/opensearch/provider.py +53 -3
- localstack/services/resource_groups/provider.py +5 -1
- localstack/services/resourcegroupstaggingapi/provider.py +6 -1
- localstack/services/s3/provider.py +29 -16
- localstack/services/s3/utils.py +35 -14
- localstack/services/s3control/provider.py +101 -2
- localstack/services/s3control/validation.py +50 -0
- localstack/services/sns/constants.py +3 -1
- localstack/services/sns/publisher.py +15 -6
- localstack/services/sns/v2/models.py +30 -1
- localstack/services/sns/v2/provider.py +794 -31
- localstack/services/sns/v2/utils.py +20 -0
- localstack/services/sqs/models.py +37 -10
- localstack/services/stepfunctions/asl/component/common/path/result_path.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/execute_state.py +0 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_map/state_map.py +0 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/lambda_eval_utils.py +8 -8
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/{mock_eval_utils.py → local_mock_eval_utils.py} +13 -9
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service.py +6 -6
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_callback.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_fail/state_fail.py +4 -0
- localstack/services/stepfunctions/asl/component/test_state/state/base_mock.py +118 -0
- localstack/services/stepfunctions/asl/component/test_state/state/common.py +82 -0
- localstack/services/stepfunctions/asl/component/test_state/state/execution.py +139 -0
- localstack/services/stepfunctions/asl/component/test_state/state/map.py +77 -0
- localstack/services/stepfunctions/asl/component/test_state/state/task.py +44 -0
- localstack/services/stepfunctions/asl/eval/environment.py +30 -22
- localstack/services/stepfunctions/asl/eval/states.py +1 -1
- localstack/services/stepfunctions/asl/eval/test_state/environment.py +49 -9
- localstack/services/stepfunctions/asl/eval/test_state/program_state.py +22 -0
- localstack/services/stepfunctions/asl/jsonata/jsonata.py +5 -1
- localstack/services/stepfunctions/asl/parse/preprocessor.py +67 -24
- localstack/services/stepfunctions/asl/parse/test_state/asl_parser.py +5 -4
- localstack/services/stepfunctions/asl/parse/test_state/preprocessor.py +222 -31
- localstack/services/stepfunctions/asl/static_analyser/test_state/test_state_analyser.py +170 -22
- localstack/services/stepfunctions/backend/execution.py +6 -6
- localstack/services/stepfunctions/backend/execution_worker.py +5 -5
- localstack/services/stepfunctions/backend/test_state/execution.py +36 -0
- localstack/services/stepfunctions/backend/test_state/execution_worker.py +33 -1
- localstack/services/stepfunctions/backend/test_state/test_state_mock.py +127 -0
- localstack/services/stepfunctions/local_mocking/__init__.py +9 -0
- localstack/services/stepfunctions/{mocking → local_mocking}/mock_config.py +24 -17
- localstack/services/stepfunctions/provider.py +78 -27
- localstack/services/stepfunctions/test_state/mock_config.py +47 -0
- localstack/testing/pytest/fixtures.py +28 -0
- localstack/testing/snapshots/transformer_utility.py +7 -0
- localstack/testing/testselection/matching.py +0 -1
- localstack/utils/analytics/publisher.py +37 -155
- localstack/utils/analytics/service_request_aggregator.py +6 -4
- localstack/utils/aws/arns.py +7 -0
- localstack/utils/aws/client_types.py +0 -8
- localstack/utils/batching.py +258 -0
- localstack/utils/catalog/catalog_loader.py +111 -3
- localstack/utils/collections.py +23 -11
- localstack/utils/crypto.py +109 -0
- localstack/version.py +2 -2
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/METADATA +7 -6
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/RECORD +149 -141
- localstack_core-4.11.2.dev14.dist-info/plux.json +1 -0
- localstack/services/stepfunctions/mocking/__init__.py +0 -0
- localstack/utils/batch_policy.py +0 -124
- localstack_core-4.10.1.dev7.dist-info/plux.json +0 -1
- /localstack/services/stepfunctions/{mocking → local_mocking}/mock_config_file.py +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/WHEEL +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from datetime import datetime
|
|
2
2
|
from enum import StrEnum
|
|
3
|
-
from typing import
|
|
3
|
+
from typing import TypedDict
|
|
4
4
|
|
|
5
5
|
from localstack.aws.api import RequestContext, ServiceException, ServiceRequest, handler
|
|
6
6
|
|
|
@@ -521,7 +521,7 @@ class TooManyTagsException(ServiceException):
|
|
|
521
521
|
|
|
522
522
|
|
|
523
523
|
class AbortIncompleteMultipartUpload(TypedDict, total=False):
|
|
524
|
-
DaysAfterInitiation:
|
|
524
|
+
DaysAfterInitiation: DaysAfterInitiation | None
|
|
525
525
|
|
|
526
526
|
|
|
527
527
|
class AccessControlTranslation(TypedDict, total=False):
|
|
@@ -532,50 +532,50 @@ CreationTimestamp = datetime
|
|
|
532
532
|
|
|
533
533
|
|
|
534
534
|
class ListAccessGrantsInstanceEntry(TypedDict, total=False):
|
|
535
|
-
AccessGrantsInstanceId:
|
|
536
|
-
AccessGrantsInstanceArn:
|
|
537
|
-
CreatedAt:
|
|
538
|
-
IdentityCenterArn:
|
|
539
|
-
IdentityCenterInstanceArn:
|
|
540
|
-
IdentityCenterApplicationArn:
|
|
535
|
+
AccessGrantsInstanceId: AccessGrantsInstanceId | None
|
|
536
|
+
AccessGrantsInstanceArn: AccessGrantsInstanceArn | None
|
|
537
|
+
CreatedAt: CreationTimestamp | None
|
|
538
|
+
IdentityCenterArn: IdentityCenterArn | None
|
|
539
|
+
IdentityCenterInstanceArn: IdentityCenterArn | None
|
|
540
|
+
IdentityCenterApplicationArn: IdentityCenterApplicationArn | None
|
|
541
541
|
|
|
542
542
|
|
|
543
|
-
AccessGrantsInstancesList =
|
|
543
|
+
AccessGrantsInstancesList = list[ListAccessGrantsInstanceEntry]
|
|
544
544
|
|
|
545
545
|
|
|
546
546
|
class AccessGrantsLocationConfiguration(TypedDict, total=False):
|
|
547
|
-
S3SubPrefix:
|
|
547
|
+
S3SubPrefix: S3Prefix | None
|
|
548
548
|
|
|
549
549
|
|
|
550
550
|
class Grantee(TypedDict, total=False):
|
|
551
|
-
GranteeType:
|
|
552
|
-
GranteeIdentifier:
|
|
551
|
+
GranteeType: GranteeType | None
|
|
552
|
+
GranteeIdentifier: GranteeIdentifier | None
|
|
553
553
|
|
|
554
554
|
|
|
555
555
|
class ListAccessGrantEntry(TypedDict, total=False):
|
|
556
|
-
CreatedAt:
|
|
557
|
-
AccessGrantId:
|
|
558
|
-
AccessGrantArn:
|
|
559
|
-
Grantee:
|
|
560
|
-
Permission:
|
|
561
|
-
AccessGrantsLocationId:
|
|
562
|
-
AccessGrantsLocationConfiguration:
|
|
563
|
-
GrantScope:
|
|
564
|
-
ApplicationArn:
|
|
556
|
+
CreatedAt: CreationTimestamp | None
|
|
557
|
+
AccessGrantId: AccessGrantId | None
|
|
558
|
+
AccessGrantArn: AccessGrantArn | None
|
|
559
|
+
Grantee: Grantee | None
|
|
560
|
+
Permission: Permission | None
|
|
561
|
+
AccessGrantsLocationId: AccessGrantsLocationId | None
|
|
562
|
+
AccessGrantsLocationConfiguration: AccessGrantsLocationConfiguration | None
|
|
563
|
+
GrantScope: S3Prefix | None
|
|
564
|
+
ApplicationArn: IdentityCenterApplicationArn | None
|
|
565
565
|
|
|
566
566
|
|
|
567
|
-
AccessGrantsList =
|
|
567
|
+
AccessGrantsList = list[ListAccessGrantEntry]
|
|
568
568
|
|
|
569
569
|
|
|
570
570
|
class ListAccessGrantsLocationsEntry(TypedDict, total=False):
|
|
571
|
-
CreatedAt:
|
|
572
|
-
AccessGrantsLocationId:
|
|
573
|
-
AccessGrantsLocationArn:
|
|
574
|
-
LocationScope:
|
|
575
|
-
IAMRoleArn:
|
|
571
|
+
CreatedAt: CreationTimestamp | None
|
|
572
|
+
AccessGrantsLocationId: AccessGrantsLocationId | None
|
|
573
|
+
AccessGrantsLocationArn: AccessGrantsLocationArn | None
|
|
574
|
+
LocationScope: S3Prefix | None
|
|
575
|
+
IAMRoleArn: IAMRoleArn | None
|
|
576
576
|
|
|
577
577
|
|
|
578
|
-
AccessGrantsLocationsList =
|
|
578
|
+
AccessGrantsLocationsList = list[ListAccessGrantsLocationsEntry]
|
|
579
579
|
|
|
580
580
|
|
|
581
581
|
class VpcConfiguration(TypedDict, total=False):
|
|
@@ -585,50 +585,50 @@ class VpcConfiguration(TypedDict, total=False):
|
|
|
585
585
|
class AccessPoint(TypedDict, total=False):
|
|
586
586
|
Name: AccessPointName
|
|
587
587
|
NetworkOrigin: NetworkOrigin
|
|
588
|
-
VpcConfiguration:
|
|
588
|
+
VpcConfiguration: VpcConfiguration | None
|
|
589
589
|
Bucket: AccessPointBucketName
|
|
590
|
-
AccessPointArn:
|
|
591
|
-
Alias:
|
|
592
|
-
BucketAccountId:
|
|
593
|
-
DataSourceId:
|
|
594
|
-
DataSourceType:
|
|
590
|
+
AccessPointArn: S3AccessPointArn | None
|
|
591
|
+
Alias: Alias | None
|
|
592
|
+
BucketAccountId: AccountId | None
|
|
593
|
+
DataSourceId: DataSourceId | None
|
|
594
|
+
DataSourceType: DataSourceType | None
|
|
595
595
|
|
|
596
596
|
|
|
597
|
-
AccessPointList =
|
|
598
|
-
StorageLensGroupLevelExclude =
|
|
599
|
-
StorageLensGroupLevelInclude =
|
|
597
|
+
AccessPointList = list[AccessPoint]
|
|
598
|
+
StorageLensGroupLevelExclude = list[StorageLensGroupArn]
|
|
599
|
+
StorageLensGroupLevelInclude = list[StorageLensGroupArn]
|
|
600
600
|
|
|
601
601
|
|
|
602
602
|
class StorageLensGroupLevelSelectionCriteria(TypedDict, total=False):
|
|
603
|
-
Include:
|
|
604
|
-
Exclude:
|
|
603
|
+
Include: StorageLensGroupLevelInclude | None
|
|
604
|
+
Exclude: StorageLensGroupLevelExclude | None
|
|
605
605
|
|
|
606
606
|
|
|
607
607
|
class StorageLensGroupLevel(TypedDict, total=False):
|
|
608
|
-
SelectionCriteria:
|
|
608
|
+
SelectionCriteria: StorageLensGroupLevelSelectionCriteria | None
|
|
609
609
|
|
|
610
610
|
|
|
611
611
|
class DetailedStatusCodesMetrics(TypedDict, total=False):
|
|
612
|
-
IsEnabled:
|
|
612
|
+
IsEnabled: IsEnabled | None
|
|
613
613
|
|
|
614
614
|
|
|
615
615
|
class AdvancedDataProtectionMetrics(TypedDict, total=False):
|
|
616
|
-
IsEnabled:
|
|
616
|
+
IsEnabled: IsEnabled | None
|
|
617
617
|
|
|
618
618
|
|
|
619
619
|
class AdvancedCostOptimizationMetrics(TypedDict, total=False):
|
|
620
|
-
IsEnabled:
|
|
620
|
+
IsEnabled: IsEnabled | None
|
|
621
621
|
|
|
622
622
|
|
|
623
623
|
class SelectionCriteria(TypedDict, total=False):
|
|
624
|
-
Delimiter:
|
|
625
|
-
MaxDepth:
|
|
626
|
-
MinStorageBytesPercentage:
|
|
624
|
+
Delimiter: StorageLensPrefixLevelDelimiter | None
|
|
625
|
+
MaxDepth: StorageLensPrefixLevelMaxDepth | None
|
|
626
|
+
MinStorageBytesPercentage: MinStorageBytesPercentage | None
|
|
627
627
|
|
|
628
628
|
|
|
629
629
|
class PrefixLevelStorageMetrics(TypedDict, total=False):
|
|
630
|
-
IsEnabled:
|
|
631
|
-
SelectionCriteria:
|
|
630
|
+
IsEnabled: IsEnabled | None
|
|
631
|
+
SelectionCriteria: SelectionCriteria | None
|
|
632
632
|
|
|
633
633
|
|
|
634
634
|
class PrefixLevel(TypedDict, total=False):
|
|
@@ -636,24 +636,24 @@ class PrefixLevel(TypedDict, total=False):
|
|
|
636
636
|
|
|
637
637
|
|
|
638
638
|
class ActivityMetrics(TypedDict, total=False):
|
|
639
|
-
IsEnabled:
|
|
639
|
+
IsEnabled: IsEnabled | None
|
|
640
640
|
|
|
641
641
|
|
|
642
642
|
class BucketLevel(TypedDict, total=False):
|
|
643
|
-
ActivityMetrics:
|
|
644
|
-
PrefixLevel:
|
|
645
|
-
AdvancedCostOptimizationMetrics:
|
|
646
|
-
AdvancedDataProtectionMetrics:
|
|
647
|
-
DetailedStatusCodesMetrics:
|
|
643
|
+
ActivityMetrics: ActivityMetrics | None
|
|
644
|
+
PrefixLevel: PrefixLevel | None
|
|
645
|
+
AdvancedCostOptimizationMetrics: AdvancedCostOptimizationMetrics | None
|
|
646
|
+
AdvancedDataProtectionMetrics: AdvancedDataProtectionMetrics | None
|
|
647
|
+
DetailedStatusCodesMetrics: DetailedStatusCodesMetrics | None
|
|
648
648
|
|
|
649
649
|
|
|
650
650
|
class AccountLevel(TypedDict, total=False):
|
|
651
|
-
ActivityMetrics:
|
|
651
|
+
ActivityMetrics: ActivityMetrics | None
|
|
652
652
|
BucketLevel: BucketLevel
|
|
653
|
-
AdvancedCostOptimizationMetrics:
|
|
654
|
-
AdvancedDataProtectionMetrics:
|
|
655
|
-
DetailedStatusCodesMetrics:
|
|
656
|
-
StorageLensGroupLevel:
|
|
653
|
+
AdvancedCostOptimizationMetrics: AdvancedCostOptimizationMetrics | None
|
|
654
|
+
AdvancedDataProtectionMetrics: AdvancedDataProtectionMetrics | None
|
|
655
|
+
DetailedStatusCodesMetrics: DetailedStatusCodesMetrics | None
|
|
656
|
+
StorageLensGroupLevel: StorageLensGroupLevel | None
|
|
657
657
|
|
|
658
658
|
|
|
659
659
|
class AssociateAccessGrantsIdentityCenterRequest(ServiceRequest):
|
|
@@ -665,27 +665,27 @@ AsyncCreationTimestamp = datetime
|
|
|
665
665
|
|
|
666
666
|
|
|
667
667
|
class AsyncErrorDetails(TypedDict, total=False):
|
|
668
|
-
Code:
|
|
669
|
-
Message:
|
|
670
|
-
Resource:
|
|
671
|
-
RequestId:
|
|
668
|
+
Code: MaxLength1024String | None
|
|
669
|
+
Message: MaxLength1024String | None
|
|
670
|
+
Resource: MaxLength1024String | None
|
|
671
|
+
RequestId: MaxLength1024String | None
|
|
672
672
|
|
|
673
673
|
|
|
674
674
|
class MultiRegionAccessPointRegionalResponse(TypedDict, total=False):
|
|
675
|
-
Name:
|
|
676
|
-
RequestStatus:
|
|
675
|
+
Name: RegionName | None
|
|
676
|
+
RequestStatus: AsyncRequestStatus | None
|
|
677
677
|
|
|
678
678
|
|
|
679
|
-
MultiRegionAccessPointRegionalResponseList =
|
|
679
|
+
MultiRegionAccessPointRegionalResponseList = list[MultiRegionAccessPointRegionalResponse]
|
|
680
680
|
|
|
681
681
|
|
|
682
682
|
class MultiRegionAccessPointsAsyncResponse(TypedDict, total=False):
|
|
683
|
-
Regions:
|
|
683
|
+
Regions: MultiRegionAccessPointRegionalResponseList | None
|
|
684
684
|
|
|
685
685
|
|
|
686
686
|
class AsyncResponseDetails(TypedDict, total=False):
|
|
687
|
-
MultiRegionAccessPointDetails:
|
|
688
|
-
ErrorDetails:
|
|
687
|
+
MultiRegionAccessPointDetails: MultiRegionAccessPointsAsyncResponse | None
|
|
688
|
+
ErrorDetails: AsyncErrorDetails | None
|
|
689
689
|
|
|
690
690
|
|
|
691
691
|
class PutMultiRegionAccessPointPolicyInput(TypedDict, total=False):
|
|
@@ -699,55 +699,55 @@ class DeleteMultiRegionAccessPointInput(TypedDict, total=False):
|
|
|
699
699
|
|
|
700
700
|
class Region(TypedDict, total=False):
|
|
701
701
|
Bucket: BucketName
|
|
702
|
-
BucketAccountId:
|
|
702
|
+
BucketAccountId: AccountId | None
|
|
703
703
|
|
|
704
704
|
|
|
705
|
-
RegionCreationList =
|
|
705
|
+
RegionCreationList = list[Region]
|
|
706
706
|
|
|
707
707
|
|
|
708
708
|
class PublicAccessBlockConfiguration(TypedDict, total=False):
|
|
709
|
-
BlockPublicAcls:
|
|
710
|
-
IgnorePublicAcls:
|
|
711
|
-
BlockPublicPolicy:
|
|
712
|
-
RestrictPublicBuckets:
|
|
709
|
+
BlockPublicAcls: Setting | None
|
|
710
|
+
IgnorePublicAcls: Setting | None
|
|
711
|
+
BlockPublicPolicy: Setting | None
|
|
712
|
+
RestrictPublicBuckets: Setting | None
|
|
713
713
|
|
|
714
714
|
|
|
715
715
|
class CreateMultiRegionAccessPointInput(TypedDict, total=False):
|
|
716
716
|
Name: MultiRegionAccessPointName
|
|
717
|
-
PublicAccessBlock:
|
|
717
|
+
PublicAccessBlock: PublicAccessBlockConfiguration | None
|
|
718
718
|
Regions: RegionCreationList
|
|
719
719
|
|
|
720
720
|
|
|
721
721
|
class AsyncRequestParameters(TypedDict, total=False):
|
|
722
|
-
CreateMultiRegionAccessPointRequest:
|
|
723
|
-
DeleteMultiRegionAccessPointRequest:
|
|
724
|
-
PutMultiRegionAccessPointPolicyRequest:
|
|
722
|
+
CreateMultiRegionAccessPointRequest: CreateMultiRegionAccessPointInput | None
|
|
723
|
+
DeleteMultiRegionAccessPointRequest: DeleteMultiRegionAccessPointInput | None
|
|
724
|
+
PutMultiRegionAccessPointPolicyRequest: PutMultiRegionAccessPointPolicyInput | None
|
|
725
725
|
|
|
726
726
|
|
|
727
727
|
class AsyncOperation(TypedDict, total=False):
|
|
728
|
-
CreationTime:
|
|
729
|
-
Operation:
|
|
730
|
-
RequestTokenARN:
|
|
731
|
-
RequestParameters:
|
|
732
|
-
RequestStatus:
|
|
733
|
-
ResponseDetails:
|
|
728
|
+
CreationTime: AsyncCreationTimestamp | None
|
|
729
|
+
Operation: AsyncOperationName | None
|
|
730
|
+
RequestTokenARN: AsyncRequestTokenARN | None
|
|
731
|
+
RequestParameters: AsyncRequestParameters | None
|
|
732
|
+
RequestStatus: AsyncRequestStatus | None
|
|
733
|
+
ResponseDetails: AsyncResponseDetails | None
|
|
734
734
|
|
|
735
735
|
|
|
736
736
|
class AwsLambdaTransformation(TypedDict, total=False):
|
|
737
737
|
FunctionArn: FunctionArnString
|
|
738
|
-
FunctionPayload:
|
|
738
|
+
FunctionPayload: AwsLambdaTransformationPayload | None
|
|
739
739
|
|
|
740
740
|
|
|
741
|
-
Buckets =
|
|
741
|
+
Buckets = list[S3BucketArnString]
|
|
742
742
|
|
|
743
743
|
|
|
744
744
|
class ListCallerAccessGrantsEntry(TypedDict, total=False):
|
|
745
|
-
Permission:
|
|
746
|
-
GrantScope:
|
|
747
|
-
ApplicationArn:
|
|
745
|
+
Permission: Permission | None
|
|
746
|
+
GrantScope: S3Prefix | None
|
|
747
|
+
ApplicationArn: IdentityCenterApplicationArn | None
|
|
748
748
|
|
|
749
749
|
|
|
750
|
-
CallerAccessGrantsList =
|
|
750
|
+
CallerAccessGrantsList = list[ListCallerAccessGrantsEntry]
|
|
751
751
|
|
|
752
752
|
|
|
753
753
|
class CloudWatchMetrics(TypedDict, total=False):
|
|
@@ -759,67 +759,67 @@ class Tag(TypedDict, total=False):
|
|
|
759
759
|
Value: TagValueString
|
|
760
760
|
|
|
761
761
|
|
|
762
|
-
TagList =
|
|
762
|
+
TagList = list[Tag]
|
|
763
763
|
|
|
764
764
|
|
|
765
765
|
class CreateAccessGrantRequest(ServiceRequest):
|
|
766
766
|
AccountId: AccountId
|
|
767
767
|
AccessGrantsLocationId: AccessGrantsLocationId
|
|
768
|
-
AccessGrantsLocationConfiguration:
|
|
768
|
+
AccessGrantsLocationConfiguration: AccessGrantsLocationConfiguration | None
|
|
769
769
|
Grantee: Grantee
|
|
770
770
|
Permission: Permission
|
|
771
|
-
ApplicationArn:
|
|
772
|
-
S3PrefixType:
|
|
773
|
-
Tags:
|
|
771
|
+
ApplicationArn: IdentityCenterApplicationArn | None
|
|
772
|
+
S3PrefixType: S3PrefixType | None
|
|
773
|
+
Tags: TagList | None
|
|
774
774
|
|
|
775
775
|
|
|
776
776
|
class CreateAccessGrantResult(TypedDict, total=False):
|
|
777
|
-
CreatedAt:
|
|
778
|
-
AccessGrantId:
|
|
779
|
-
AccessGrantArn:
|
|
780
|
-
Grantee:
|
|
781
|
-
AccessGrantsLocationId:
|
|
782
|
-
AccessGrantsLocationConfiguration:
|
|
783
|
-
Permission:
|
|
784
|
-
ApplicationArn:
|
|
785
|
-
GrantScope:
|
|
777
|
+
CreatedAt: CreationTimestamp | None
|
|
778
|
+
AccessGrantId: AccessGrantId | None
|
|
779
|
+
AccessGrantArn: AccessGrantArn | None
|
|
780
|
+
Grantee: Grantee | None
|
|
781
|
+
AccessGrantsLocationId: AccessGrantsLocationId | None
|
|
782
|
+
AccessGrantsLocationConfiguration: AccessGrantsLocationConfiguration | None
|
|
783
|
+
Permission: Permission | None
|
|
784
|
+
ApplicationArn: IdentityCenterApplicationArn | None
|
|
785
|
+
GrantScope: S3Prefix | None
|
|
786
786
|
|
|
787
787
|
|
|
788
788
|
class CreateAccessGrantsInstanceRequest(ServiceRequest):
|
|
789
789
|
AccountId: AccountId
|
|
790
|
-
IdentityCenterArn:
|
|
791
|
-
Tags:
|
|
790
|
+
IdentityCenterArn: IdentityCenterArn | None
|
|
791
|
+
Tags: TagList | None
|
|
792
792
|
|
|
793
793
|
|
|
794
794
|
class CreateAccessGrantsInstanceResult(TypedDict, total=False):
|
|
795
|
-
CreatedAt:
|
|
796
|
-
AccessGrantsInstanceId:
|
|
797
|
-
AccessGrantsInstanceArn:
|
|
798
|
-
IdentityCenterArn:
|
|
799
|
-
IdentityCenterInstanceArn:
|
|
800
|
-
IdentityCenterApplicationArn:
|
|
795
|
+
CreatedAt: CreationTimestamp | None
|
|
796
|
+
AccessGrantsInstanceId: AccessGrantsInstanceId | None
|
|
797
|
+
AccessGrantsInstanceArn: AccessGrantsInstanceArn | None
|
|
798
|
+
IdentityCenterArn: IdentityCenterArn | None
|
|
799
|
+
IdentityCenterInstanceArn: IdentityCenterArn | None
|
|
800
|
+
IdentityCenterApplicationArn: IdentityCenterApplicationArn | None
|
|
801
801
|
|
|
802
802
|
|
|
803
803
|
class CreateAccessGrantsLocationRequest(ServiceRequest):
|
|
804
804
|
AccountId: AccountId
|
|
805
805
|
LocationScope: S3Prefix
|
|
806
806
|
IAMRoleArn: IAMRoleArn
|
|
807
|
-
Tags:
|
|
807
|
+
Tags: TagList | None
|
|
808
808
|
|
|
809
809
|
|
|
810
810
|
class CreateAccessGrantsLocationResult(TypedDict, total=False):
|
|
811
|
-
CreatedAt:
|
|
812
|
-
AccessGrantsLocationId:
|
|
813
|
-
AccessGrantsLocationArn:
|
|
814
|
-
LocationScope:
|
|
815
|
-
IAMRoleArn:
|
|
811
|
+
CreatedAt: CreationTimestamp | None
|
|
812
|
+
AccessGrantsLocationId: AccessGrantsLocationId | None
|
|
813
|
+
AccessGrantsLocationArn: AccessGrantsLocationArn | None
|
|
814
|
+
LocationScope: S3Prefix | None
|
|
815
|
+
IAMRoleArn: IAMRoleArn | None
|
|
816
816
|
|
|
817
817
|
|
|
818
818
|
class ObjectLambdaContentTransformation(TypedDict, total=False):
|
|
819
|
-
AwsLambda:
|
|
819
|
+
AwsLambda: AwsLambdaTransformation | None
|
|
820
820
|
|
|
821
821
|
|
|
822
|
-
ObjectLambdaTransformationConfigurationActionsList =
|
|
822
|
+
ObjectLambdaTransformationConfigurationActionsList = list[
|
|
823
823
|
ObjectLambdaTransformationConfigurationAction
|
|
824
824
|
]
|
|
825
825
|
|
|
@@ -829,14 +829,14 @@ class ObjectLambdaTransformationConfiguration(TypedDict, total=False):
|
|
|
829
829
|
ContentTransformation: ObjectLambdaContentTransformation
|
|
830
830
|
|
|
831
831
|
|
|
832
|
-
ObjectLambdaTransformationConfigurationsList =
|
|
833
|
-
ObjectLambdaAllowedFeaturesList =
|
|
832
|
+
ObjectLambdaTransformationConfigurationsList = list[ObjectLambdaTransformationConfiguration]
|
|
833
|
+
ObjectLambdaAllowedFeaturesList = list[ObjectLambdaAllowedFeature]
|
|
834
834
|
|
|
835
835
|
|
|
836
836
|
class ObjectLambdaConfiguration(TypedDict, total=False):
|
|
837
837
|
SupportingAccessPoint: ObjectLambdaSupportingAccessPointArn
|
|
838
|
-
CloudWatchMetricsEnabled:
|
|
839
|
-
AllowedFeatures:
|
|
838
|
+
CloudWatchMetricsEnabled: Boolean | None
|
|
839
|
+
AllowedFeatures: ObjectLambdaAllowedFeaturesList | None
|
|
840
840
|
TransformationConfigurations: ObjectLambdaTransformationConfigurationsList
|
|
841
841
|
|
|
842
842
|
|
|
@@ -847,60 +847,60 @@ class CreateAccessPointForObjectLambdaRequest(ServiceRequest):
|
|
|
847
847
|
|
|
848
848
|
|
|
849
849
|
class ObjectLambdaAccessPointAlias(TypedDict, total=False):
|
|
850
|
-
Value:
|
|
851
|
-
Status:
|
|
850
|
+
Value: ObjectLambdaAccessPointAliasValue | None
|
|
851
|
+
Status: ObjectLambdaAccessPointAliasStatus | None
|
|
852
852
|
|
|
853
853
|
|
|
854
854
|
class CreateAccessPointForObjectLambdaResult(TypedDict, total=False):
|
|
855
|
-
ObjectLambdaAccessPointArn:
|
|
856
|
-
Alias:
|
|
855
|
+
ObjectLambdaAccessPointArn: ObjectLambdaAccessPointArn | None
|
|
856
|
+
Alias: ObjectLambdaAccessPointAlias | None
|
|
857
857
|
|
|
858
858
|
|
|
859
|
-
ScopePermissionList =
|
|
860
|
-
PrefixesList =
|
|
859
|
+
ScopePermissionList = list[ScopePermission]
|
|
860
|
+
PrefixesList = list[Prefix]
|
|
861
861
|
|
|
862
862
|
|
|
863
863
|
class Scope(TypedDict, total=False):
|
|
864
|
-
Prefixes:
|
|
865
|
-
Permissions:
|
|
864
|
+
Prefixes: PrefixesList | None
|
|
865
|
+
Permissions: ScopePermissionList | None
|
|
866
866
|
|
|
867
867
|
|
|
868
868
|
class CreateAccessPointRequest(ServiceRequest):
|
|
869
869
|
AccountId: AccountId
|
|
870
870
|
Name: AccessPointName
|
|
871
871
|
Bucket: BucketName
|
|
872
|
-
VpcConfiguration:
|
|
873
|
-
PublicAccessBlockConfiguration:
|
|
874
|
-
BucketAccountId:
|
|
875
|
-
Scope:
|
|
876
|
-
Tags:
|
|
872
|
+
VpcConfiguration: VpcConfiguration | None
|
|
873
|
+
PublicAccessBlockConfiguration: PublicAccessBlockConfiguration | None
|
|
874
|
+
BucketAccountId: AccountId | None
|
|
875
|
+
Scope: Scope | None
|
|
876
|
+
Tags: TagList | None
|
|
877
877
|
|
|
878
878
|
|
|
879
879
|
class CreateAccessPointResult(TypedDict, total=False):
|
|
880
|
-
AccessPointArn:
|
|
881
|
-
Alias:
|
|
880
|
+
AccessPointArn: S3AccessPointArn | None
|
|
881
|
+
Alias: Alias | None
|
|
882
882
|
|
|
883
883
|
|
|
884
884
|
class CreateBucketConfiguration(TypedDict, total=False):
|
|
885
|
-
LocationConstraint:
|
|
885
|
+
LocationConstraint: BucketLocationConstraint | None
|
|
886
886
|
|
|
887
887
|
|
|
888
888
|
class CreateBucketRequest(ServiceRequest):
|
|
889
|
-
ACL:
|
|
889
|
+
ACL: BucketCannedACL | None
|
|
890
890
|
Bucket: BucketName
|
|
891
|
-
CreateBucketConfiguration:
|
|
892
|
-
GrantFullControl:
|
|
893
|
-
GrantRead:
|
|
894
|
-
GrantReadACP:
|
|
895
|
-
GrantWrite:
|
|
896
|
-
GrantWriteACP:
|
|
897
|
-
ObjectLockEnabledForBucket:
|
|
898
|
-
OutpostId:
|
|
891
|
+
CreateBucketConfiguration: CreateBucketConfiguration | None
|
|
892
|
+
GrantFullControl: GrantFullControl | None
|
|
893
|
+
GrantRead: GrantRead | None
|
|
894
|
+
GrantReadACP: GrantReadACP | None
|
|
895
|
+
GrantWrite: GrantWrite | None
|
|
896
|
+
GrantWriteACP: GrantWriteACP | None
|
|
897
|
+
ObjectLockEnabledForBucket: ObjectLockEnabledForBucket | None
|
|
898
|
+
OutpostId: NonEmptyMaxLength64String | None
|
|
899
899
|
|
|
900
900
|
|
|
901
901
|
class CreateBucketResult(TypedDict, total=False):
|
|
902
|
-
Location:
|
|
903
|
-
BucketArn:
|
|
902
|
+
Location: Location | None
|
|
903
|
+
BucketArn: S3RegionalBucketArn | None
|
|
904
904
|
|
|
905
905
|
|
|
906
906
|
class NotSSEFilter(TypedDict, total=False):
|
|
@@ -912,12 +912,12 @@ class SSECFilter(TypedDict, total=False):
|
|
|
912
912
|
|
|
913
913
|
|
|
914
914
|
class DSSEKMSFilter(TypedDict, total=False):
|
|
915
|
-
KmsKeyArn:
|
|
915
|
+
KmsKeyArn: NonEmptyKmsKeyArnString | None
|
|
916
916
|
|
|
917
917
|
|
|
918
918
|
class SSEKMSFilter(TypedDict, total=False):
|
|
919
|
-
KmsKeyArn:
|
|
920
|
-
BucketKeyEnabled:
|
|
919
|
+
KmsKeyArn: NonEmptyKmsKeyArnString | None
|
|
920
|
+
BucketKeyEnabled: Boolean | None
|
|
921
921
|
|
|
922
922
|
|
|
923
923
|
class SSES3Filter(TypedDict, total=False):
|
|
@@ -925,40 +925,40 @@ class SSES3Filter(TypedDict, total=False):
|
|
|
925
925
|
|
|
926
926
|
|
|
927
927
|
class ObjectEncryptionFilter(TypedDict, total=False):
|
|
928
|
-
SSES3:
|
|
929
|
-
SSEKMS:
|
|
930
|
-
DSSEKMS:
|
|
931
|
-
SSEC:
|
|
932
|
-
NOTSSE:
|
|
928
|
+
SSES3: SSES3Filter | None
|
|
929
|
+
SSEKMS: SSEKMSFilter | None
|
|
930
|
+
DSSEKMS: DSSEKMSFilter | None
|
|
931
|
+
SSEC: SSECFilter | None
|
|
932
|
+
NOTSSE: NotSSEFilter | None
|
|
933
933
|
|
|
934
934
|
|
|
935
|
-
ObjectEncryptionFilterList =
|
|
936
|
-
StorageClassList =
|
|
935
|
+
ObjectEncryptionFilterList = list[ObjectEncryptionFilter]
|
|
936
|
+
StorageClassList = list[S3StorageClass]
|
|
937
937
|
ObjectSizeLessThanBytes = int
|
|
938
938
|
ObjectSizeGreaterThanBytes = int
|
|
939
|
-
NonEmptyMaxLength1024StringList =
|
|
939
|
+
NonEmptyMaxLength1024StringList = list[NonEmptyMaxLength1024String]
|
|
940
940
|
|
|
941
941
|
|
|
942
942
|
class KeyNameConstraint(TypedDict, total=False):
|
|
943
|
-
MatchAnyPrefix:
|
|
944
|
-
MatchAnySuffix:
|
|
945
|
-
MatchAnySubstring:
|
|
943
|
+
MatchAnyPrefix: NonEmptyMaxLength1024StringList | None
|
|
944
|
+
MatchAnySuffix: NonEmptyMaxLength1024StringList | None
|
|
945
|
+
MatchAnySubstring: NonEmptyMaxLength1024StringList | None
|
|
946
946
|
|
|
947
947
|
|
|
948
|
-
ReplicationStatusFilterList =
|
|
948
|
+
ReplicationStatusFilterList = list[ReplicationStatus]
|
|
949
949
|
ObjectCreationTime = datetime
|
|
950
950
|
|
|
951
951
|
|
|
952
952
|
class JobManifestGeneratorFilter(TypedDict, total=False):
|
|
953
|
-
EligibleForReplication:
|
|
954
|
-
CreatedAfter:
|
|
955
|
-
CreatedBefore:
|
|
956
|
-
ObjectReplicationStatuses:
|
|
957
|
-
KeyNameConstraint:
|
|
958
|
-
ObjectSizeGreaterThanBytes:
|
|
959
|
-
ObjectSizeLessThanBytes:
|
|
960
|
-
MatchAnyStorageClass:
|
|
961
|
-
MatchAnyObjectEncryption:
|
|
953
|
+
EligibleForReplication: Boolean | None
|
|
954
|
+
CreatedAfter: ObjectCreationTime | None
|
|
955
|
+
CreatedBefore: ObjectCreationTime | None
|
|
956
|
+
ObjectReplicationStatuses: ReplicationStatusFilterList | None
|
|
957
|
+
KeyNameConstraint: KeyNameConstraint | None
|
|
958
|
+
ObjectSizeGreaterThanBytes: ObjectSizeGreaterThanBytes | None
|
|
959
|
+
ObjectSizeLessThanBytes: ObjectSizeLessThanBytes | None
|
|
960
|
+
MatchAnyStorageClass: StorageClassList | None
|
|
961
|
+
MatchAnyObjectEncryption: ObjectEncryptionFilterList | None
|
|
962
962
|
|
|
963
963
|
|
|
964
964
|
class SSEKMSEncryption(TypedDict, total=False):
|
|
@@ -970,28 +970,28 @@ class SSES3Encryption(TypedDict, total=False):
|
|
|
970
970
|
|
|
971
971
|
|
|
972
972
|
class GeneratedManifestEncryption(TypedDict, total=False):
|
|
973
|
-
SSES3:
|
|
974
|
-
SSEKMS:
|
|
973
|
+
SSES3: SSES3Encryption | None
|
|
974
|
+
SSEKMS: SSEKMSEncryption | None
|
|
975
975
|
|
|
976
976
|
|
|
977
977
|
class S3ManifestOutputLocation(TypedDict, total=False):
|
|
978
|
-
ExpectedManifestBucketOwner:
|
|
978
|
+
ExpectedManifestBucketOwner: AccountId | None
|
|
979
979
|
Bucket: S3BucketArnString
|
|
980
|
-
ManifestPrefix:
|
|
981
|
-
ManifestEncryption:
|
|
980
|
+
ManifestPrefix: ManifestPrefixString | None
|
|
981
|
+
ManifestEncryption: GeneratedManifestEncryption | None
|
|
982
982
|
ManifestFormat: GeneratedManifestFormat
|
|
983
983
|
|
|
984
984
|
|
|
985
985
|
class S3JobManifestGenerator(TypedDict, total=False):
|
|
986
|
-
ExpectedBucketOwner:
|
|
986
|
+
ExpectedBucketOwner: AccountId | None
|
|
987
987
|
SourceBucket: S3BucketArnString
|
|
988
|
-
ManifestOutputLocation:
|
|
989
|
-
Filter:
|
|
988
|
+
ManifestOutputLocation: S3ManifestOutputLocation | None
|
|
989
|
+
Filter: JobManifestGeneratorFilter | None
|
|
990
990
|
EnableManifestOutput: Boolean
|
|
991
991
|
|
|
992
992
|
|
|
993
993
|
class JobManifestGenerator(TypedDict, total=False):
|
|
994
|
-
S3JobManifestGenerator:
|
|
994
|
+
S3JobManifestGenerator: S3JobManifestGenerator | None
|
|
995
995
|
|
|
996
996
|
|
|
997
997
|
class S3Tag(TypedDict, total=False):
|
|
@@ -999,21 +999,21 @@ class S3Tag(TypedDict, total=False):
|
|
|
999
999
|
Value: TagValueString
|
|
1000
1000
|
|
|
1001
1001
|
|
|
1002
|
-
S3TagSet =
|
|
1002
|
+
S3TagSet = list[S3Tag]
|
|
1003
1003
|
|
|
1004
1004
|
|
|
1005
1005
|
class JobManifestLocation(TypedDict, total=False):
|
|
1006
1006
|
ObjectArn: S3KeyArnString
|
|
1007
|
-
ObjectVersionId:
|
|
1007
|
+
ObjectVersionId: S3ObjectVersionId | None
|
|
1008
1008
|
ETag: NonEmptyMaxLength1024String
|
|
1009
1009
|
|
|
1010
1010
|
|
|
1011
|
-
JobManifestFieldList =
|
|
1011
|
+
JobManifestFieldList = list[JobManifestFieldName]
|
|
1012
1012
|
|
|
1013
1013
|
|
|
1014
1014
|
class JobManifestSpec(TypedDict, total=False):
|
|
1015
1015
|
Format: JobManifestFormat
|
|
1016
|
-
Fields:
|
|
1016
|
+
Fields: JobManifestFieldList | None
|
|
1017
1017
|
|
|
1018
1018
|
|
|
1019
1019
|
class JobManifest(TypedDict, total=False):
|
|
@@ -1022,17 +1022,17 @@ class JobManifest(TypedDict, total=False):
|
|
|
1022
1022
|
|
|
1023
1023
|
|
|
1024
1024
|
class JobReport(TypedDict, total=False):
|
|
1025
|
-
Bucket:
|
|
1026
|
-
Format:
|
|
1025
|
+
Bucket: S3BucketArnString | None
|
|
1026
|
+
Format: JobReportFormat | None
|
|
1027
1027
|
Enabled: Boolean
|
|
1028
|
-
Prefix:
|
|
1029
|
-
ReportScope:
|
|
1030
|
-
ExpectedBucketOwner:
|
|
1028
|
+
Prefix: ReportPrefixString | None
|
|
1029
|
+
ReportScope: JobReportScope | None
|
|
1030
|
+
ExpectedBucketOwner: AccountId | None
|
|
1031
1031
|
|
|
1032
1032
|
|
|
1033
1033
|
class S3ComputeObjectChecksumOperation(TypedDict, total=False):
|
|
1034
|
-
ChecksumAlgorithm:
|
|
1035
|
-
ChecksumType:
|
|
1034
|
+
ChecksumAlgorithm: ComputeObjectChecksumAlgorithm | None
|
|
1035
|
+
ChecksumType: ComputeObjectChecksumType | None
|
|
1036
1036
|
|
|
1037
1037
|
|
|
1038
1038
|
class S3ReplicateObjectOperation(TypedDict, total=False):
|
|
@@ -1043,12 +1043,12 @@ TimeStamp = datetime
|
|
|
1043
1043
|
|
|
1044
1044
|
|
|
1045
1045
|
class S3Retention(TypedDict, total=False):
|
|
1046
|
-
RetainUntilDate:
|
|
1047
|
-
Mode:
|
|
1046
|
+
RetainUntilDate: TimeStamp | None
|
|
1047
|
+
Mode: S3ObjectLockRetentionMode | None
|
|
1048
1048
|
|
|
1049
1049
|
|
|
1050
1050
|
class S3SetObjectRetentionOperation(TypedDict, total=False):
|
|
1051
|
-
BypassGovernanceRetention:
|
|
1051
|
+
BypassGovernanceRetention: Boolean | None
|
|
1052
1052
|
Retention: S3Retention
|
|
1053
1053
|
|
|
1054
1054
|
|
|
@@ -1061,8 +1061,8 @@ class S3SetObjectLegalHoldOperation(TypedDict, total=False):
|
|
|
1061
1061
|
|
|
1062
1062
|
|
|
1063
1063
|
class S3InitiateRestoreObjectOperation(TypedDict, total=False):
|
|
1064
|
-
ExpirationInDays:
|
|
1065
|
-
GlacierJobTier:
|
|
1064
|
+
ExpirationInDays: S3ExpirationInDays | None
|
|
1065
|
+
GlacierJobTier: S3GlacierJobTier | None
|
|
1066
1066
|
|
|
1067
1067
|
|
|
1068
1068
|
class S3DeleteObjectTaggingOperation(TypedDict, total=False):
|
|
@@ -1070,119 +1070,119 @@ class S3DeleteObjectTaggingOperation(TypedDict, total=False):
|
|
|
1070
1070
|
|
|
1071
1071
|
|
|
1072
1072
|
class S3SetObjectTaggingOperation(TypedDict, total=False):
|
|
1073
|
-
TagSet:
|
|
1073
|
+
TagSet: S3TagSet | None
|
|
1074
1074
|
|
|
1075
1075
|
|
|
1076
1076
|
class S3Grantee(TypedDict, total=False):
|
|
1077
|
-
TypeIdentifier:
|
|
1078
|
-
Identifier:
|
|
1079
|
-
DisplayName:
|
|
1077
|
+
TypeIdentifier: S3GranteeTypeIdentifier | None
|
|
1078
|
+
Identifier: NonEmptyMaxLength1024String | None
|
|
1079
|
+
DisplayName: NonEmptyMaxLength1024String | None
|
|
1080
1080
|
|
|
1081
1081
|
|
|
1082
1082
|
class S3Grant(TypedDict, total=False):
|
|
1083
|
-
Grantee:
|
|
1084
|
-
Permission:
|
|
1083
|
+
Grantee: S3Grantee | None
|
|
1084
|
+
Permission: S3Permission | None
|
|
1085
1085
|
|
|
1086
1086
|
|
|
1087
|
-
S3GrantList =
|
|
1087
|
+
S3GrantList = list[S3Grant]
|
|
1088
1088
|
|
|
1089
1089
|
|
|
1090
1090
|
class S3ObjectOwner(TypedDict, total=False):
|
|
1091
|
-
ID:
|
|
1092
|
-
DisplayName:
|
|
1091
|
+
ID: NonEmptyMaxLength1024String | None
|
|
1092
|
+
DisplayName: NonEmptyMaxLength1024String | None
|
|
1093
1093
|
|
|
1094
1094
|
|
|
1095
1095
|
class S3AccessControlList(TypedDict, total=False):
|
|
1096
1096
|
Owner: S3ObjectOwner
|
|
1097
|
-
Grants:
|
|
1097
|
+
Grants: S3GrantList | None
|
|
1098
1098
|
|
|
1099
1099
|
|
|
1100
1100
|
class S3AccessControlPolicy(TypedDict, total=False):
|
|
1101
|
-
AccessControlList:
|
|
1102
|
-
CannedAccessControlList:
|
|
1101
|
+
AccessControlList: S3AccessControlList | None
|
|
1102
|
+
CannedAccessControlList: S3CannedAccessControlList | None
|
|
1103
1103
|
|
|
1104
1104
|
|
|
1105
1105
|
class S3SetObjectAclOperation(TypedDict, total=False):
|
|
1106
|
-
AccessControlPolicy:
|
|
1106
|
+
AccessControlPolicy: S3AccessControlPolicy | None
|
|
1107
1107
|
|
|
1108
1108
|
|
|
1109
1109
|
S3ContentLength = int
|
|
1110
|
-
S3UserMetadata =
|
|
1110
|
+
S3UserMetadata = dict[NonEmptyMaxLength1024String, MaxLength1024String]
|
|
1111
1111
|
|
|
1112
1112
|
|
|
1113
1113
|
class S3ObjectMetadata(TypedDict, total=False):
|
|
1114
|
-
CacheControl:
|
|
1115
|
-
ContentDisposition:
|
|
1116
|
-
ContentEncoding:
|
|
1117
|
-
ContentLanguage:
|
|
1118
|
-
UserMetadata:
|
|
1119
|
-
ContentLength:
|
|
1120
|
-
ContentMD5:
|
|
1121
|
-
ContentType:
|
|
1122
|
-
HttpExpiresDate:
|
|
1123
|
-
RequesterCharged:
|
|
1124
|
-
SSEAlgorithm:
|
|
1114
|
+
CacheControl: NonEmptyMaxLength1024String | None
|
|
1115
|
+
ContentDisposition: NonEmptyMaxLength1024String | None
|
|
1116
|
+
ContentEncoding: NonEmptyMaxLength1024String | None
|
|
1117
|
+
ContentLanguage: NonEmptyMaxLength1024String | None
|
|
1118
|
+
UserMetadata: S3UserMetadata | None
|
|
1119
|
+
ContentLength: S3ContentLength | None
|
|
1120
|
+
ContentMD5: NonEmptyMaxLength1024String | None
|
|
1121
|
+
ContentType: NonEmptyMaxLength1024String | None
|
|
1122
|
+
HttpExpiresDate: TimeStamp | None
|
|
1123
|
+
RequesterCharged: Boolean | None
|
|
1124
|
+
SSEAlgorithm: S3SSEAlgorithm | None
|
|
1125
1125
|
|
|
1126
1126
|
|
|
1127
1127
|
class S3CopyObjectOperation(TypedDict, total=False):
|
|
1128
|
-
TargetResource:
|
|
1129
|
-
CannedAccessControlList:
|
|
1130
|
-
AccessControlGrants:
|
|
1131
|
-
MetadataDirective:
|
|
1132
|
-
ModifiedSinceConstraint:
|
|
1133
|
-
NewObjectMetadata:
|
|
1134
|
-
NewObjectTagging:
|
|
1135
|
-
RedirectLocation:
|
|
1136
|
-
RequesterPays:
|
|
1137
|
-
StorageClass:
|
|
1138
|
-
UnModifiedSinceConstraint:
|
|
1139
|
-
SSEAwsKmsKeyId:
|
|
1140
|
-
TargetKeyPrefix:
|
|
1141
|
-
ObjectLockLegalHoldStatus:
|
|
1142
|
-
ObjectLockMode:
|
|
1143
|
-
ObjectLockRetainUntilDate:
|
|
1144
|
-
BucketKeyEnabled:
|
|
1145
|
-
ChecksumAlgorithm:
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
UserArguments =
|
|
1128
|
+
TargetResource: S3RegionalOrS3ExpressBucketArnString | None
|
|
1129
|
+
CannedAccessControlList: S3CannedAccessControlList | None
|
|
1130
|
+
AccessControlGrants: S3GrantList | None
|
|
1131
|
+
MetadataDirective: S3MetadataDirective | None
|
|
1132
|
+
ModifiedSinceConstraint: TimeStamp | None
|
|
1133
|
+
NewObjectMetadata: S3ObjectMetadata | None
|
|
1134
|
+
NewObjectTagging: S3TagSet | None
|
|
1135
|
+
RedirectLocation: NonEmptyMaxLength2048String | None
|
|
1136
|
+
RequesterPays: Boolean | None
|
|
1137
|
+
StorageClass: S3StorageClass | None
|
|
1138
|
+
UnModifiedSinceConstraint: TimeStamp | None
|
|
1139
|
+
SSEAwsKmsKeyId: KmsKeyArnString | None
|
|
1140
|
+
TargetKeyPrefix: NonEmptyMaxLength1024String | None
|
|
1141
|
+
ObjectLockLegalHoldStatus: S3ObjectLockLegalHoldStatus | None
|
|
1142
|
+
ObjectLockMode: S3ObjectLockMode | None
|
|
1143
|
+
ObjectLockRetainUntilDate: TimeStamp | None
|
|
1144
|
+
BucketKeyEnabled: Boolean | None
|
|
1145
|
+
ChecksumAlgorithm: S3ChecksumAlgorithm | None
|
|
1146
|
+
|
|
1147
|
+
|
|
1148
|
+
UserArguments = dict[NonEmptyMaxLength64String, MaxLength1024String]
|
|
1149
1149
|
|
|
1150
1150
|
|
|
1151
1151
|
class LambdaInvokeOperation(TypedDict, total=False):
|
|
1152
|
-
FunctionArn:
|
|
1153
|
-
InvocationSchemaVersion:
|
|
1154
|
-
UserArguments:
|
|
1152
|
+
FunctionArn: FunctionArnString | None
|
|
1153
|
+
InvocationSchemaVersion: NonEmptyMaxLength64String | None
|
|
1154
|
+
UserArguments: UserArguments | None
|
|
1155
1155
|
|
|
1156
1156
|
|
|
1157
1157
|
class JobOperation(TypedDict, total=False):
|
|
1158
|
-
LambdaInvoke:
|
|
1159
|
-
S3PutObjectCopy:
|
|
1160
|
-
S3PutObjectAcl:
|
|
1161
|
-
S3PutObjectTagging:
|
|
1162
|
-
S3DeleteObjectTagging:
|
|
1163
|
-
S3InitiateRestoreObject:
|
|
1164
|
-
S3PutObjectLegalHold:
|
|
1165
|
-
S3PutObjectRetention:
|
|
1166
|
-
S3ReplicateObject:
|
|
1167
|
-
S3ComputeObjectChecksum:
|
|
1158
|
+
LambdaInvoke: LambdaInvokeOperation | None
|
|
1159
|
+
S3PutObjectCopy: S3CopyObjectOperation | None
|
|
1160
|
+
S3PutObjectAcl: S3SetObjectAclOperation | None
|
|
1161
|
+
S3PutObjectTagging: S3SetObjectTaggingOperation | None
|
|
1162
|
+
S3DeleteObjectTagging: S3DeleteObjectTaggingOperation | None
|
|
1163
|
+
S3InitiateRestoreObject: S3InitiateRestoreObjectOperation | None
|
|
1164
|
+
S3PutObjectLegalHold: S3SetObjectLegalHoldOperation | None
|
|
1165
|
+
S3PutObjectRetention: S3SetObjectRetentionOperation | None
|
|
1166
|
+
S3ReplicateObject: S3ReplicateObjectOperation | None
|
|
1167
|
+
S3ComputeObjectChecksum: S3ComputeObjectChecksumOperation | None
|
|
1168
1168
|
|
|
1169
1169
|
|
|
1170
1170
|
class CreateJobRequest(ServiceRequest):
|
|
1171
1171
|
AccountId: AccountId
|
|
1172
|
-
ConfirmationRequired:
|
|
1172
|
+
ConfirmationRequired: ConfirmationRequired | None
|
|
1173
1173
|
Operation: JobOperation
|
|
1174
1174
|
Report: JobReport
|
|
1175
1175
|
ClientRequestToken: NonEmptyMaxLength64String
|
|
1176
|
-
Manifest:
|
|
1177
|
-
Description:
|
|
1176
|
+
Manifest: JobManifest | None
|
|
1177
|
+
Description: NonEmptyMaxLength256String | None
|
|
1178
1178
|
Priority: JobPriority
|
|
1179
1179
|
RoleArn: IAMRoleArn
|
|
1180
|
-
Tags:
|
|
1181
|
-
ManifestGenerator:
|
|
1180
|
+
Tags: S3TagSet | None
|
|
1181
|
+
ManifestGenerator: JobManifestGenerator | None
|
|
1182
1182
|
|
|
1183
1183
|
|
|
1184
1184
|
class CreateJobResult(TypedDict, total=False):
|
|
1185
|
-
JobId:
|
|
1185
|
+
JobId: JobId | None
|
|
1186
1186
|
|
|
1187
1187
|
|
|
1188
1188
|
class CreateMultiRegionAccessPointRequest(ServiceRequest):
|
|
@@ -1192,63 +1192,63 @@ class CreateMultiRegionAccessPointRequest(ServiceRequest):
|
|
|
1192
1192
|
|
|
1193
1193
|
|
|
1194
1194
|
class CreateMultiRegionAccessPointResult(TypedDict, total=False):
|
|
1195
|
-
RequestTokenARN:
|
|
1195
|
+
RequestTokenARN: AsyncRequestTokenARN | None
|
|
1196
1196
|
|
|
1197
1197
|
|
|
1198
1198
|
ObjectSizeValue = int
|
|
1199
1199
|
|
|
1200
1200
|
|
|
1201
1201
|
class MatchObjectSize(TypedDict, total=False):
|
|
1202
|
-
BytesGreaterThan:
|
|
1203
|
-
BytesLessThan:
|
|
1202
|
+
BytesGreaterThan: ObjectSizeValue | None
|
|
1203
|
+
BytesLessThan: ObjectSizeValue | None
|
|
1204
1204
|
|
|
1205
1205
|
|
|
1206
1206
|
class MatchObjectAge(TypedDict, total=False):
|
|
1207
|
-
DaysGreaterThan:
|
|
1208
|
-
DaysLessThan:
|
|
1207
|
+
DaysGreaterThan: ObjectAgeValue | None
|
|
1208
|
+
DaysLessThan: ObjectAgeValue | None
|
|
1209
1209
|
|
|
1210
1210
|
|
|
1211
|
-
MatchAnyTag =
|
|
1212
|
-
MatchAnySuffix =
|
|
1213
|
-
MatchAnyPrefix =
|
|
1211
|
+
MatchAnyTag = list[S3Tag]
|
|
1212
|
+
MatchAnySuffix = list[Suffix]
|
|
1213
|
+
MatchAnyPrefix = list[Prefix]
|
|
1214
1214
|
|
|
1215
1215
|
|
|
1216
1216
|
class StorageLensGroupOrOperator(TypedDict, total=False):
|
|
1217
|
-
MatchAnyPrefix:
|
|
1218
|
-
MatchAnySuffix:
|
|
1219
|
-
MatchAnyTag:
|
|
1220
|
-
MatchObjectAge:
|
|
1221
|
-
MatchObjectSize:
|
|
1217
|
+
MatchAnyPrefix: MatchAnyPrefix | None
|
|
1218
|
+
MatchAnySuffix: MatchAnySuffix | None
|
|
1219
|
+
MatchAnyTag: MatchAnyTag | None
|
|
1220
|
+
MatchObjectAge: MatchObjectAge | None
|
|
1221
|
+
MatchObjectSize: MatchObjectSize | None
|
|
1222
1222
|
|
|
1223
1223
|
|
|
1224
1224
|
class StorageLensGroupAndOperator(TypedDict, total=False):
|
|
1225
|
-
MatchAnyPrefix:
|
|
1226
|
-
MatchAnySuffix:
|
|
1227
|
-
MatchAnyTag:
|
|
1228
|
-
MatchObjectAge:
|
|
1229
|
-
MatchObjectSize:
|
|
1225
|
+
MatchAnyPrefix: MatchAnyPrefix | None
|
|
1226
|
+
MatchAnySuffix: MatchAnySuffix | None
|
|
1227
|
+
MatchAnyTag: MatchAnyTag | None
|
|
1228
|
+
MatchObjectAge: MatchObjectAge | None
|
|
1229
|
+
MatchObjectSize: MatchObjectSize | None
|
|
1230
1230
|
|
|
1231
1231
|
|
|
1232
1232
|
class StorageLensGroupFilter(TypedDict, total=False):
|
|
1233
|
-
MatchAnyPrefix:
|
|
1234
|
-
MatchAnySuffix:
|
|
1235
|
-
MatchAnyTag:
|
|
1236
|
-
MatchObjectAge:
|
|
1237
|
-
MatchObjectSize:
|
|
1238
|
-
And:
|
|
1239
|
-
Or:
|
|
1233
|
+
MatchAnyPrefix: MatchAnyPrefix | None
|
|
1234
|
+
MatchAnySuffix: MatchAnySuffix | None
|
|
1235
|
+
MatchAnyTag: MatchAnyTag | None
|
|
1236
|
+
MatchObjectAge: MatchObjectAge | None
|
|
1237
|
+
MatchObjectSize: MatchObjectSize | None
|
|
1238
|
+
And: StorageLensGroupAndOperator | None
|
|
1239
|
+
Or: StorageLensGroupOrOperator | None
|
|
1240
1240
|
|
|
1241
1241
|
|
|
1242
1242
|
class StorageLensGroup(TypedDict, total=False):
|
|
1243
1243
|
Name: StorageLensGroupName
|
|
1244
1244
|
Filter: StorageLensGroupFilter
|
|
1245
|
-
StorageLensGroupArn:
|
|
1245
|
+
StorageLensGroupArn: StorageLensGroupArn | None
|
|
1246
1246
|
|
|
1247
1247
|
|
|
1248
1248
|
class CreateStorageLensGroupRequest(ServiceRequest):
|
|
1249
1249
|
AccountId: AccountId
|
|
1250
1250
|
StorageLensGroup: StorageLensGroup
|
|
1251
|
-
Tags:
|
|
1251
|
+
Tags: TagList | None
|
|
1252
1252
|
|
|
1253
1253
|
|
|
1254
1254
|
CreationDate = datetime
|
|
@@ -1256,10 +1256,10 @@ Expiration = datetime
|
|
|
1256
1256
|
|
|
1257
1257
|
|
|
1258
1258
|
class Credentials(TypedDict, total=False):
|
|
1259
|
-
AccessKeyId:
|
|
1260
|
-
SecretAccessKey:
|
|
1261
|
-
SessionToken:
|
|
1262
|
-
Expiration:
|
|
1259
|
+
AccessKeyId: AccessKeyId | None
|
|
1260
|
+
SecretAccessKey: SecretAccessKey | None
|
|
1261
|
+
SessionToken: SessionToken | None
|
|
1262
|
+
Expiration: Expiration | None
|
|
1263
1263
|
|
|
1264
1264
|
|
|
1265
1265
|
Date = datetime
|
|
@@ -1353,7 +1353,7 @@ class DeleteMultiRegionAccessPointRequest(ServiceRequest):
|
|
|
1353
1353
|
|
|
1354
1354
|
|
|
1355
1355
|
class DeleteMultiRegionAccessPointResult(TypedDict, total=False):
|
|
1356
|
-
RequestTokenARN:
|
|
1356
|
+
RequestTokenARN: AsyncRequestTokenARN | None
|
|
1357
1357
|
|
|
1358
1358
|
|
|
1359
1359
|
class DeletePublicAccessBlockRequest(ServiceRequest):
|
|
@@ -1385,8 +1385,8 @@ class DescribeJobRequest(ServiceRequest):
|
|
|
1385
1385
|
|
|
1386
1386
|
|
|
1387
1387
|
class S3GeneratedManifestDescriptor(TypedDict, total=False):
|
|
1388
|
-
Format:
|
|
1389
|
-
Location:
|
|
1388
|
+
Format: GeneratedManifestFormat | None
|
|
1389
|
+
Location: JobManifestLocation | None
|
|
1390
1390
|
|
|
1391
1391
|
|
|
1392
1392
|
SuspendedDate = datetime
|
|
@@ -1395,16 +1395,16 @@ JobCreationTime = datetime
|
|
|
1395
1395
|
|
|
1396
1396
|
|
|
1397
1397
|
class JobFailure(TypedDict, total=False):
|
|
1398
|
-
FailureCode:
|
|
1399
|
-
FailureReason:
|
|
1398
|
+
FailureCode: JobFailureCode | None
|
|
1399
|
+
FailureReason: JobFailureReason | None
|
|
1400
1400
|
|
|
1401
1401
|
|
|
1402
|
-
JobFailureList =
|
|
1402
|
+
JobFailureList = list[JobFailure]
|
|
1403
1403
|
JobTimeInStateSeconds = int
|
|
1404
1404
|
|
|
1405
1405
|
|
|
1406
1406
|
class JobTimers(TypedDict, total=False):
|
|
1407
|
-
ElapsedTimeInActiveSeconds:
|
|
1407
|
+
ElapsedTimeInActiveSeconds: JobTimeInStateSeconds | None
|
|
1408
1408
|
|
|
1409
1409
|
|
|
1410
1410
|
JobNumberOfTasksFailed = int
|
|
@@ -1413,36 +1413,36 @@ JobTotalNumberOfTasks = int
|
|
|
1413
1413
|
|
|
1414
1414
|
|
|
1415
1415
|
class JobProgressSummary(TypedDict, total=False):
|
|
1416
|
-
TotalNumberOfTasks:
|
|
1417
|
-
NumberOfTasksSucceeded:
|
|
1418
|
-
NumberOfTasksFailed:
|
|
1419
|
-
Timers:
|
|
1416
|
+
TotalNumberOfTasks: JobTotalNumberOfTasks | None
|
|
1417
|
+
NumberOfTasksSucceeded: JobNumberOfTasksSucceeded | None
|
|
1418
|
+
NumberOfTasksFailed: JobNumberOfTasksFailed | None
|
|
1419
|
+
Timers: JobTimers | None
|
|
1420
1420
|
|
|
1421
1421
|
|
|
1422
1422
|
class JobDescriptor(TypedDict, total=False):
|
|
1423
|
-
JobId:
|
|
1424
|
-
ConfirmationRequired:
|
|
1425
|
-
Description:
|
|
1426
|
-
JobArn:
|
|
1427
|
-
Status:
|
|
1428
|
-
Manifest:
|
|
1429
|
-
Operation:
|
|
1430
|
-
Priority:
|
|
1431
|
-
ProgressSummary:
|
|
1432
|
-
StatusUpdateReason:
|
|
1433
|
-
FailureReasons:
|
|
1434
|
-
Report:
|
|
1435
|
-
CreationTime:
|
|
1436
|
-
TerminationDate:
|
|
1437
|
-
RoleArn:
|
|
1438
|
-
SuspendedDate:
|
|
1439
|
-
SuspendedCause:
|
|
1440
|
-
ManifestGenerator:
|
|
1441
|
-
GeneratedManifestDescriptor:
|
|
1423
|
+
JobId: JobId | None
|
|
1424
|
+
ConfirmationRequired: ConfirmationRequired | None
|
|
1425
|
+
Description: NonEmptyMaxLength256String | None
|
|
1426
|
+
JobArn: JobArn | None
|
|
1427
|
+
Status: JobStatus | None
|
|
1428
|
+
Manifest: JobManifest | None
|
|
1429
|
+
Operation: JobOperation | None
|
|
1430
|
+
Priority: JobPriority | None
|
|
1431
|
+
ProgressSummary: JobProgressSummary | None
|
|
1432
|
+
StatusUpdateReason: JobStatusUpdateReason | None
|
|
1433
|
+
FailureReasons: JobFailureList | None
|
|
1434
|
+
Report: JobReport | None
|
|
1435
|
+
CreationTime: JobCreationTime | None
|
|
1436
|
+
TerminationDate: JobTerminationDate | None
|
|
1437
|
+
RoleArn: IAMRoleArn | None
|
|
1438
|
+
SuspendedDate: SuspendedDate | None
|
|
1439
|
+
SuspendedCause: SuspendedCause | None
|
|
1440
|
+
ManifestGenerator: JobManifestGenerator | None
|
|
1441
|
+
GeneratedManifestDescriptor: S3GeneratedManifestDescriptor | None
|
|
1442
1442
|
|
|
1443
1443
|
|
|
1444
1444
|
class DescribeJobResult(TypedDict, total=False):
|
|
1445
|
-
Job:
|
|
1445
|
+
Job: JobDescriptor | None
|
|
1446
1446
|
|
|
1447
1447
|
|
|
1448
1448
|
class DescribeMultiRegionAccessPointOperationRequest(ServiceRequest):
|
|
@@ -1451,20 +1451,20 @@ class DescribeMultiRegionAccessPointOperationRequest(ServiceRequest):
|
|
|
1451
1451
|
|
|
1452
1452
|
|
|
1453
1453
|
class DescribeMultiRegionAccessPointOperationResult(TypedDict, total=False):
|
|
1454
|
-
AsyncOperation:
|
|
1454
|
+
AsyncOperation: AsyncOperation | None
|
|
1455
1455
|
|
|
1456
1456
|
|
|
1457
1457
|
class ReplicationTimeValue(TypedDict, total=False):
|
|
1458
|
-
Minutes:
|
|
1458
|
+
Minutes: Minutes | None
|
|
1459
1459
|
|
|
1460
1460
|
|
|
1461
1461
|
class Metrics(TypedDict, total=False):
|
|
1462
1462
|
Status: MetricsStatus
|
|
1463
|
-
EventThreshold:
|
|
1463
|
+
EventThreshold: ReplicationTimeValue | None
|
|
1464
1464
|
|
|
1465
1465
|
|
|
1466
1466
|
class EncryptionConfiguration(TypedDict, total=False):
|
|
1467
|
-
ReplicaKmsKeyID:
|
|
1467
|
+
ReplicaKmsKeyID: ReplicaKmsKeyID | None
|
|
1468
1468
|
|
|
1469
1469
|
|
|
1470
1470
|
class ReplicationTime(TypedDict, total=False):
|
|
@@ -1473,32 +1473,32 @@ class ReplicationTime(TypedDict, total=False):
|
|
|
1473
1473
|
|
|
1474
1474
|
|
|
1475
1475
|
class Destination(TypedDict, total=False):
|
|
1476
|
-
Account:
|
|
1476
|
+
Account: AccountId | None
|
|
1477
1477
|
Bucket: BucketIdentifierString
|
|
1478
|
-
ReplicationTime:
|
|
1479
|
-
AccessControlTranslation:
|
|
1480
|
-
EncryptionConfiguration:
|
|
1481
|
-
Metrics:
|
|
1482
|
-
StorageClass:
|
|
1478
|
+
ReplicationTime: ReplicationTime | None
|
|
1479
|
+
AccessControlTranslation: AccessControlTranslation | None
|
|
1480
|
+
EncryptionConfiguration: EncryptionConfiguration | None
|
|
1481
|
+
Metrics: Metrics | None
|
|
1482
|
+
StorageClass: ReplicationStorageClass | None
|
|
1483
1483
|
|
|
1484
1484
|
|
|
1485
1485
|
class DissociateAccessGrantsIdentityCenterRequest(ServiceRequest):
|
|
1486
1486
|
AccountId: AccountId
|
|
1487
1487
|
|
|
1488
1488
|
|
|
1489
|
-
Endpoints =
|
|
1489
|
+
Endpoints = dict[NonEmptyMaxLength64String, NonEmptyMaxLength1024String]
|
|
1490
1490
|
|
|
1491
1491
|
|
|
1492
1492
|
class EstablishedMultiRegionAccessPointPolicy(TypedDict, total=False):
|
|
1493
|
-
Policy:
|
|
1493
|
+
Policy: Policy | None
|
|
1494
1494
|
|
|
1495
1495
|
|
|
1496
|
-
Regions =
|
|
1496
|
+
Regions = list[S3AWSRegion]
|
|
1497
1497
|
|
|
1498
1498
|
|
|
1499
1499
|
class Exclude(TypedDict, total=False):
|
|
1500
|
-
Buckets:
|
|
1501
|
-
Regions:
|
|
1500
|
+
Buckets: Buckets | None
|
|
1501
|
+
Regions: Regions | None
|
|
1502
1502
|
|
|
1503
1503
|
|
|
1504
1504
|
class ExistingObjectReplication(TypedDict, total=False):
|
|
@@ -1511,15 +1511,15 @@ class GetAccessGrantRequest(ServiceRequest):
|
|
|
1511
1511
|
|
|
1512
1512
|
|
|
1513
1513
|
class GetAccessGrantResult(TypedDict, total=False):
|
|
1514
|
-
CreatedAt:
|
|
1515
|
-
AccessGrantId:
|
|
1516
|
-
AccessGrantArn:
|
|
1517
|
-
Grantee:
|
|
1518
|
-
Permission:
|
|
1519
|
-
AccessGrantsLocationId:
|
|
1520
|
-
AccessGrantsLocationConfiguration:
|
|
1521
|
-
GrantScope:
|
|
1522
|
-
ApplicationArn:
|
|
1514
|
+
CreatedAt: CreationTimestamp | None
|
|
1515
|
+
AccessGrantId: AccessGrantId | None
|
|
1516
|
+
AccessGrantArn: AccessGrantArn | None
|
|
1517
|
+
Grantee: Grantee | None
|
|
1518
|
+
Permission: Permission | None
|
|
1519
|
+
AccessGrantsLocationId: AccessGrantsLocationId | None
|
|
1520
|
+
AccessGrantsLocationConfiguration: AccessGrantsLocationConfiguration | None
|
|
1521
|
+
GrantScope: S3Prefix | None
|
|
1522
|
+
ApplicationArn: IdentityCenterApplicationArn | None
|
|
1523
1523
|
|
|
1524
1524
|
|
|
1525
1525
|
class GetAccessGrantsInstanceForPrefixRequest(ServiceRequest):
|
|
@@ -1528,8 +1528,8 @@ class GetAccessGrantsInstanceForPrefixRequest(ServiceRequest):
|
|
|
1528
1528
|
|
|
1529
1529
|
|
|
1530
1530
|
class GetAccessGrantsInstanceForPrefixResult(TypedDict, total=False):
|
|
1531
|
-
AccessGrantsInstanceArn:
|
|
1532
|
-
AccessGrantsInstanceId:
|
|
1531
|
+
AccessGrantsInstanceArn: AccessGrantsInstanceArn | None
|
|
1532
|
+
AccessGrantsInstanceId: AccessGrantsInstanceId | None
|
|
1533
1533
|
|
|
1534
1534
|
|
|
1535
1535
|
class GetAccessGrantsInstanceRequest(ServiceRequest):
|
|
@@ -1541,18 +1541,18 @@ class GetAccessGrantsInstanceResourcePolicyRequest(ServiceRequest):
|
|
|
1541
1541
|
|
|
1542
1542
|
|
|
1543
1543
|
class GetAccessGrantsInstanceResourcePolicyResult(TypedDict, total=False):
|
|
1544
|
-
Policy:
|
|
1545
|
-
Organization:
|
|
1546
|
-
CreatedAt:
|
|
1544
|
+
Policy: PolicyDocument | None
|
|
1545
|
+
Organization: Organization | None
|
|
1546
|
+
CreatedAt: CreationTimestamp | None
|
|
1547
1547
|
|
|
1548
1548
|
|
|
1549
1549
|
class GetAccessGrantsInstanceResult(TypedDict, total=False):
|
|
1550
|
-
AccessGrantsInstanceArn:
|
|
1551
|
-
AccessGrantsInstanceId:
|
|
1552
|
-
IdentityCenterArn:
|
|
1553
|
-
IdentityCenterInstanceArn:
|
|
1554
|
-
IdentityCenterApplicationArn:
|
|
1555
|
-
CreatedAt:
|
|
1550
|
+
AccessGrantsInstanceArn: AccessGrantsInstanceArn | None
|
|
1551
|
+
AccessGrantsInstanceId: AccessGrantsInstanceId | None
|
|
1552
|
+
IdentityCenterArn: IdentityCenterArn | None
|
|
1553
|
+
IdentityCenterInstanceArn: IdentityCenterArn | None
|
|
1554
|
+
IdentityCenterApplicationArn: IdentityCenterApplicationArn | None
|
|
1555
|
+
CreatedAt: CreationTimestamp | None
|
|
1556
1556
|
|
|
1557
1557
|
|
|
1558
1558
|
class GetAccessGrantsLocationRequest(ServiceRequest):
|
|
@@ -1561,11 +1561,11 @@ class GetAccessGrantsLocationRequest(ServiceRequest):
|
|
|
1561
1561
|
|
|
1562
1562
|
|
|
1563
1563
|
class GetAccessGrantsLocationResult(TypedDict, total=False):
|
|
1564
|
-
CreatedAt:
|
|
1565
|
-
AccessGrantsLocationId:
|
|
1566
|
-
AccessGrantsLocationArn:
|
|
1567
|
-
LocationScope:
|
|
1568
|
-
IAMRoleArn:
|
|
1564
|
+
CreatedAt: CreationTimestamp | None
|
|
1565
|
+
AccessGrantsLocationId: AccessGrantsLocationId | None
|
|
1566
|
+
AccessGrantsLocationArn: AccessGrantsLocationArn | None
|
|
1567
|
+
LocationScope: S3Prefix | None
|
|
1568
|
+
IAMRoleArn: IAMRoleArn | None
|
|
1569
1569
|
|
|
1570
1570
|
|
|
1571
1571
|
class GetAccessPointConfigurationForObjectLambdaRequest(ServiceRequest):
|
|
@@ -1574,7 +1574,7 @@ class GetAccessPointConfigurationForObjectLambdaRequest(ServiceRequest):
|
|
|
1574
1574
|
|
|
1575
1575
|
|
|
1576
1576
|
class GetAccessPointConfigurationForObjectLambdaResult(TypedDict, total=False):
|
|
1577
|
-
Configuration:
|
|
1577
|
+
Configuration: ObjectLambdaConfiguration | None
|
|
1578
1578
|
|
|
1579
1579
|
|
|
1580
1580
|
class GetAccessPointForObjectLambdaRequest(ServiceRequest):
|
|
@@ -1583,10 +1583,10 @@ class GetAccessPointForObjectLambdaRequest(ServiceRequest):
|
|
|
1583
1583
|
|
|
1584
1584
|
|
|
1585
1585
|
class GetAccessPointForObjectLambdaResult(TypedDict, total=False):
|
|
1586
|
-
Name:
|
|
1587
|
-
PublicAccessBlockConfiguration:
|
|
1588
|
-
CreationDate:
|
|
1589
|
-
Alias:
|
|
1586
|
+
Name: ObjectLambdaAccessPointName | None
|
|
1587
|
+
PublicAccessBlockConfiguration: PublicAccessBlockConfiguration | None
|
|
1588
|
+
CreationDate: CreationDate | None
|
|
1589
|
+
Alias: ObjectLambdaAccessPointAlias | None
|
|
1590
1590
|
|
|
1591
1591
|
|
|
1592
1592
|
class GetAccessPointPolicyForObjectLambdaRequest(ServiceRequest):
|
|
@@ -1595,7 +1595,7 @@ class GetAccessPointPolicyForObjectLambdaRequest(ServiceRequest):
|
|
|
1595
1595
|
|
|
1596
1596
|
|
|
1597
1597
|
class GetAccessPointPolicyForObjectLambdaResult(TypedDict, total=False):
|
|
1598
|
-
Policy:
|
|
1598
|
+
Policy: ObjectLambdaPolicy | None
|
|
1599
1599
|
|
|
1600
1600
|
|
|
1601
1601
|
class GetAccessPointPolicyRequest(ServiceRequest):
|
|
@@ -1604,7 +1604,7 @@ class GetAccessPointPolicyRequest(ServiceRequest):
|
|
|
1604
1604
|
|
|
1605
1605
|
|
|
1606
1606
|
class GetAccessPointPolicyResult(TypedDict, total=False):
|
|
1607
|
-
Policy:
|
|
1607
|
+
Policy: Policy | None
|
|
1608
1608
|
|
|
1609
1609
|
|
|
1610
1610
|
class GetAccessPointPolicyStatusForObjectLambdaRequest(ServiceRequest):
|
|
@@ -1613,11 +1613,11 @@ class GetAccessPointPolicyStatusForObjectLambdaRequest(ServiceRequest):
|
|
|
1613
1613
|
|
|
1614
1614
|
|
|
1615
1615
|
class PolicyStatus(TypedDict, total=False):
|
|
1616
|
-
IsPublic:
|
|
1616
|
+
IsPublic: IsPublic | None
|
|
1617
1617
|
|
|
1618
1618
|
|
|
1619
1619
|
class GetAccessPointPolicyStatusForObjectLambdaResult(TypedDict, total=False):
|
|
1620
|
-
PolicyStatus:
|
|
1620
|
+
PolicyStatus: PolicyStatus | None
|
|
1621
1621
|
|
|
1622
1622
|
|
|
1623
1623
|
class GetAccessPointPolicyStatusRequest(ServiceRequest):
|
|
@@ -1626,7 +1626,7 @@ class GetAccessPointPolicyStatusRequest(ServiceRequest):
|
|
|
1626
1626
|
|
|
1627
1627
|
|
|
1628
1628
|
class GetAccessPointPolicyStatusResult(TypedDict, total=False):
|
|
1629
|
-
PolicyStatus:
|
|
1629
|
+
PolicyStatus: PolicyStatus | None
|
|
1630
1630
|
|
|
1631
1631
|
|
|
1632
1632
|
class GetAccessPointRequest(ServiceRequest):
|
|
@@ -1635,18 +1635,18 @@ class GetAccessPointRequest(ServiceRequest):
|
|
|
1635
1635
|
|
|
1636
1636
|
|
|
1637
1637
|
class GetAccessPointResult(TypedDict, total=False):
|
|
1638
|
-
Name:
|
|
1639
|
-
Bucket:
|
|
1640
|
-
NetworkOrigin:
|
|
1641
|
-
VpcConfiguration:
|
|
1642
|
-
PublicAccessBlockConfiguration:
|
|
1643
|
-
CreationDate:
|
|
1644
|
-
Alias:
|
|
1645
|
-
AccessPointArn:
|
|
1646
|
-
Endpoints:
|
|
1647
|
-
BucketAccountId:
|
|
1648
|
-
DataSourceId:
|
|
1649
|
-
DataSourceType:
|
|
1638
|
+
Name: AccessPointName | None
|
|
1639
|
+
Bucket: AccessPointBucketName | None
|
|
1640
|
+
NetworkOrigin: NetworkOrigin | None
|
|
1641
|
+
VpcConfiguration: VpcConfiguration | None
|
|
1642
|
+
PublicAccessBlockConfiguration: PublicAccessBlockConfiguration | None
|
|
1643
|
+
CreationDate: CreationDate | None
|
|
1644
|
+
Alias: Alias | None
|
|
1645
|
+
AccessPointArn: S3AccessPointArn | None
|
|
1646
|
+
Endpoints: Endpoints | None
|
|
1647
|
+
BucketAccountId: AccountId | None
|
|
1648
|
+
DataSourceId: DataSourceId | None
|
|
1649
|
+
DataSourceType: DataSourceType | None
|
|
1650
1650
|
|
|
1651
1651
|
|
|
1652
1652
|
class GetAccessPointScopeRequest(ServiceRequest):
|
|
@@ -1655,7 +1655,7 @@ class GetAccessPointScopeRequest(ServiceRequest):
|
|
|
1655
1655
|
|
|
1656
1656
|
|
|
1657
1657
|
class GetAccessPointScopeResult(TypedDict, total=False):
|
|
1658
|
-
Scope:
|
|
1658
|
+
Scope: Scope | None
|
|
1659
1659
|
|
|
1660
1660
|
|
|
1661
1661
|
class GetBucketLifecycleConfigurationRequest(ServiceRequest):
|
|
@@ -1664,64 +1664,64 @@ class GetBucketLifecycleConfigurationRequest(ServiceRequest):
|
|
|
1664
1664
|
|
|
1665
1665
|
|
|
1666
1666
|
class NoncurrentVersionExpiration(TypedDict, total=False):
|
|
1667
|
-
NoncurrentDays:
|
|
1668
|
-
NewerNoncurrentVersions:
|
|
1667
|
+
NoncurrentDays: Days | None
|
|
1668
|
+
NewerNoncurrentVersions: NoncurrentVersionCount | None
|
|
1669
1669
|
|
|
1670
1670
|
|
|
1671
1671
|
class NoncurrentVersionTransition(TypedDict, total=False):
|
|
1672
|
-
NoncurrentDays:
|
|
1673
|
-
StorageClass:
|
|
1672
|
+
NoncurrentDays: Days | None
|
|
1673
|
+
StorageClass: TransitionStorageClass | None
|
|
1674
1674
|
|
|
1675
1675
|
|
|
1676
|
-
NoncurrentVersionTransitionList =
|
|
1676
|
+
NoncurrentVersionTransitionList = list[NoncurrentVersionTransition]
|
|
1677
1677
|
|
|
1678
1678
|
|
|
1679
1679
|
class Transition(TypedDict, total=False):
|
|
1680
|
-
Date:
|
|
1681
|
-
Days:
|
|
1682
|
-
StorageClass:
|
|
1680
|
+
Date: Date | None
|
|
1681
|
+
Days: Days | None
|
|
1682
|
+
StorageClass: TransitionStorageClass | None
|
|
1683
1683
|
|
|
1684
1684
|
|
|
1685
|
-
TransitionList =
|
|
1685
|
+
TransitionList = list[Transition]
|
|
1686
1686
|
|
|
1687
1687
|
|
|
1688
1688
|
class LifecycleRuleAndOperator(TypedDict, total=False):
|
|
1689
|
-
Prefix:
|
|
1690
|
-
Tags:
|
|
1691
|
-
ObjectSizeGreaterThan:
|
|
1692
|
-
ObjectSizeLessThan:
|
|
1689
|
+
Prefix: Prefix | None
|
|
1690
|
+
Tags: S3TagSet | None
|
|
1691
|
+
ObjectSizeGreaterThan: ObjectSizeGreaterThanBytes | None
|
|
1692
|
+
ObjectSizeLessThan: ObjectSizeLessThanBytes | None
|
|
1693
1693
|
|
|
1694
1694
|
|
|
1695
1695
|
class LifecycleRuleFilter(TypedDict, total=False):
|
|
1696
|
-
Prefix:
|
|
1697
|
-
Tag:
|
|
1698
|
-
And:
|
|
1699
|
-
ObjectSizeGreaterThan:
|
|
1700
|
-
ObjectSizeLessThan:
|
|
1696
|
+
Prefix: Prefix | None
|
|
1697
|
+
Tag: S3Tag | None
|
|
1698
|
+
And: LifecycleRuleAndOperator | None
|
|
1699
|
+
ObjectSizeGreaterThan: ObjectSizeGreaterThanBytes | None
|
|
1700
|
+
ObjectSizeLessThan: ObjectSizeLessThanBytes | None
|
|
1701
1701
|
|
|
1702
1702
|
|
|
1703
1703
|
class LifecycleExpiration(TypedDict, total=False):
|
|
1704
|
-
Date:
|
|
1705
|
-
Days:
|
|
1706
|
-
ExpiredObjectDeleteMarker:
|
|
1704
|
+
Date: Date | None
|
|
1705
|
+
Days: Days | None
|
|
1706
|
+
ExpiredObjectDeleteMarker: ExpiredObjectDeleteMarker | None
|
|
1707
1707
|
|
|
1708
1708
|
|
|
1709
1709
|
class LifecycleRule(TypedDict, total=False):
|
|
1710
|
-
Expiration:
|
|
1711
|
-
ID:
|
|
1712
|
-
Filter:
|
|
1710
|
+
Expiration: LifecycleExpiration | None
|
|
1711
|
+
ID: ID | None
|
|
1712
|
+
Filter: LifecycleRuleFilter | None
|
|
1713
1713
|
Status: ExpirationStatus
|
|
1714
|
-
Transitions:
|
|
1715
|
-
NoncurrentVersionTransitions:
|
|
1716
|
-
NoncurrentVersionExpiration:
|
|
1717
|
-
AbortIncompleteMultipartUpload:
|
|
1714
|
+
Transitions: TransitionList | None
|
|
1715
|
+
NoncurrentVersionTransitions: NoncurrentVersionTransitionList | None
|
|
1716
|
+
NoncurrentVersionExpiration: NoncurrentVersionExpiration | None
|
|
1717
|
+
AbortIncompleteMultipartUpload: AbortIncompleteMultipartUpload | None
|
|
1718
1718
|
|
|
1719
1719
|
|
|
1720
|
-
LifecycleRules =
|
|
1720
|
+
LifecycleRules = list[LifecycleRule]
|
|
1721
1721
|
|
|
1722
1722
|
|
|
1723
1723
|
class GetBucketLifecycleConfigurationResult(TypedDict, total=False):
|
|
1724
|
-
Rules:
|
|
1724
|
+
Rules: LifecycleRules | None
|
|
1725
1725
|
|
|
1726
1726
|
|
|
1727
1727
|
class GetBucketPolicyRequest(ServiceRequest):
|
|
@@ -1730,7 +1730,7 @@ class GetBucketPolicyRequest(ServiceRequest):
|
|
|
1730
1730
|
|
|
1731
1731
|
|
|
1732
1732
|
class GetBucketPolicyResult(TypedDict, total=False):
|
|
1733
|
-
Policy:
|
|
1733
|
+
Policy: Policy | None
|
|
1734
1734
|
|
|
1735
1735
|
|
|
1736
1736
|
class GetBucketReplicationRequest(ServiceRequest):
|
|
@@ -1747,35 +1747,35 @@ class SseKmsEncryptedObjects(TypedDict, total=False):
|
|
|
1747
1747
|
|
|
1748
1748
|
|
|
1749
1749
|
class SourceSelectionCriteria(TypedDict, total=False):
|
|
1750
|
-
SseKmsEncryptedObjects:
|
|
1751
|
-
ReplicaModifications:
|
|
1750
|
+
SseKmsEncryptedObjects: SseKmsEncryptedObjects | None
|
|
1751
|
+
ReplicaModifications: ReplicaModifications | None
|
|
1752
1752
|
|
|
1753
1753
|
|
|
1754
1754
|
class ReplicationRuleAndOperator(TypedDict, total=False):
|
|
1755
|
-
Prefix:
|
|
1756
|
-
Tags:
|
|
1755
|
+
Prefix: Prefix | None
|
|
1756
|
+
Tags: S3TagSet | None
|
|
1757
1757
|
|
|
1758
1758
|
|
|
1759
1759
|
class ReplicationRuleFilter(TypedDict, total=False):
|
|
1760
|
-
Prefix:
|
|
1761
|
-
Tag:
|
|
1762
|
-
And:
|
|
1760
|
+
Prefix: Prefix | None
|
|
1761
|
+
Tag: S3Tag | None
|
|
1762
|
+
And: ReplicationRuleAndOperator | None
|
|
1763
1763
|
|
|
1764
1764
|
|
|
1765
1765
|
class ReplicationRule(TypedDict, total=False):
|
|
1766
|
-
ID:
|
|
1767
|
-
Priority:
|
|
1768
|
-
Prefix:
|
|
1769
|
-
Filter:
|
|
1766
|
+
ID: ID | None
|
|
1767
|
+
Priority: Priority | None
|
|
1768
|
+
Prefix: Prefix | None
|
|
1769
|
+
Filter: ReplicationRuleFilter | None
|
|
1770
1770
|
Status: ReplicationRuleStatus
|
|
1771
|
-
SourceSelectionCriteria:
|
|
1772
|
-
ExistingObjectReplication:
|
|
1771
|
+
SourceSelectionCriteria: SourceSelectionCriteria | None
|
|
1772
|
+
ExistingObjectReplication: ExistingObjectReplication | None
|
|
1773
1773
|
Destination: Destination
|
|
1774
|
-
DeleteMarkerReplication:
|
|
1774
|
+
DeleteMarkerReplication: DeleteMarkerReplication | None
|
|
1775
1775
|
Bucket: BucketIdentifierString
|
|
1776
1776
|
|
|
1777
1777
|
|
|
1778
|
-
ReplicationRules =
|
|
1778
|
+
ReplicationRules = list[ReplicationRule]
|
|
1779
1779
|
|
|
1780
1780
|
|
|
1781
1781
|
class ReplicationConfiguration(TypedDict, total=False):
|
|
@@ -1784,7 +1784,7 @@ class ReplicationConfiguration(TypedDict, total=False):
|
|
|
1784
1784
|
|
|
1785
1785
|
|
|
1786
1786
|
class GetBucketReplicationResult(TypedDict, total=False):
|
|
1787
|
-
ReplicationConfiguration:
|
|
1787
|
+
ReplicationConfiguration: ReplicationConfiguration | None
|
|
1788
1788
|
|
|
1789
1789
|
|
|
1790
1790
|
class GetBucketRequest(ServiceRequest):
|
|
@@ -1793,9 +1793,9 @@ class GetBucketRequest(ServiceRequest):
|
|
|
1793
1793
|
|
|
1794
1794
|
|
|
1795
1795
|
class GetBucketResult(TypedDict, total=False):
|
|
1796
|
-
Bucket:
|
|
1797
|
-
PublicAccessBlockEnabled:
|
|
1798
|
-
CreationDate:
|
|
1796
|
+
Bucket: BucketName | None
|
|
1797
|
+
PublicAccessBlockEnabled: PublicAccessBlockEnabled | None
|
|
1798
|
+
CreationDate: CreationDate | None
|
|
1799
1799
|
|
|
1800
1800
|
|
|
1801
1801
|
class GetBucketTaggingRequest(ServiceRequest):
|
|
@@ -1813,23 +1813,23 @@ class GetBucketVersioningRequest(ServiceRequest):
|
|
|
1813
1813
|
|
|
1814
1814
|
|
|
1815
1815
|
class GetBucketVersioningResult(TypedDict, total=False):
|
|
1816
|
-
Status:
|
|
1817
|
-
MFADelete:
|
|
1816
|
+
Status: BucketVersioningStatus | None
|
|
1817
|
+
MFADelete: MFADeleteStatus | None
|
|
1818
1818
|
|
|
1819
1819
|
|
|
1820
1820
|
class GetDataAccessRequest(ServiceRequest):
|
|
1821
1821
|
AccountId: AccountId
|
|
1822
1822
|
Target: S3Prefix
|
|
1823
1823
|
Permission: Permission
|
|
1824
|
-
DurationSeconds:
|
|
1825
|
-
Privilege:
|
|
1826
|
-
TargetType:
|
|
1824
|
+
DurationSeconds: DurationSeconds | None
|
|
1825
|
+
Privilege: Privilege | None
|
|
1826
|
+
TargetType: S3PrefixType | None
|
|
1827
1827
|
|
|
1828
1828
|
|
|
1829
1829
|
class GetDataAccessResult(TypedDict, total=False):
|
|
1830
|
-
Credentials:
|
|
1831
|
-
MatchedGrantTarget:
|
|
1832
|
-
Grantee:
|
|
1830
|
+
Credentials: Credentials | None
|
|
1831
|
+
MatchedGrantTarget: S3Prefix | None
|
|
1832
|
+
Grantee: Grantee | None
|
|
1833
1833
|
|
|
1834
1834
|
|
|
1835
1835
|
class GetJobTaggingRequest(ServiceRequest):
|
|
@@ -1838,7 +1838,7 @@ class GetJobTaggingRequest(ServiceRequest):
|
|
|
1838
1838
|
|
|
1839
1839
|
|
|
1840
1840
|
class GetJobTaggingResult(TypedDict, total=False):
|
|
1841
|
-
Tags:
|
|
1841
|
+
Tags: S3TagSet | None
|
|
1842
1842
|
|
|
1843
1843
|
|
|
1844
1844
|
class GetMultiRegionAccessPointPolicyRequest(ServiceRequest):
|
|
@@ -1847,16 +1847,16 @@ class GetMultiRegionAccessPointPolicyRequest(ServiceRequest):
|
|
|
1847
1847
|
|
|
1848
1848
|
|
|
1849
1849
|
class ProposedMultiRegionAccessPointPolicy(TypedDict, total=False):
|
|
1850
|
-
Policy:
|
|
1850
|
+
Policy: Policy | None
|
|
1851
1851
|
|
|
1852
1852
|
|
|
1853
1853
|
class MultiRegionAccessPointPolicyDocument(TypedDict, total=False):
|
|
1854
|
-
Established:
|
|
1855
|
-
Proposed:
|
|
1854
|
+
Established: EstablishedMultiRegionAccessPointPolicy | None
|
|
1855
|
+
Proposed: ProposedMultiRegionAccessPointPolicy | None
|
|
1856
1856
|
|
|
1857
1857
|
|
|
1858
1858
|
class GetMultiRegionAccessPointPolicyResult(TypedDict, total=False):
|
|
1859
|
-
Policy:
|
|
1859
|
+
Policy: MultiRegionAccessPointPolicyDocument | None
|
|
1860
1860
|
|
|
1861
1861
|
|
|
1862
1862
|
class GetMultiRegionAccessPointPolicyStatusRequest(ServiceRequest):
|
|
@@ -1865,7 +1865,7 @@ class GetMultiRegionAccessPointPolicyStatusRequest(ServiceRequest):
|
|
|
1865
1865
|
|
|
1866
1866
|
|
|
1867
1867
|
class GetMultiRegionAccessPointPolicyStatusResult(TypedDict, total=False):
|
|
1868
|
-
Established:
|
|
1868
|
+
Established: PolicyStatus | None
|
|
1869
1869
|
|
|
1870
1870
|
|
|
1871
1871
|
class GetMultiRegionAccessPointRequest(ServiceRequest):
|
|
@@ -1874,25 +1874,25 @@ class GetMultiRegionAccessPointRequest(ServiceRequest):
|
|
|
1874
1874
|
|
|
1875
1875
|
|
|
1876
1876
|
class RegionReport(TypedDict, total=False):
|
|
1877
|
-
Bucket:
|
|
1878
|
-
Region:
|
|
1879
|
-
BucketAccountId:
|
|
1877
|
+
Bucket: BucketName | None
|
|
1878
|
+
Region: RegionName | None
|
|
1879
|
+
BucketAccountId: AccountId | None
|
|
1880
1880
|
|
|
1881
1881
|
|
|
1882
|
-
RegionReportList =
|
|
1882
|
+
RegionReportList = list[RegionReport]
|
|
1883
1883
|
|
|
1884
1884
|
|
|
1885
1885
|
class MultiRegionAccessPointReport(TypedDict, total=False):
|
|
1886
|
-
Name:
|
|
1887
|
-
Alias:
|
|
1888
|
-
CreatedAt:
|
|
1889
|
-
PublicAccessBlock:
|
|
1890
|
-
Status:
|
|
1891
|
-
Regions:
|
|
1886
|
+
Name: MultiRegionAccessPointName | None
|
|
1887
|
+
Alias: MultiRegionAccessPointAlias | None
|
|
1888
|
+
CreatedAt: CreationTimestamp | None
|
|
1889
|
+
PublicAccessBlock: PublicAccessBlockConfiguration | None
|
|
1890
|
+
Status: MultiRegionAccessPointStatus | None
|
|
1891
|
+
Regions: RegionReportList | None
|
|
1892
1892
|
|
|
1893
1893
|
|
|
1894
1894
|
class GetMultiRegionAccessPointResult(TypedDict, total=False):
|
|
1895
|
-
AccessPoint:
|
|
1895
|
+
AccessPoint: MultiRegionAccessPointReport | None
|
|
1896
1896
|
|
|
1897
1897
|
|
|
1898
1898
|
class GetMultiRegionAccessPointRoutesRequest(ServiceRequest):
|
|
@@ -1901,21 +1901,21 @@ class GetMultiRegionAccessPointRoutesRequest(ServiceRequest):
|
|
|
1901
1901
|
|
|
1902
1902
|
|
|
1903
1903
|
class MultiRegionAccessPointRoute(TypedDict, total=False):
|
|
1904
|
-
Bucket:
|
|
1905
|
-
Region:
|
|
1904
|
+
Bucket: BucketName | None
|
|
1905
|
+
Region: RegionName | None
|
|
1906
1906
|
TrafficDialPercentage: TrafficDialPercentage
|
|
1907
1907
|
|
|
1908
1908
|
|
|
1909
|
-
RouteList =
|
|
1909
|
+
RouteList = list[MultiRegionAccessPointRoute]
|
|
1910
1910
|
|
|
1911
1911
|
|
|
1912
1912
|
class GetMultiRegionAccessPointRoutesResult(TypedDict, total=False):
|
|
1913
|
-
Mrap:
|
|
1914
|
-
Routes:
|
|
1913
|
+
Mrap: MultiRegionAccessPointId | None
|
|
1914
|
+
Routes: RouteList | None
|
|
1915
1915
|
|
|
1916
1916
|
|
|
1917
1917
|
class GetPublicAccessBlockOutput(TypedDict, total=False):
|
|
1918
|
-
PublicAccessBlockConfiguration:
|
|
1918
|
+
PublicAccessBlockConfiguration: PublicAccessBlockConfiguration | None
|
|
1919
1919
|
|
|
1920
1920
|
|
|
1921
1921
|
class GetPublicAccessBlockRequest(ServiceRequest):
|
|
@@ -1940,8 +1940,8 @@ class SSES3(TypedDict, total=False):
|
|
|
1940
1940
|
|
|
1941
1941
|
|
|
1942
1942
|
class StorageLensDataExportEncryption(TypedDict, total=False):
|
|
1943
|
-
SSES3:
|
|
1944
|
-
SSEKMS:
|
|
1943
|
+
SSES3: SSES3 | None
|
|
1944
|
+
SSEKMS: SSEKMS | None
|
|
1945
1945
|
|
|
1946
1946
|
|
|
1947
1947
|
class S3BucketDestination(TypedDict, total=False):
|
|
@@ -1949,33 +1949,33 @@ class S3BucketDestination(TypedDict, total=False):
|
|
|
1949
1949
|
OutputSchemaVersion: OutputSchemaVersion
|
|
1950
1950
|
AccountId: AccountId
|
|
1951
1951
|
Arn: S3BucketArnString
|
|
1952
|
-
Prefix:
|
|
1953
|
-
Encryption:
|
|
1952
|
+
Prefix: Prefix | None
|
|
1953
|
+
Encryption: StorageLensDataExportEncryption | None
|
|
1954
1954
|
|
|
1955
1955
|
|
|
1956
1956
|
class StorageLensDataExport(TypedDict, total=False):
|
|
1957
|
-
S3BucketDestination:
|
|
1958
|
-
CloudWatchMetrics:
|
|
1957
|
+
S3BucketDestination: S3BucketDestination | None
|
|
1958
|
+
CloudWatchMetrics: CloudWatchMetrics | None
|
|
1959
1959
|
|
|
1960
1960
|
|
|
1961
1961
|
class Include(TypedDict, total=False):
|
|
1962
|
-
Buckets:
|
|
1963
|
-
Regions:
|
|
1962
|
+
Buckets: Buckets | None
|
|
1963
|
+
Regions: Regions | None
|
|
1964
1964
|
|
|
1965
1965
|
|
|
1966
1966
|
class StorageLensConfiguration(TypedDict, total=False):
|
|
1967
1967
|
Id: ConfigId
|
|
1968
1968
|
AccountLevel: AccountLevel
|
|
1969
|
-
Include:
|
|
1970
|
-
Exclude:
|
|
1971
|
-
DataExport:
|
|
1969
|
+
Include: Include | None
|
|
1970
|
+
Exclude: Exclude | None
|
|
1971
|
+
DataExport: StorageLensDataExport | None
|
|
1972
1972
|
IsEnabled: IsEnabled
|
|
1973
|
-
AwsOrg:
|
|
1974
|
-
StorageLensArn:
|
|
1973
|
+
AwsOrg: StorageLensAwsOrg | None
|
|
1974
|
+
StorageLensArn: StorageLensArn | None
|
|
1975
1975
|
|
|
1976
1976
|
|
|
1977
1977
|
class GetStorageLensConfigurationResult(TypedDict, total=False):
|
|
1978
|
-
StorageLensConfiguration:
|
|
1978
|
+
StorageLensConfiguration: StorageLensConfiguration | None
|
|
1979
1979
|
|
|
1980
1980
|
|
|
1981
1981
|
class GetStorageLensConfigurationTaggingRequest(ServiceRequest):
|
|
@@ -1988,11 +1988,11 @@ class StorageLensTag(TypedDict, total=False):
|
|
|
1988
1988
|
Value: TagValueString
|
|
1989
1989
|
|
|
1990
1990
|
|
|
1991
|
-
StorageLensTags =
|
|
1991
|
+
StorageLensTags = list[StorageLensTag]
|
|
1992
1992
|
|
|
1993
1993
|
|
|
1994
1994
|
class GetStorageLensConfigurationTaggingResult(TypedDict, total=False):
|
|
1995
|
-
Tags:
|
|
1995
|
+
Tags: StorageLensTags | None
|
|
1996
1996
|
|
|
1997
1997
|
|
|
1998
1998
|
class GetStorageLensGroupRequest(ServiceRequest):
|
|
@@ -2001,193 +2001,193 @@ class GetStorageLensGroupRequest(ServiceRequest):
|
|
|
2001
2001
|
|
|
2002
2002
|
|
|
2003
2003
|
class GetStorageLensGroupResult(TypedDict, total=False):
|
|
2004
|
-
StorageLensGroup:
|
|
2004
|
+
StorageLensGroup: StorageLensGroup | None
|
|
2005
2005
|
|
|
2006
2006
|
|
|
2007
2007
|
class JobListDescriptor(TypedDict, total=False):
|
|
2008
|
-
JobId:
|
|
2009
|
-
Description:
|
|
2010
|
-
Operation:
|
|
2011
|
-
Priority:
|
|
2012
|
-
Status:
|
|
2013
|
-
CreationTime:
|
|
2014
|
-
TerminationDate:
|
|
2015
|
-
ProgressSummary:
|
|
2008
|
+
JobId: JobId | None
|
|
2009
|
+
Description: NonEmptyMaxLength256String | None
|
|
2010
|
+
Operation: OperationName | None
|
|
2011
|
+
Priority: JobPriority | None
|
|
2012
|
+
Status: JobStatus | None
|
|
2013
|
+
CreationTime: JobCreationTime | None
|
|
2014
|
+
TerminationDate: JobTerminationDate | None
|
|
2015
|
+
ProgressSummary: JobProgressSummary | None
|
|
2016
2016
|
|
|
2017
2017
|
|
|
2018
|
-
JobListDescriptorList =
|
|
2019
|
-
JobStatusList =
|
|
2018
|
+
JobListDescriptorList = list[JobListDescriptor]
|
|
2019
|
+
JobStatusList = list[JobStatus]
|
|
2020
2020
|
|
|
2021
2021
|
|
|
2022
2022
|
class LifecycleConfiguration(TypedDict, total=False):
|
|
2023
|
-
Rules:
|
|
2023
|
+
Rules: LifecycleRules | None
|
|
2024
2024
|
|
|
2025
2025
|
|
|
2026
2026
|
class ListAccessGrantsInstancesRequest(ServiceRequest):
|
|
2027
2027
|
AccountId: AccountId
|
|
2028
|
-
NextToken:
|
|
2029
|
-
MaxResults:
|
|
2028
|
+
NextToken: ContinuationToken | None
|
|
2029
|
+
MaxResults: MaxResults | None
|
|
2030
2030
|
|
|
2031
2031
|
|
|
2032
2032
|
class ListAccessGrantsInstancesResult(TypedDict, total=False):
|
|
2033
|
-
NextToken:
|
|
2034
|
-
AccessGrantsInstancesList:
|
|
2033
|
+
NextToken: ContinuationToken | None
|
|
2034
|
+
AccessGrantsInstancesList: AccessGrantsInstancesList | None
|
|
2035
2035
|
|
|
2036
2036
|
|
|
2037
2037
|
class ListAccessGrantsLocationsRequest(ServiceRequest):
|
|
2038
2038
|
AccountId: AccountId
|
|
2039
|
-
NextToken:
|
|
2040
|
-
MaxResults:
|
|
2041
|
-
LocationScope:
|
|
2039
|
+
NextToken: ContinuationToken | None
|
|
2040
|
+
MaxResults: MaxResults | None
|
|
2041
|
+
LocationScope: S3Prefix | None
|
|
2042
2042
|
|
|
2043
2043
|
|
|
2044
2044
|
class ListAccessGrantsLocationsResult(TypedDict, total=False):
|
|
2045
|
-
NextToken:
|
|
2046
|
-
AccessGrantsLocationsList:
|
|
2045
|
+
NextToken: ContinuationToken | None
|
|
2046
|
+
AccessGrantsLocationsList: AccessGrantsLocationsList | None
|
|
2047
2047
|
|
|
2048
2048
|
|
|
2049
2049
|
class ListAccessGrantsRequest(ServiceRequest):
|
|
2050
2050
|
AccountId: AccountId
|
|
2051
|
-
NextToken:
|
|
2052
|
-
MaxResults:
|
|
2053
|
-
GranteeType:
|
|
2054
|
-
GranteeIdentifier:
|
|
2055
|
-
Permission:
|
|
2056
|
-
GrantScope:
|
|
2057
|
-
ApplicationArn:
|
|
2051
|
+
NextToken: ContinuationToken | None
|
|
2052
|
+
MaxResults: MaxResults | None
|
|
2053
|
+
GranteeType: GranteeType | None
|
|
2054
|
+
GranteeIdentifier: GranteeIdentifier | None
|
|
2055
|
+
Permission: Permission | None
|
|
2056
|
+
GrantScope: S3Prefix | None
|
|
2057
|
+
ApplicationArn: IdentityCenterApplicationArn | None
|
|
2058
2058
|
|
|
2059
2059
|
|
|
2060
2060
|
class ListAccessGrantsResult(TypedDict, total=False):
|
|
2061
|
-
NextToken:
|
|
2062
|
-
AccessGrantsList:
|
|
2061
|
+
NextToken: ContinuationToken | None
|
|
2062
|
+
AccessGrantsList: AccessGrantsList | None
|
|
2063
2063
|
|
|
2064
2064
|
|
|
2065
2065
|
class ListAccessPointsForDirectoryBucketsRequest(ServiceRequest):
|
|
2066
2066
|
AccountId: AccountId
|
|
2067
|
-
DirectoryBucket:
|
|
2068
|
-
NextToken:
|
|
2069
|
-
MaxResults:
|
|
2067
|
+
DirectoryBucket: BucketName | None
|
|
2068
|
+
NextToken: NonEmptyMaxLength1024String | None
|
|
2069
|
+
MaxResults: MaxResults | None
|
|
2070
2070
|
|
|
2071
2071
|
|
|
2072
2072
|
class ListAccessPointsForDirectoryBucketsResult(TypedDict, total=False):
|
|
2073
|
-
AccessPointList:
|
|
2074
|
-
NextToken:
|
|
2073
|
+
AccessPointList: AccessPointList | None
|
|
2074
|
+
NextToken: NonEmptyMaxLength1024String | None
|
|
2075
2075
|
|
|
2076
2076
|
|
|
2077
2077
|
class ListAccessPointsForObjectLambdaRequest(ServiceRequest):
|
|
2078
2078
|
AccountId: AccountId
|
|
2079
|
-
NextToken:
|
|
2080
|
-
MaxResults:
|
|
2079
|
+
NextToken: NonEmptyMaxLength1024String | None
|
|
2080
|
+
MaxResults: MaxResults | None
|
|
2081
2081
|
|
|
2082
2082
|
|
|
2083
2083
|
class ObjectLambdaAccessPoint(TypedDict, total=False):
|
|
2084
2084
|
Name: ObjectLambdaAccessPointName
|
|
2085
|
-
ObjectLambdaAccessPointArn:
|
|
2086
|
-
Alias:
|
|
2085
|
+
ObjectLambdaAccessPointArn: ObjectLambdaAccessPointArn | None
|
|
2086
|
+
Alias: ObjectLambdaAccessPointAlias | None
|
|
2087
2087
|
|
|
2088
2088
|
|
|
2089
|
-
ObjectLambdaAccessPointList =
|
|
2089
|
+
ObjectLambdaAccessPointList = list[ObjectLambdaAccessPoint]
|
|
2090
2090
|
|
|
2091
2091
|
|
|
2092
2092
|
class ListAccessPointsForObjectLambdaResult(TypedDict, total=False):
|
|
2093
|
-
ObjectLambdaAccessPointList:
|
|
2094
|
-
NextToken:
|
|
2093
|
+
ObjectLambdaAccessPointList: ObjectLambdaAccessPointList | None
|
|
2094
|
+
NextToken: NonEmptyMaxLength1024String | None
|
|
2095
2095
|
|
|
2096
2096
|
|
|
2097
2097
|
class ListAccessPointsRequest(ServiceRequest):
|
|
2098
2098
|
AccountId: AccountId
|
|
2099
|
-
Bucket:
|
|
2100
|
-
NextToken:
|
|
2101
|
-
MaxResults:
|
|
2102
|
-
DataSourceId:
|
|
2103
|
-
DataSourceType:
|
|
2099
|
+
Bucket: BucketName | None
|
|
2100
|
+
NextToken: NonEmptyMaxLength1024String | None
|
|
2101
|
+
MaxResults: MaxResults | None
|
|
2102
|
+
DataSourceId: DataSourceId | None
|
|
2103
|
+
DataSourceType: DataSourceType | None
|
|
2104
2104
|
|
|
2105
2105
|
|
|
2106
2106
|
class ListAccessPointsResult(TypedDict, total=False):
|
|
2107
|
-
AccessPointList:
|
|
2108
|
-
NextToken:
|
|
2107
|
+
AccessPointList: AccessPointList | None
|
|
2108
|
+
NextToken: NonEmptyMaxLength1024String | None
|
|
2109
2109
|
|
|
2110
2110
|
|
|
2111
2111
|
class ListCallerAccessGrantsRequest(ServiceRequest):
|
|
2112
2112
|
AccountId: AccountId
|
|
2113
|
-
GrantScope:
|
|
2114
|
-
NextToken:
|
|
2115
|
-
MaxResults:
|
|
2116
|
-
AllowedByApplication:
|
|
2113
|
+
GrantScope: S3Prefix | None
|
|
2114
|
+
NextToken: ContinuationToken | None
|
|
2115
|
+
MaxResults: MaxResults | None
|
|
2116
|
+
AllowedByApplication: Boolean | None
|
|
2117
2117
|
|
|
2118
2118
|
|
|
2119
2119
|
class ListCallerAccessGrantsResult(TypedDict, total=False):
|
|
2120
|
-
NextToken:
|
|
2121
|
-
CallerAccessGrantsList:
|
|
2120
|
+
NextToken: ContinuationToken | None
|
|
2121
|
+
CallerAccessGrantsList: CallerAccessGrantsList | None
|
|
2122
2122
|
|
|
2123
2123
|
|
|
2124
2124
|
class ListJobsRequest(ServiceRequest):
|
|
2125
2125
|
AccountId: AccountId
|
|
2126
|
-
JobStatuses:
|
|
2127
|
-
NextToken:
|
|
2128
|
-
MaxResults:
|
|
2126
|
+
JobStatuses: JobStatusList | None
|
|
2127
|
+
NextToken: StringForNextToken | None
|
|
2128
|
+
MaxResults: MaxResults | None
|
|
2129
2129
|
|
|
2130
2130
|
|
|
2131
2131
|
class ListJobsResult(TypedDict, total=False):
|
|
2132
|
-
NextToken:
|
|
2133
|
-
Jobs:
|
|
2132
|
+
NextToken: StringForNextToken | None
|
|
2133
|
+
Jobs: JobListDescriptorList | None
|
|
2134
2134
|
|
|
2135
2135
|
|
|
2136
2136
|
class ListMultiRegionAccessPointsRequest(ServiceRequest):
|
|
2137
2137
|
AccountId: AccountId
|
|
2138
|
-
NextToken:
|
|
2139
|
-
MaxResults:
|
|
2138
|
+
NextToken: NonEmptyMaxLength1024String | None
|
|
2139
|
+
MaxResults: MaxResults | None
|
|
2140
2140
|
|
|
2141
2141
|
|
|
2142
|
-
MultiRegionAccessPointReportList =
|
|
2142
|
+
MultiRegionAccessPointReportList = list[MultiRegionAccessPointReport]
|
|
2143
2143
|
|
|
2144
2144
|
|
|
2145
2145
|
class ListMultiRegionAccessPointsResult(TypedDict, total=False):
|
|
2146
|
-
AccessPoints:
|
|
2147
|
-
NextToken:
|
|
2146
|
+
AccessPoints: MultiRegionAccessPointReportList | None
|
|
2147
|
+
NextToken: NonEmptyMaxLength1024String | None
|
|
2148
2148
|
|
|
2149
2149
|
|
|
2150
2150
|
class ListRegionalBucketsRequest(ServiceRequest):
|
|
2151
2151
|
AccountId: AccountId
|
|
2152
|
-
NextToken:
|
|
2153
|
-
MaxResults:
|
|
2154
|
-
OutpostId:
|
|
2152
|
+
NextToken: NonEmptyMaxLength1024String | None
|
|
2153
|
+
MaxResults: MaxResults | None
|
|
2154
|
+
OutpostId: NonEmptyMaxLength64String | None
|
|
2155
2155
|
|
|
2156
2156
|
|
|
2157
2157
|
class RegionalBucket(TypedDict, total=False):
|
|
2158
2158
|
Bucket: BucketName
|
|
2159
|
-
BucketArn:
|
|
2159
|
+
BucketArn: S3RegionalBucketArn | None
|
|
2160
2160
|
PublicAccessBlockEnabled: PublicAccessBlockEnabled
|
|
2161
2161
|
CreationDate: CreationDate
|
|
2162
|
-
OutpostId:
|
|
2162
|
+
OutpostId: NonEmptyMaxLength64String | None
|
|
2163
2163
|
|
|
2164
2164
|
|
|
2165
|
-
RegionalBucketList =
|
|
2165
|
+
RegionalBucketList = list[RegionalBucket]
|
|
2166
2166
|
|
|
2167
2167
|
|
|
2168
2168
|
class ListRegionalBucketsResult(TypedDict, total=False):
|
|
2169
|
-
RegionalBucketList:
|
|
2170
|
-
NextToken:
|
|
2169
|
+
RegionalBucketList: RegionalBucketList | None
|
|
2170
|
+
NextToken: NonEmptyMaxLength1024String | None
|
|
2171
2171
|
|
|
2172
2172
|
|
|
2173
2173
|
class ListStorageLensConfigurationEntry(TypedDict, total=False):
|
|
2174
2174
|
Id: ConfigId
|
|
2175
2175
|
StorageLensArn: StorageLensArn
|
|
2176
2176
|
HomeRegion: S3AWSRegion
|
|
2177
|
-
IsEnabled:
|
|
2177
|
+
IsEnabled: IsEnabled | None
|
|
2178
2178
|
|
|
2179
2179
|
|
|
2180
2180
|
class ListStorageLensConfigurationsRequest(ServiceRequest):
|
|
2181
2181
|
AccountId: AccountId
|
|
2182
|
-
NextToken:
|
|
2182
|
+
NextToken: ContinuationToken | None
|
|
2183
2183
|
|
|
2184
2184
|
|
|
2185
|
-
StorageLensConfigurationList =
|
|
2185
|
+
StorageLensConfigurationList = list[ListStorageLensConfigurationEntry]
|
|
2186
2186
|
|
|
2187
2187
|
|
|
2188
2188
|
class ListStorageLensConfigurationsResult(TypedDict, total=False):
|
|
2189
|
-
NextToken:
|
|
2190
|
-
StorageLensConfigurationList:
|
|
2189
|
+
NextToken: ContinuationToken | None
|
|
2190
|
+
StorageLensConfigurationList: StorageLensConfigurationList | None
|
|
2191
2191
|
|
|
2192
2192
|
|
|
2193
2193
|
class ListStorageLensGroupEntry(TypedDict, total=False):
|
|
@@ -2198,15 +2198,15 @@ class ListStorageLensGroupEntry(TypedDict, total=False):
|
|
|
2198
2198
|
|
|
2199
2199
|
class ListStorageLensGroupsRequest(ServiceRequest):
|
|
2200
2200
|
AccountId: AccountId
|
|
2201
|
-
NextToken:
|
|
2201
|
+
NextToken: ContinuationToken | None
|
|
2202
2202
|
|
|
2203
2203
|
|
|
2204
|
-
StorageLensGroupList =
|
|
2204
|
+
StorageLensGroupList = list[ListStorageLensGroupEntry]
|
|
2205
2205
|
|
|
2206
2206
|
|
|
2207
2207
|
class ListStorageLensGroupsResult(TypedDict, total=False):
|
|
2208
|
-
NextToken:
|
|
2209
|
-
StorageLensGroupList:
|
|
2208
|
+
NextToken: ContinuationToken | None
|
|
2209
|
+
StorageLensGroupList: StorageLensGroupList | None
|
|
2210
2210
|
|
|
2211
2211
|
|
|
2212
2212
|
class ListTagsForResourceRequest(ServiceRequest):
|
|
@@ -2215,19 +2215,19 @@ class ListTagsForResourceRequest(ServiceRequest):
|
|
|
2215
2215
|
|
|
2216
2216
|
|
|
2217
2217
|
class ListTagsForResourceResult(TypedDict, total=False):
|
|
2218
|
-
Tags:
|
|
2218
|
+
Tags: TagList | None
|
|
2219
2219
|
|
|
2220
2220
|
|
|
2221
2221
|
class PutAccessGrantsInstanceResourcePolicyRequest(ServiceRequest):
|
|
2222
2222
|
AccountId: AccountId
|
|
2223
2223
|
Policy: PolicyDocument
|
|
2224
|
-
Organization:
|
|
2224
|
+
Organization: Organization | None
|
|
2225
2225
|
|
|
2226
2226
|
|
|
2227
2227
|
class PutAccessGrantsInstanceResourcePolicyResult(TypedDict, total=False):
|
|
2228
|
-
Policy:
|
|
2229
|
-
Organization:
|
|
2230
|
-
CreatedAt:
|
|
2228
|
+
Policy: PolicyDocument | None
|
|
2229
|
+
Organization: Organization | None
|
|
2230
|
+
CreatedAt: CreationTimestamp | None
|
|
2231
2231
|
|
|
2232
2232
|
|
|
2233
2233
|
class PutAccessPointConfigurationForObjectLambdaRequest(ServiceRequest):
|
|
@@ -2257,13 +2257,13 @@ class PutAccessPointScopeRequest(ServiceRequest):
|
|
|
2257
2257
|
class PutBucketLifecycleConfigurationRequest(ServiceRequest):
|
|
2258
2258
|
AccountId: AccountId
|
|
2259
2259
|
Bucket: BucketName
|
|
2260
|
-
LifecycleConfiguration:
|
|
2260
|
+
LifecycleConfiguration: LifecycleConfiguration | None
|
|
2261
2261
|
|
|
2262
2262
|
|
|
2263
2263
|
class PutBucketPolicyRequest(ServiceRequest):
|
|
2264
2264
|
AccountId: AccountId
|
|
2265
2265
|
Bucket: BucketName
|
|
2266
|
-
ConfirmRemoveSelfBucketAccess:
|
|
2266
|
+
ConfirmRemoveSelfBucketAccess: ConfirmRemoveSelfBucketAccess | None
|
|
2267
2267
|
Policy: Policy
|
|
2268
2268
|
|
|
2269
2269
|
|
|
@@ -2284,14 +2284,14 @@ class PutBucketTaggingRequest(ServiceRequest):
|
|
|
2284
2284
|
|
|
2285
2285
|
|
|
2286
2286
|
class VersioningConfiguration(TypedDict, total=False):
|
|
2287
|
-
MFADelete:
|
|
2288
|
-
Status:
|
|
2287
|
+
MFADelete: MFADelete | None
|
|
2288
|
+
Status: BucketVersioningStatus | None
|
|
2289
2289
|
|
|
2290
2290
|
|
|
2291
2291
|
class PutBucketVersioningRequest(ServiceRequest):
|
|
2292
2292
|
AccountId: AccountId
|
|
2293
2293
|
Bucket: BucketName
|
|
2294
|
-
MFA:
|
|
2294
|
+
MFA: MFA | None
|
|
2295
2295
|
VersioningConfiguration: VersioningConfiguration
|
|
2296
2296
|
|
|
2297
2297
|
|
|
@@ -2312,7 +2312,7 @@ class PutMultiRegionAccessPointPolicyRequest(ServiceRequest):
|
|
|
2312
2312
|
|
|
2313
2313
|
|
|
2314
2314
|
class PutMultiRegionAccessPointPolicyResult(TypedDict, total=False):
|
|
2315
|
-
RequestTokenARN:
|
|
2315
|
+
RequestTokenARN: AsyncRequestTokenARN | None
|
|
2316
2316
|
|
|
2317
2317
|
|
|
2318
2318
|
class PutPublicAccessBlockRequest(ServiceRequest):
|
|
@@ -2324,7 +2324,7 @@ class PutStorageLensConfigurationRequest(ServiceRequest):
|
|
|
2324
2324
|
ConfigId: ConfigId
|
|
2325
2325
|
AccountId: AccountId
|
|
2326
2326
|
StorageLensConfiguration: StorageLensConfiguration
|
|
2327
|
-
Tags:
|
|
2327
|
+
Tags: StorageLensTags | None
|
|
2328
2328
|
|
|
2329
2329
|
|
|
2330
2330
|
class PutStorageLensConfigurationTaggingRequest(ServiceRequest):
|
|
@@ -2347,7 +2347,7 @@ class SubmitMultiRegionAccessPointRoutesResult(TypedDict, total=False):
|
|
|
2347
2347
|
pass
|
|
2348
2348
|
|
|
2349
2349
|
|
|
2350
|
-
TagKeyList =
|
|
2350
|
+
TagKeyList = list[TagKeyString]
|
|
2351
2351
|
|
|
2352
2352
|
|
|
2353
2353
|
class TagResourceRequest(ServiceRequest):
|
|
@@ -2377,11 +2377,11 @@ class UpdateAccessGrantsLocationRequest(ServiceRequest):
|
|
|
2377
2377
|
|
|
2378
2378
|
|
|
2379
2379
|
class UpdateAccessGrantsLocationResult(TypedDict, total=False):
|
|
2380
|
-
CreatedAt:
|
|
2381
|
-
AccessGrantsLocationId:
|
|
2382
|
-
AccessGrantsLocationArn:
|
|
2383
|
-
LocationScope:
|
|
2384
|
-
IAMRoleArn:
|
|
2380
|
+
CreatedAt: CreationTimestamp | None
|
|
2381
|
+
AccessGrantsLocationId: AccessGrantsLocationId | None
|
|
2382
|
+
AccessGrantsLocationArn: AccessGrantsLocationArn | None
|
|
2383
|
+
LocationScope: S3Prefix | None
|
|
2384
|
+
IAMRoleArn: IAMRoleArn | None
|
|
2385
2385
|
|
|
2386
2386
|
|
|
2387
2387
|
class UpdateJobPriorityRequest(ServiceRequest):
|
|
@@ -2399,13 +2399,13 @@ class UpdateJobStatusRequest(ServiceRequest):
|
|
|
2399
2399
|
AccountId: AccountId
|
|
2400
2400
|
JobId: JobId
|
|
2401
2401
|
RequestedJobStatus: RequestedJobStatus
|
|
2402
|
-
StatusUpdateReason:
|
|
2402
|
+
StatusUpdateReason: JobStatusUpdateReason | None
|
|
2403
2403
|
|
|
2404
2404
|
|
|
2405
2405
|
class UpdateJobStatusResult(TypedDict, total=False):
|
|
2406
|
-
JobId:
|
|
2407
|
-
Status:
|
|
2408
|
-
StatusUpdateReason:
|
|
2406
|
+
JobId: JobId | None
|
|
2407
|
+
Status: JobStatus | None
|
|
2408
|
+
StatusUpdateReason: JobStatusUpdateReason | None
|
|
2409
2409
|
|
|
2410
2410
|
|
|
2411
2411
|
class UpdateStorageLensGroupRequest(ServiceRequest):
|
|
@@ -2415,8 +2415,8 @@ class UpdateStorageLensGroupRequest(ServiceRequest):
|
|
|
2415
2415
|
|
|
2416
2416
|
|
|
2417
2417
|
class S3ControlApi:
|
|
2418
|
-
service = "s3control"
|
|
2419
|
-
version = "2018-08-20"
|
|
2418
|
+
service: str = "s3control"
|
|
2419
|
+
version: str = "2018-08-20"
|
|
2420
2420
|
|
|
2421
2421
|
@handler("AssociateAccessGrantsIdentityCenter")
|
|
2422
2422
|
def associate_access_grants_identity_center(
|