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.
Potentially problematic release.
This version of localstack-core might be problematic. Click here for more details.
- 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
|
|
|
@@ -46,6 +46,7 @@ IdentityCenterApplicationARN = str
|
|
|
46
46
|
IdentityCenterInstanceARN = str
|
|
47
47
|
IdentityPoolId = str
|
|
48
48
|
IdentityStoreId = str
|
|
49
|
+
IndexName = str
|
|
49
50
|
InstanceCount = int
|
|
50
51
|
InstanceRole = str
|
|
51
52
|
InstanceTypeString = str
|
|
@@ -262,6 +263,12 @@ class InboundConnectionStatusCode(StrEnum):
|
|
|
262
263
|
DELETED = "DELETED"
|
|
263
264
|
|
|
264
265
|
|
|
266
|
+
class IndexStatus(StrEnum):
|
|
267
|
+
CREATED = "CREATED"
|
|
268
|
+
UPDATED = "UPDATED"
|
|
269
|
+
DELETED = "DELETED"
|
|
270
|
+
|
|
271
|
+
|
|
265
272
|
class InitiatedBy(StrEnum):
|
|
266
273
|
CUSTOMER = "CUSTOMER"
|
|
267
274
|
SERVICE = "SERVICE"
|
|
@@ -669,14 +676,20 @@ class ResourceNotFoundException(ServiceException):
|
|
|
669
676
|
|
|
670
677
|
|
|
671
678
|
Long = int
|
|
672
|
-
SlotList =
|
|
679
|
+
SlotList = list[Long]
|
|
673
680
|
|
|
674
681
|
|
|
675
682
|
class SlotNotAvailableException(ServiceException):
|
|
676
683
|
code: str = "SlotNotAvailableException"
|
|
677
684
|
sender_fault: bool = False
|
|
678
685
|
status_code: int = 409
|
|
679
|
-
SlotSuggestions:
|
|
686
|
+
SlotSuggestions: SlotList | None
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
class ThrottlingException(ServiceException):
|
|
690
|
+
code: str = "ThrottlingException"
|
|
691
|
+
sender_fault: bool = False
|
|
692
|
+
status_code: int = 429
|
|
680
693
|
|
|
681
694
|
|
|
682
695
|
class ValidationException(ServiceException):
|
|
@@ -686,26 +699,26 @@ class ValidationException(ServiceException):
|
|
|
686
699
|
|
|
687
700
|
|
|
688
701
|
class S3VectorsEngine(TypedDict, total=False):
|
|
689
|
-
Enabled:
|
|
702
|
+
Enabled: Boolean | None
|
|
690
703
|
|
|
691
704
|
|
|
692
705
|
class NaturalLanguageQueryGenerationOptionsInput(TypedDict, total=False):
|
|
693
|
-
DesiredState:
|
|
706
|
+
DesiredState: NaturalLanguageQueryGenerationDesiredState | None
|
|
694
707
|
|
|
695
708
|
|
|
696
709
|
class AIMLOptionsInput(TypedDict, total=False):
|
|
697
|
-
NaturalLanguageQueryGenerationOptions:
|
|
698
|
-
S3VectorsEngine:
|
|
710
|
+
NaturalLanguageQueryGenerationOptions: NaturalLanguageQueryGenerationOptionsInput | None
|
|
711
|
+
S3VectorsEngine: S3VectorsEngine | None
|
|
699
712
|
|
|
700
713
|
|
|
701
714
|
class NaturalLanguageQueryGenerationOptionsOutput(TypedDict, total=False):
|
|
702
|
-
DesiredState:
|
|
703
|
-
CurrentState:
|
|
715
|
+
DesiredState: NaturalLanguageQueryGenerationDesiredState | None
|
|
716
|
+
CurrentState: NaturalLanguageQueryGenerationCurrentState | None
|
|
704
717
|
|
|
705
718
|
|
|
706
719
|
class AIMLOptionsOutput(TypedDict, total=False):
|
|
707
|
-
NaturalLanguageQueryGenerationOptions:
|
|
708
|
-
S3VectorsEngine:
|
|
720
|
+
NaturalLanguageQueryGenerationOptions: NaturalLanguageQueryGenerationOptionsOutput | None
|
|
721
|
+
S3VectorsEngine: S3VectorsEngine | None
|
|
709
722
|
|
|
710
723
|
|
|
711
724
|
UpdateTimestamp = datetime
|
|
@@ -714,20 +727,20 @@ UpdateTimestamp = datetime
|
|
|
714
727
|
class OptionStatus(TypedDict, total=False):
|
|
715
728
|
CreationDate: UpdateTimestamp
|
|
716
729
|
UpdateDate: UpdateTimestamp
|
|
717
|
-
UpdateVersion:
|
|
730
|
+
UpdateVersion: UIntValue | None
|
|
718
731
|
State: OptionState
|
|
719
|
-
PendingDeletion:
|
|
732
|
+
PendingDeletion: Boolean | None
|
|
720
733
|
|
|
721
734
|
|
|
722
735
|
class AIMLOptionsStatus(TypedDict, total=False):
|
|
723
|
-
Options:
|
|
724
|
-
Status:
|
|
736
|
+
Options: AIMLOptionsOutput | None
|
|
737
|
+
Status: OptionStatus | None
|
|
725
738
|
|
|
726
739
|
|
|
727
740
|
class AWSDomainInformation(TypedDict, total=False):
|
|
728
|
-
OwnerId:
|
|
741
|
+
OwnerId: OwnerId | None
|
|
729
742
|
DomainName: DomainName
|
|
730
|
-
Region:
|
|
743
|
+
Region: Region | None
|
|
731
744
|
|
|
732
745
|
|
|
733
746
|
class AcceptInboundConnectionRequest(ServiceRequest):
|
|
@@ -735,24 +748,24 @@ class AcceptInboundConnectionRequest(ServiceRequest):
|
|
|
735
748
|
|
|
736
749
|
|
|
737
750
|
class InboundConnectionStatus(TypedDict, total=False):
|
|
738
|
-
StatusCode:
|
|
739
|
-
Message:
|
|
751
|
+
StatusCode: InboundConnectionStatusCode | None
|
|
752
|
+
Message: ConnectionStatusMessage | None
|
|
740
753
|
|
|
741
754
|
|
|
742
755
|
class DomainInformationContainer(TypedDict, total=False):
|
|
743
|
-
AWSDomainInformation:
|
|
756
|
+
AWSDomainInformation: AWSDomainInformation | None
|
|
744
757
|
|
|
745
758
|
|
|
746
759
|
class InboundConnection(TypedDict, total=False):
|
|
747
|
-
LocalDomainInfo:
|
|
748
|
-
RemoteDomainInfo:
|
|
749
|
-
ConnectionId:
|
|
750
|
-
ConnectionStatus:
|
|
751
|
-
ConnectionMode:
|
|
760
|
+
LocalDomainInfo: DomainInformationContainer | None
|
|
761
|
+
RemoteDomainInfo: DomainInformationContainer | None
|
|
762
|
+
ConnectionId: ConnectionId | None
|
|
763
|
+
ConnectionStatus: InboundConnectionStatus | None
|
|
764
|
+
ConnectionMode: ConnectionMode | None
|
|
752
765
|
|
|
753
766
|
|
|
754
767
|
class AcceptInboundConnectionResponse(TypedDict, total=False):
|
|
755
|
-
Connection:
|
|
768
|
+
Connection: InboundConnection | None
|
|
756
769
|
|
|
757
770
|
|
|
758
771
|
class AccessPoliciesStatus(TypedDict, total=False):
|
|
@@ -761,22 +774,22 @@ class AccessPoliciesStatus(TypedDict, total=False):
|
|
|
761
774
|
|
|
762
775
|
|
|
763
776
|
class S3GlueDataCatalog(TypedDict, total=False):
|
|
764
|
-
RoleArn:
|
|
777
|
+
RoleArn: RoleArn | None
|
|
765
778
|
|
|
766
779
|
|
|
767
780
|
class DataSourceType(TypedDict, total=False):
|
|
768
|
-
S3GlueDataCatalog:
|
|
781
|
+
S3GlueDataCatalog: S3GlueDataCatalog | None
|
|
769
782
|
|
|
770
783
|
|
|
771
784
|
class AddDataSourceRequest(ServiceRequest):
|
|
772
785
|
DomainName: DomainName
|
|
773
786
|
Name: DataSourceName
|
|
774
787
|
DataSourceType: DataSourceType
|
|
775
|
-
Description:
|
|
788
|
+
Description: DataSourceDescription | None
|
|
776
789
|
|
|
777
790
|
|
|
778
791
|
class AddDataSourceResponse(TypedDict, total=False):
|
|
779
|
-
Message:
|
|
792
|
+
Message: String | None
|
|
780
793
|
|
|
781
794
|
|
|
782
795
|
class Tag(TypedDict, total=False):
|
|
@@ -784,8 +797,8 @@ class Tag(TypedDict, total=False):
|
|
|
784
797
|
Value: TagValue
|
|
785
798
|
|
|
786
799
|
|
|
787
|
-
TagList =
|
|
788
|
-
DirectQueryOpenSearchARNList =
|
|
800
|
+
TagList = list[Tag]
|
|
801
|
+
DirectQueryOpenSearchARNList = list[ARN]
|
|
789
802
|
|
|
790
803
|
|
|
791
804
|
class SecurityLakeDirectQueryDataSource(TypedDict, total=False):
|
|
@@ -797,20 +810,20 @@ class CloudWatchDirectQueryDataSource(TypedDict, total=False):
|
|
|
797
810
|
|
|
798
811
|
|
|
799
812
|
class DirectQueryDataSourceType(TypedDict, total=False):
|
|
800
|
-
CloudWatchLog:
|
|
801
|
-
SecurityLake:
|
|
813
|
+
CloudWatchLog: CloudWatchDirectQueryDataSource | None
|
|
814
|
+
SecurityLake: SecurityLakeDirectQueryDataSource | None
|
|
802
815
|
|
|
803
816
|
|
|
804
817
|
class AddDirectQueryDataSourceRequest(ServiceRequest):
|
|
805
818
|
DataSourceName: DirectQueryDataSourceName
|
|
806
819
|
DataSourceType: DirectQueryDataSourceType
|
|
807
|
-
Description:
|
|
820
|
+
Description: DirectQueryDataSourceDescription | None
|
|
808
821
|
OpenSearchArns: DirectQueryOpenSearchARNList
|
|
809
|
-
TagList:
|
|
822
|
+
TagList: TagList | None
|
|
810
823
|
|
|
811
824
|
|
|
812
825
|
class AddDirectQueryDataSourceResponse(TypedDict, total=False):
|
|
813
|
-
DataSourceArn:
|
|
826
|
+
DataSourceArn: String | None
|
|
814
827
|
|
|
815
828
|
|
|
816
829
|
class AddTagsRequest(ServiceRequest):
|
|
@@ -818,16 +831,16 @@ class AddTagsRequest(ServiceRequest):
|
|
|
818
831
|
TagList: TagList
|
|
819
832
|
|
|
820
833
|
|
|
821
|
-
LimitValueList =
|
|
834
|
+
LimitValueList = list[LimitValue]
|
|
822
835
|
|
|
823
836
|
|
|
824
837
|
class AdditionalLimit(TypedDict, total=False):
|
|
825
|
-
LimitName:
|
|
826
|
-
LimitValues:
|
|
838
|
+
LimitName: LimitName | None
|
|
839
|
+
LimitValues: LimitValueList | None
|
|
827
840
|
|
|
828
841
|
|
|
829
|
-
AdditionalLimitList =
|
|
830
|
-
AdvancedOptions =
|
|
842
|
+
AdditionalLimitList = list[AdditionalLimit]
|
|
843
|
+
AdvancedOptions = dict[String, String]
|
|
831
844
|
|
|
832
845
|
|
|
833
846
|
class AdvancedOptionsStatus(TypedDict, total=False):
|
|
@@ -839,16 +852,16 @@ DisableTimestamp = datetime
|
|
|
839
852
|
|
|
840
853
|
|
|
841
854
|
class IAMFederationOptionsOutput(TypedDict, total=False):
|
|
842
|
-
Enabled:
|
|
843
|
-
SubjectKey:
|
|
844
|
-
RolesKey:
|
|
855
|
+
Enabled: Boolean | None
|
|
856
|
+
SubjectKey: IAMFederationSubjectKey | None
|
|
857
|
+
RolesKey: IAMFederationRolesKey | None
|
|
845
858
|
|
|
846
859
|
|
|
847
860
|
class JWTOptionsOutput(TypedDict, total=False):
|
|
848
|
-
Enabled:
|
|
849
|
-
SubjectKey:
|
|
850
|
-
RolesKey:
|
|
851
|
-
PublicKey:
|
|
861
|
+
Enabled: Boolean | None
|
|
862
|
+
SubjectKey: String | None
|
|
863
|
+
RolesKey: String | None
|
|
864
|
+
PublicKey: String | None
|
|
852
865
|
|
|
853
866
|
|
|
854
867
|
class SAMLIdp(TypedDict, total=False):
|
|
@@ -857,60 +870,60 @@ class SAMLIdp(TypedDict, total=False):
|
|
|
857
870
|
|
|
858
871
|
|
|
859
872
|
class SAMLOptionsOutput(TypedDict, total=False):
|
|
860
|
-
Enabled:
|
|
861
|
-
Idp:
|
|
862
|
-
SubjectKey:
|
|
863
|
-
RolesKey:
|
|
864
|
-
SessionTimeoutMinutes:
|
|
873
|
+
Enabled: Boolean | None
|
|
874
|
+
Idp: SAMLIdp | None
|
|
875
|
+
SubjectKey: String | None
|
|
876
|
+
RolesKey: String | None
|
|
877
|
+
SessionTimeoutMinutes: IntegerClass | None
|
|
865
878
|
|
|
866
879
|
|
|
867
880
|
class AdvancedSecurityOptions(TypedDict, total=False):
|
|
868
|
-
Enabled:
|
|
869
|
-
InternalUserDatabaseEnabled:
|
|
870
|
-
SAMLOptions:
|
|
871
|
-
JWTOptions:
|
|
872
|
-
IAMFederationOptions:
|
|
873
|
-
AnonymousAuthDisableDate:
|
|
874
|
-
AnonymousAuthEnabled:
|
|
881
|
+
Enabled: Boolean | None
|
|
882
|
+
InternalUserDatabaseEnabled: Boolean | None
|
|
883
|
+
SAMLOptions: SAMLOptionsOutput | None
|
|
884
|
+
JWTOptions: JWTOptionsOutput | None
|
|
885
|
+
IAMFederationOptions: IAMFederationOptionsOutput | None
|
|
886
|
+
AnonymousAuthDisableDate: DisableTimestamp | None
|
|
887
|
+
AnonymousAuthEnabled: Boolean | None
|
|
875
888
|
|
|
876
889
|
|
|
877
890
|
class IAMFederationOptionsInput(TypedDict, total=False):
|
|
878
|
-
Enabled:
|
|
879
|
-
SubjectKey:
|
|
880
|
-
RolesKey:
|
|
891
|
+
Enabled: Boolean | None
|
|
892
|
+
SubjectKey: IAMFederationSubjectKey | None
|
|
893
|
+
RolesKey: IAMFederationRolesKey | None
|
|
881
894
|
|
|
882
895
|
|
|
883
896
|
class JWTOptionsInput(TypedDict, total=False):
|
|
884
|
-
Enabled:
|
|
885
|
-
SubjectKey:
|
|
886
|
-
RolesKey:
|
|
887
|
-
PublicKey:
|
|
897
|
+
Enabled: Boolean | None
|
|
898
|
+
SubjectKey: SubjectKey | None
|
|
899
|
+
RolesKey: RolesKey | None
|
|
900
|
+
PublicKey: String | None
|
|
888
901
|
|
|
889
902
|
|
|
890
903
|
class SAMLOptionsInput(TypedDict, total=False):
|
|
891
|
-
Enabled:
|
|
892
|
-
Idp:
|
|
893
|
-
MasterUserName:
|
|
894
|
-
MasterBackendRole:
|
|
895
|
-
SubjectKey:
|
|
896
|
-
RolesKey:
|
|
897
|
-
SessionTimeoutMinutes:
|
|
904
|
+
Enabled: Boolean | None
|
|
905
|
+
Idp: SAMLIdp | None
|
|
906
|
+
MasterUserName: Username | None
|
|
907
|
+
MasterBackendRole: BackendRole | None
|
|
908
|
+
SubjectKey: String | None
|
|
909
|
+
RolesKey: String | None
|
|
910
|
+
SessionTimeoutMinutes: IntegerClass | None
|
|
898
911
|
|
|
899
912
|
|
|
900
913
|
class MasterUserOptions(TypedDict, total=False):
|
|
901
|
-
MasterUserARN:
|
|
902
|
-
MasterUserName:
|
|
903
|
-
MasterUserPassword:
|
|
914
|
+
MasterUserARN: ARN | None
|
|
915
|
+
MasterUserName: Username | None
|
|
916
|
+
MasterUserPassword: Password | None
|
|
904
917
|
|
|
905
918
|
|
|
906
919
|
class AdvancedSecurityOptionsInput(TypedDict, total=False):
|
|
907
|
-
Enabled:
|
|
908
|
-
InternalUserDatabaseEnabled:
|
|
909
|
-
MasterUserOptions:
|
|
910
|
-
SAMLOptions:
|
|
911
|
-
JWTOptions:
|
|
912
|
-
IAMFederationOptions:
|
|
913
|
-
AnonymousAuthEnabled:
|
|
920
|
+
Enabled: Boolean | None
|
|
921
|
+
InternalUserDatabaseEnabled: Boolean | None
|
|
922
|
+
MasterUserOptions: MasterUserOptions | None
|
|
923
|
+
SAMLOptions: SAMLOptionsInput | None
|
|
924
|
+
JWTOptions: JWTOptionsInput | None
|
|
925
|
+
IAMFederationOptions: IAMFederationOptionsInput | None
|
|
926
|
+
AnonymousAuthEnabled: Boolean | None
|
|
914
927
|
|
|
915
928
|
|
|
916
929
|
class AdvancedSecurityOptionsStatus(TypedDict, total=False):
|
|
@@ -919,80 +932,80 @@ class AdvancedSecurityOptionsStatus(TypedDict, total=False):
|
|
|
919
932
|
|
|
920
933
|
|
|
921
934
|
class AppConfig(TypedDict, total=False):
|
|
922
|
-
key:
|
|
923
|
-
value:
|
|
935
|
+
key: AppConfigType | None
|
|
936
|
+
value: AppConfigValue | None
|
|
924
937
|
|
|
925
938
|
|
|
926
|
-
AppConfigs =
|
|
927
|
-
ApplicationStatuses =
|
|
939
|
+
AppConfigs = list[AppConfig]
|
|
940
|
+
ApplicationStatuses = list[ApplicationStatus]
|
|
928
941
|
Timestamp = datetime
|
|
929
942
|
|
|
930
943
|
|
|
931
944
|
class ApplicationSummary(TypedDict, total=False):
|
|
932
|
-
id:
|
|
933
|
-
arn:
|
|
934
|
-
name:
|
|
935
|
-
endpoint:
|
|
936
|
-
status:
|
|
937
|
-
createdAt:
|
|
938
|
-
lastUpdatedAt:
|
|
945
|
+
id: Id | None
|
|
946
|
+
arn: ARN | None
|
|
947
|
+
name: ApplicationName | None
|
|
948
|
+
endpoint: String | None
|
|
949
|
+
status: ApplicationStatus | None
|
|
950
|
+
createdAt: Timestamp | None
|
|
951
|
+
lastUpdatedAt: Timestamp | None
|
|
939
952
|
|
|
940
953
|
|
|
941
|
-
ApplicationSummaries =
|
|
954
|
+
ApplicationSummaries = list[ApplicationSummary]
|
|
942
955
|
|
|
943
956
|
|
|
944
957
|
class KeyStoreAccessOption(TypedDict, total=False):
|
|
945
|
-
KeyAccessRoleArn:
|
|
958
|
+
KeyAccessRoleArn: RoleArn | None
|
|
946
959
|
KeyStoreAccessEnabled: Boolean
|
|
947
960
|
|
|
948
961
|
|
|
949
962
|
class PackageAssociationConfiguration(TypedDict, total=False):
|
|
950
|
-
KeyStoreAccessOption:
|
|
963
|
+
KeyStoreAccessOption: KeyStoreAccessOption | None
|
|
951
964
|
|
|
952
965
|
|
|
953
|
-
PackageIDList =
|
|
966
|
+
PackageIDList = list[PackageID]
|
|
954
967
|
|
|
955
968
|
|
|
956
969
|
class AssociatePackageRequest(ServiceRequest):
|
|
957
970
|
PackageID: PackageID
|
|
958
971
|
DomainName: DomainName
|
|
959
|
-
PrerequisitePackageIDList:
|
|
960
|
-
AssociationConfiguration:
|
|
972
|
+
PrerequisitePackageIDList: PackageIDList | None
|
|
973
|
+
AssociationConfiguration: PackageAssociationConfiguration | None
|
|
961
974
|
|
|
962
975
|
|
|
963
976
|
class ErrorDetails(TypedDict, total=False):
|
|
964
|
-
ErrorType:
|
|
965
|
-
ErrorMessage:
|
|
977
|
+
ErrorType: ErrorType | None
|
|
978
|
+
ErrorMessage: ErrorMessage | None
|
|
966
979
|
|
|
967
980
|
|
|
968
981
|
LastUpdated = datetime
|
|
969
982
|
|
|
970
983
|
|
|
971
984
|
class DomainPackageDetails(TypedDict, total=False):
|
|
972
|
-
PackageID:
|
|
973
|
-
PackageName:
|
|
974
|
-
PackageType:
|
|
975
|
-
LastUpdated:
|
|
976
|
-
DomainName:
|
|
977
|
-
DomainPackageStatus:
|
|
978
|
-
PackageVersion:
|
|
979
|
-
PrerequisitePackageIDList:
|
|
980
|
-
ReferencePath:
|
|
981
|
-
ErrorDetails:
|
|
982
|
-
AssociationConfiguration:
|
|
985
|
+
PackageID: PackageID | None
|
|
986
|
+
PackageName: PackageName | None
|
|
987
|
+
PackageType: PackageType | None
|
|
988
|
+
LastUpdated: LastUpdated | None
|
|
989
|
+
DomainName: DomainName | None
|
|
990
|
+
DomainPackageStatus: DomainPackageStatus | None
|
|
991
|
+
PackageVersion: PackageVersion | None
|
|
992
|
+
PrerequisitePackageIDList: PackageIDList | None
|
|
993
|
+
ReferencePath: ReferencePath | None
|
|
994
|
+
ErrorDetails: ErrorDetails | None
|
|
995
|
+
AssociationConfiguration: PackageAssociationConfiguration | None
|
|
983
996
|
|
|
984
997
|
|
|
985
998
|
class AssociatePackageResponse(TypedDict, total=False):
|
|
986
|
-
DomainPackageDetails:
|
|
999
|
+
DomainPackageDetails: DomainPackageDetails | None
|
|
987
1000
|
|
|
988
1001
|
|
|
989
1002
|
class PackageDetailsForAssociation(TypedDict, total=False):
|
|
990
1003
|
PackageID: PackageID
|
|
991
|
-
PrerequisitePackageIDList:
|
|
992
|
-
AssociationConfiguration:
|
|
1004
|
+
PrerequisitePackageIDList: PackageIDList | None
|
|
1005
|
+
AssociationConfiguration: PackageAssociationConfiguration | None
|
|
993
1006
|
|
|
994
1007
|
|
|
995
|
-
PackageDetailsForAssociationList =
|
|
1008
|
+
PackageDetailsForAssociationList = list[PackageDetailsForAssociation]
|
|
996
1009
|
|
|
997
1010
|
|
|
998
1011
|
class AssociatePackagesRequest(ServiceRequest):
|
|
@@ -1000,134 +1013,134 @@ class AssociatePackagesRequest(ServiceRequest):
|
|
|
1000
1013
|
DomainName: DomainName
|
|
1001
1014
|
|
|
1002
1015
|
|
|
1003
|
-
DomainPackageDetailsList =
|
|
1016
|
+
DomainPackageDetailsList = list[DomainPackageDetails]
|
|
1004
1017
|
|
|
1005
1018
|
|
|
1006
1019
|
class AssociatePackagesResponse(TypedDict, total=False):
|
|
1007
|
-
DomainPackageDetailsList:
|
|
1020
|
+
DomainPackageDetailsList: DomainPackageDetailsList | None
|
|
1008
1021
|
|
|
1009
1022
|
|
|
1010
1023
|
class AuthorizeVpcEndpointAccessRequest(ServiceRequest):
|
|
1011
1024
|
DomainName: DomainName
|
|
1012
|
-
Account:
|
|
1013
|
-
Service:
|
|
1025
|
+
Account: AWSAccount | None
|
|
1026
|
+
Service: AWSServicePrincipal | None
|
|
1014
1027
|
|
|
1015
1028
|
|
|
1016
1029
|
class AuthorizedPrincipal(TypedDict, total=False):
|
|
1017
|
-
PrincipalType:
|
|
1018
|
-
Principal:
|
|
1030
|
+
PrincipalType: PrincipalType | None
|
|
1031
|
+
Principal: String | None
|
|
1019
1032
|
|
|
1020
1033
|
|
|
1021
1034
|
class AuthorizeVpcEndpointAccessResponse(TypedDict, total=False):
|
|
1022
1035
|
AuthorizedPrincipal: AuthorizedPrincipal
|
|
1023
1036
|
|
|
1024
1037
|
|
|
1025
|
-
AuthorizedPrincipalList =
|
|
1038
|
+
AuthorizedPrincipalList = list[AuthorizedPrincipal]
|
|
1026
1039
|
AutoTuneDate = datetime
|
|
1027
1040
|
|
|
1028
1041
|
|
|
1029
1042
|
class ScheduledAutoTuneDetails(TypedDict, total=False):
|
|
1030
|
-
Date:
|
|
1031
|
-
ActionType:
|
|
1032
|
-
Action:
|
|
1033
|
-
Severity:
|
|
1043
|
+
Date: AutoTuneDate | None
|
|
1044
|
+
ActionType: ScheduledAutoTuneActionType | None
|
|
1045
|
+
Action: ScheduledAutoTuneDescription | None
|
|
1046
|
+
Severity: ScheduledAutoTuneSeverityType | None
|
|
1034
1047
|
|
|
1035
1048
|
|
|
1036
1049
|
class AutoTuneDetails(TypedDict, total=False):
|
|
1037
|
-
ScheduledAutoTuneDetails:
|
|
1050
|
+
ScheduledAutoTuneDetails: ScheduledAutoTuneDetails | None
|
|
1038
1051
|
|
|
1039
1052
|
|
|
1040
1053
|
class AutoTune(TypedDict, total=False):
|
|
1041
|
-
AutoTuneType:
|
|
1042
|
-
AutoTuneDetails:
|
|
1054
|
+
AutoTuneType: AutoTuneType | None
|
|
1055
|
+
AutoTuneDetails: AutoTuneDetails | None
|
|
1043
1056
|
|
|
1044
1057
|
|
|
1045
|
-
AutoTuneList =
|
|
1058
|
+
AutoTuneList = list[AutoTune]
|
|
1046
1059
|
DurationValue = int
|
|
1047
1060
|
|
|
1048
1061
|
|
|
1049
1062
|
class Duration(TypedDict, total=False):
|
|
1050
|
-
Value:
|
|
1051
|
-
Unit:
|
|
1063
|
+
Value: DurationValue | None
|
|
1064
|
+
Unit: TimeUnit | None
|
|
1052
1065
|
|
|
1053
1066
|
|
|
1054
1067
|
StartAt = datetime
|
|
1055
1068
|
|
|
1056
1069
|
|
|
1057
1070
|
class AutoTuneMaintenanceSchedule(TypedDict, total=False):
|
|
1058
|
-
StartAt:
|
|
1059
|
-
Duration:
|
|
1060
|
-
CronExpressionForRecurrence:
|
|
1071
|
+
StartAt: StartAt | None
|
|
1072
|
+
Duration: Duration | None
|
|
1073
|
+
CronExpressionForRecurrence: String | None
|
|
1061
1074
|
|
|
1062
1075
|
|
|
1063
|
-
AutoTuneMaintenanceScheduleList =
|
|
1076
|
+
AutoTuneMaintenanceScheduleList = list[AutoTuneMaintenanceSchedule]
|
|
1064
1077
|
|
|
1065
1078
|
|
|
1066
1079
|
class AutoTuneOptions(TypedDict, total=False):
|
|
1067
|
-
DesiredState:
|
|
1068
|
-
RollbackOnDisable:
|
|
1069
|
-
MaintenanceSchedules:
|
|
1070
|
-
UseOffPeakWindow:
|
|
1080
|
+
DesiredState: AutoTuneDesiredState | None
|
|
1081
|
+
RollbackOnDisable: RollbackOnDisable | None
|
|
1082
|
+
MaintenanceSchedules: AutoTuneMaintenanceScheduleList | None
|
|
1083
|
+
UseOffPeakWindow: Boolean | None
|
|
1071
1084
|
|
|
1072
1085
|
|
|
1073
1086
|
class AutoTuneOptionsInput(TypedDict, total=False):
|
|
1074
|
-
DesiredState:
|
|
1075
|
-
MaintenanceSchedules:
|
|
1076
|
-
UseOffPeakWindow:
|
|
1087
|
+
DesiredState: AutoTuneDesiredState | None
|
|
1088
|
+
MaintenanceSchedules: AutoTuneMaintenanceScheduleList | None
|
|
1089
|
+
UseOffPeakWindow: Boolean | None
|
|
1077
1090
|
|
|
1078
1091
|
|
|
1079
1092
|
class AutoTuneOptionsOutput(TypedDict, total=False):
|
|
1080
|
-
State:
|
|
1081
|
-
ErrorMessage:
|
|
1082
|
-
UseOffPeakWindow:
|
|
1093
|
+
State: AutoTuneState | None
|
|
1094
|
+
ErrorMessage: String | None
|
|
1095
|
+
UseOffPeakWindow: Boolean | None
|
|
1083
1096
|
|
|
1084
1097
|
|
|
1085
1098
|
class AutoTuneStatus(TypedDict, total=False):
|
|
1086
1099
|
CreationDate: UpdateTimestamp
|
|
1087
1100
|
UpdateDate: UpdateTimestamp
|
|
1088
|
-
UpdateVersion:
|
|
1101
|
+
UpdateVersion: UIntValue | None
|
|
1089
1102
|
State: AutoTuneState
|
|
1090
|
-
ErrorMessage:
|
|
1091
|
-
PendingDeletion:
|
|
1103
|
+
ErrorMessage: String | None
|
|
1104
|
+
PendingDeletion: Boolean | None
|
|
1092
1105
|
|
|
1093
1106
|
|
|
1094
1107
|
class AutoTuneOptionsStatus(TypedDict, total=False):
|
|
1095
|
-
Options:
|
|
1096
|
-
Status:
|
|
1108
|
+
Options: AutoTuneOptions | None
|
|
1109
|
+
Status: AutoTuneStatus | None
|
|
1097
1110
|
|
|
1098
1111
|
|
|
1099
1112
|
class AvailabilityZoneInfo(TypedDict, total=False):
|
|
1100
|
-
AvailabilityZoneName:
|
|
1101
|
-
ZoneStatus:
|
|
1102
|
-
ConfiguredDataNodeCount:
|
|
1103
|
-
AvailableDataNodeCount:
|
|
1104
|
-
TotalShards:
|
|
1105
|
-
TotalUnAssignedShards:
|
|
1113
|
+
AvailabilityZoneName: AvailabilityZone | None
|
|
1114
|
+
ZoneStatus: ZoneStatus | None
|
|
1115
|
+
ConfiguredDataNodeCount: NumberOfNodes | None
|
|
1116
|
+
AvailableDataNodeCount: NumberOfNodes | None
|
|
1117
|
+
TotalShards: NumberOfShards | None
|
|
1118
|
+
TotalUnAssignedShards: NumberOfShards | None
|
|
1106
1119
|
|
|
1107
1120
|
|
|
1108
|
-
AvailabilityZoneInfoList =
|
|
1109
|
-
AvailabilityZoneList =
|
|
1121
|
+
AvailabilityZoneInfoList = list[AvailabilityZoneInfo]
|
|
1122
|
+
AvailabilityZoneList = list[AvailabilityZone]
|
|
1110
1123
|
|
|
1111
1124
|
|
|
1112
1125
|
class CancelDomainConfigChangeRequest(ServiceRequest):
|
|
1113
1126
|
DomainName: DomainName
|
|
1114
|
-
DryRun:
|
|
1127
|
+
DryRun: DryRun | None
|
|
1115
1128
|
|
|
1116
1129
|
|
|
1117
1130
|
class CancelledChangeProperty(TypedDict, total=False):
|
|
1118
|
-
PropertyName:
|
|
1119
|
-
CancelledValue:
|
|
1120
|
-
ActiveValue:
|
|
1131
|
+
PropertyName: String | None
|
|
1132
|
+
CancelledValue: String | None
|
|
1133
|
+
ActiveValue: String | None
|
|
1121
1134
|
|
|
1122
1135
|
|
|
1123
|
-
CancelledChangePropertyList =
|
|
1124
|
-
GUIDList =
|
|
1136
|
+
CancelledChangePropertyList = list[CancelledChangeProperty]
|
|
1137
|
+
GUIDList = list[GUID]
|
|
1125
1138
|
|
|
1126
1139
|
|
|
1127
1140
|
class CancelDomainConfigChangeResponse(TypedDict, total=False):
|
|
1128
|
-
CancelledChangeIds:
|
|
1129
|
-
CancelledChangeProperties:
|
|
1130
|
-
DryRun:
|
|
1141
|
+
CancelledChangeIds: GUIDList | None
|
|
1142
|
+
CancelledChangeProperties: CancelledChangePropertyList | None
|
|
1143
|
+
DryRun: DryRun | None
|
|
1131
1144
|
|
|
1132
1145
|
|
|
1133
1146
|
class CancelServiceSoftwareUpdateRequest(ServiceRequest):
|
|
@@ -1138,65 +1151,65 @@ DeploymentCloseDateTimeStamp = datetime
|
|
|
1138
1151
|
|
|
1139
1152
|
|
|
1140
1153
|
class ServiceSoftwareOptions(TypedDict, total=False):
|
|
1141
|
-
CurrentVersion:
|
|
1142
|
-
NewVersion:
|
|
1143
|
-
UpdateAvailable:
|
|
1144
|
-
Cancellable:
|
|
1145
|
-
UpdateStatus:
|
|
1146
|
-
Description:
|
|
1147
|
-
AutomatedUpdateDate:
|
|
1148
|
-
OptionalDeployment:
|
|
1154
|
+
CurrentVersion: String | None
|
|
1155
|
+
NewVersion: String | None
|
|
1156
|
+
UpdateAvailable: Boolean | None
|
|
1157
|
+
Cancellable: Boolean | None
|
|
1158
|
+
UpdateStatus: DeploymentStatus | None
|
|
1159
|
+
Description: String | None
|
|
1160
|
+
AutomatedUpdateDate: DeploymentCloseDateTimeStamp | None
|
|
1161
|
+
OptionalDeployment: Boolean | None
|
|
1149
1162
|
|
|
1150
1163
|
|
|
1151
1164
|
class CancelServiceSoftwareUpdateResponse(TypedDict, total=False):
|
|
1152
|
-
ServiceSoftwareOptions:
|
|
1165
|
+
ServiceSoftwareOptions: ServiceSoftwareOptions | None
|
|
1153
1166
|
|
|
1154
1167
|
|
|
1155
1168
|
class ChangeProgressDetails(TypedDict, total=False):
|
|
1156
|
-
ChangeId:
|
|
1157
|
-
Message:
|
|
1158
|
-
ConfigChangeStatus:
|
|
1159
|
-
InitiatedBy:
|
|
1160
|
-
StartTime:
|
|
1161
|
-
LastUpdatedTime:
|
|
1169
|
+
ChangeId: GUID | None
|
|
1170
|
+
Message: Message | None
|
|
1171
|
+
ConfigChangeStatus: ConfigChangeStatus | None
|
|
1172
|
+
InitiatedBy: InitiatedBy | None
|
|
1173
|
+
StartTime: UpdateTimestamp | None
|
|
1174
|
+
LastUpdatedTime: UpdateTimestamp | None
|
|
1162
1175
|
|
|
1163
1176
|
|
|
1164
1177
|
class ChangeProgressStage(TypedDict, total=False):
|
|
1165
|
-
Name:
|
|
1166
|
-
Status:
|
|
1167
|
-
Description:
|
|
1168
|
-
LastUpdated:
|
|
1178
|
+
Name: ChangeProgressStageName | None
|
|
1179
|
+
Status: ChangeProgressStageStatus | None
|
|
1180
|
+
Description: Description | None
|
|
1181
|
+
LastUpdated: LastUpdated | None
|
|
1169
1182
|
|
|
1170
1183
|
|
|
1171
|
-
ChangeProgressStageList =
|
|
1172
|
-
StringList =
|
|
1184
|
+
ChangeProgressStageList = list[ChangeProgressStage]
|
|
1185
|
+
StringList = list[String]
|
|
1173
1186
|
|
|
1174
1187
|
|
|
1175
1188
|
class ChangeProgressStatusDetails(TypedDict, total=False):
|
|
1176
|
-
ChangeId:
|
|
1177
|
-
StartTime:
|
|
1178
|
-
Status:
|
|
1179
|
-
PendingProperties:
|
|
1180
|
-
CompletedProperties:
|
|
1181
|
-
TotalNumberOfStages:
|
|
1182
|
-
ChangeProgressStages:
|
|
1183
|
-
LastUpdatedTime:
|
|
1184
|
-
ConfigChangeStatus:
|
|
1185
|
-
InitiatedBy:
|
|
1189
|
+
ChangeId: GUID | None
|
|
1190
|
+
StartTime: UpdateTimestamp | None
|
|
1191
|
+
Status: OverallChangeStatus | None
|
|
1192
|
+
PendingProperties: StringList | None
|
|
1193
|
+
CompletedProperties: StringList | None
|
|
1194
|
+
TotalNumberOfStages: TotalNumberOfStages | None
|
|
1195
|
+
ChangeProgressStages: ChangeProgressStageList | None
|
|
1196
|
+
LastUpdatedTime: UpdateTimestamp | None
|
|
1197
|
+
ConfigChangeStatus: ConfigChangeStatus | None
|
|
1198
|
+
InitiatedBy: InitiatedBy | None
|
|
1186
1199
|
|
|
1187
1200
|
|
|
1188
1201
|
class NodeConfig(TypedDict, total=False):
|
|
1189
|
-
Enabled:
|
|
1190
|
-
Type:
|
|
1191
|
-
Count:
|
|
1202
|
+
Enabled: Boolean | None
|
|
1203
|
+
Type: OpenSearchPartitionInstanceType | None
|
|
1204
|
+
Count: IntegerClass | None
|
|
1192
1205
|
|
|
1193
1206
|
|
|
1194
1207
|
class NodeOption(TypedDict, total=False):
|
|
1195
|
-
NodeType:
|
|
1196
|
-
NodeConfig:
|
|
1208
|
+
NodeType: NodeOptionsNodeType | None
|
|
1209
|
+
NodeConfig: NodeConfig | None
|
|
1197
1210
|
|
|
1198
1211
|
|
|
1199
|
-
NodeOptionsList =
|
|
1212
|
+
NodeOptionsList = list[NodeOption]
|
|
1200
1213
|
|
|
1201
1214
|
|
|
1202
1215
|
class ColdStorageOptions(TypedDict, total=False):
|
|
@@ -1204,23 +1217,23 @@ class ColdStorageOptions(TypedDict, total=False):
|
|
|
1204
1217
|
|
|
1205
1218
|
|
|
1206
1219
|
class ZoneAwarenessConfig(TypedDict, total=False):
|
|
1207
|
-
AvailabilityZoneCount:
|
|
1220
|
+
AvailabilityZoneCount: IntegerClass | None
|
|
1208
1221
|
|
|
1209
1222
|
|
|
1210
1223
|
class ClusterConfig(TypedDict, total=False):
|
|
1211
|
-
InstanceType:
|
|
1212
|
-
InstanceCount:
|
|
1213
|
-
DedicatedMasterEnabled:
|
|
1214
|
-
ZoneAwarenessEnabled:
|
|
1215
|
-
ZoneAwarenessConfig:
|
|
1216
|
-
DedicatedMasterType:
|
|
1217
|
-
DedicatedMasterCount:
|
|
1218
|
-
WarmEnabled:
|
|
1219
|
-
WarmType:
|
|
1220
|
-
WarmCount:
|
|
1221
|
-
ColdStorageOptions:
|
|
1222
|
-
MultiAZWithStandbyEnabled:
|
|
1223
|
-
NodeOptions:
|
|
1224
|
+
InstanceType: OpenSearchPartitionInstanceType | None
|
|
1225
|
+
InstanceCount: IntegerClass | None
|
|
1226
|
+
DedicatedMasterEnabled: Boolean | None
|
|
1227
|
+
ZoneAwarenessEnabled: Boolean | None
|
|
1228
|
+
ZoneAwarenessConfig: ZoneAwarenessConfig | None
|
|
1229
|
+
DedicatedMasterType: OpenSearchPartitionInstanceType | None
|
|
1230
|
+
DedicatedMasterCount: IntegerClass | None
|
|
1231
|
+
WarmEnabled: Boolean | None
|
|
1232
|
+
WarmType: OpenSearchWarmPartitionInstanceType | None
|
|
1233
|
+
WarmCount: IntegerClass | None
|
|
1234
|
+
ColdStorageOptions: ColdStorageOptions | None
|
|
1235
|
+
MultiAZWithStandbyEnabled: Boolean | None
|
|
1236
|
+
NodeOptions: NodeOptionsList | None
|
|
1224
1237
|
|
|
1225
1238
|
|
|
1226
1239
|
class ClusterConfigStatus(TypedDict, total=False):
|
|
@@ -1229,10 +1242,10 @@ class ClusterConfigStatus(TypedDict, total=False):
|
|
|
1229
1242
|
|
|
1230
1243
|
|
|
1231
1244
|
class CognitoOptions(TypedDict, total=False):
|
|
1232
|
-
Enabled:
|
|
1233
|
-
UserPoolId:
|
|
1234
|
-
IdentityPoolId:
|
|
1235
|
-
RoleArn:
|
|
1245
|
+
Enabled: Boolean | None
|
|
1246
|
+
UserPoolId: UserPoolId | None
|
|
1247
|
+
IdentityPoolId: IdentityPoolId | None
|
|
1248
|
+
RoleArn: RoleArn | None
|
|
1236
1249
|
|
|
1237
1250
|
|
|
1238
1251
|
class CognitoOptionsStatus(TypedDict, total=False):
|
|
@@ -1240,69 +1253,69 @@ class CognitoOptionsStatus(TypedDict, total=False):
|
|
|
1240
1253
|
Status: OptionStatus
|
|
1241
1254
|
|
|
1242
1255
|
|
|
1243
|
-
VersionList =
|
|
1256
|
+
VersionList = list[VersionString]
|
|
1244
1257
|
|
|
1245
1258
|
|
|
1246
1259
|
class CompatibleVersionsMap(TypedDict, total=False):
|
|
1247
|
-
SourceVersion:
|
|
1248
|
-
TargetVersions:
|
|
1260
|
+
SourceVersion: VersionString | None
|
|
1261
|
+
TargetVersions: VersionList | None
|
|
1249
1262
|
|
|
1250
1263
|
|
|
1251
|
-
CompatibleVersionsList =
|
|
1264
|
+
CompatibleVersionsList = list[CompatibleVersionsMap]
|
|
1252
1265
|
|
|
1253
1266
|
|
|
1254
1267
|
class CrossClusterSearchConnectionProperties(TypedDict, total=False):
|
|
1255
|
-
SkipUnavailable:
|
|
1268
|
+
SkipUnavailable: SkipUnavailableStatus | None
|
|
1256
1269
|
|
|
1257
1270
|
|
|
1258
1271
|
class ConnectionProperties(TypedDict, total=False):
|
|
1259
|
-
Endpoint:
|
|
1260
|
-
CrossClusterSearch:
|
|
1272
|
+
Endpoint: Endpoint | None
|
|
1273
|
+
CrossClusterSearch: CrossClusterSearchConnectionProperties | None
|
|
1261
1274
|
|
|
1262
1275
|
|
|
1263
1276
|
class IamIdentityCenterOptionsInput(TypedDict, total=False):
|
|
1264
|
-
enabled:
|
|
1265
|
-
iamIdentityCenterInstanceArn:
|
|
1266
|
-
iamRoleForIdentityCenterApplicationArn:
|
|
1277
|
+
enabled: Boolean | None
|
|
1278
|
+
iamIdentityCenterInstanceArn: ARN | None
|
|
1279
|
+
iamRoleForIdentityCenterApplicationArn: RoleArn | None
|
|
1267
1280
|
|
|
1268
1281
|
|
|
1269
1282
|
class DataSource(TypedDict, total=False):
|
|
1270
|
-
dataSourceArn:
|
|
1271
|
-
dataSourceDescription:
|
|
1283
|
+
dataSourceArn: ARN | None
|
|
1284
|
+
dataSourceDescription: DataSourceDescription | None
|
|
1272
1285
|
|
|
1273
1286
|
|
|
1274
|
-
DataSources =
|
|
1287
|
+
DataSources = list[DataSource]
|
|
1275
1288
|
|
|
1276
1289
|
|
|
1277
1290
|
class CreateApplicationRequest(ServiceRequest):
|
|
1278
|
-
clientToken:
|
|
1291
|
+
clientToken: ClientToken | None
|
|
1279
1292
|
name: ApplicationName
|
|
1280
|
-
dataSources:
|
|
1281
|
-
iamIdentityCenterOptions:
|
|
1282
|
-
appConfigs:
|
|
1283
|
-
tagList:
|
|
1293
|
+
dataSources: DataSources | None
|
|
1294
|
+
iamIdentityCenterOptions: IamIdentityCenterOptionsInput | None
|
|
1295
|
+
appConfigs: AppConfigs | None
|
|
1296
|
+
tagList: TagList | None
|
|
1284
1297
|
|
|
1285
1298
|
|
|
1286
1299
|
class IamIdentityCenterOptions(TypedDict, total=False):
|
|
1287
|
-
enabled:
|
|
1288
|
-
iamIdentityCenterInstanceArn:
|
|
1289
|
-
iamRoleForIdentityCenterApplicationArn:
|
|
1290
|
-
iamIdentityCenterApplicationArn:
|
|
1300
|
+
enabled: Boolean | None
|
|
1301
|
+
iamIdentityCenterInstanceArn: ARN | None
|
|
1302
|
+
iamRoleForIdentityCenterApplicationArn: RoleArn | None
|
|
1303
|
+
iamIdentityCenterApplicationArn: ARN | None
|
|
1291
1304
|
|
|
1292
1305
|
|
|
1293
1306
|
class CreateApplicationResponse(TypedDict, total=False):
|
|
1294
|
-
id:
|
|
1295
|
-
name:
|
|
1296
|
-
arn:
|
|
1297
|
-
dataSources:
|
|
1298
|
-
iamIdentityCenterOptions:
|
|
1299
|
-
appConfigs:
|
|
1300
|
-
tagList:
|
|
1301
|
-
createdAt:
|
|
1307
|
+
id: Id | None
|
|
1308
|
+
name: ApplicationName | None
|
|
1309
|
+
arn: ARN | None
|
|
1310
|
+
dataSources: DataSources | None
|
|
1311
|
+
iamIdentityCenterOptions: IamIdentityCenterOptions | None
|
|
1312
|
+
appConfigs: AppConfigs | None
|
|
1313
|
+
tagList: TagList | None
|
|
1314
|
+
createdAt: Timestamp | None
|
|
1302
1315
|
|
|
1303
1316
|
|
|
1304
1317
|
class SoftwareUpdateOptions(TypedDict, total=False):
|
|
1305
|
-
AutoSoftwareUpdateEnabled:
|
|
1318
|
+
AutoSoftwareUpdateEnabled: Boolean | None
|
|
1306
1319
|
|
|
1307
1320
|
|
|
1308
1321
|
StartTimeMinutes = int
|
|
@@ -1315,182 +1328,196 @@ class WindowStartTime(TypedDict, total=False):
|
|
|
1315
1328
|
|
|
1316
1329
|
|
|
1317
1330
|
class OffPeakWindow(TypedDict, total=False):
|
|
1318
|
-
WindowStartTime:
|
|
1331
|
+
WindowStartTime: WindowStartTime | None
|
|
1319
1332
|
|
|
1320
1333
|
|
|
1321
1334
|
class OffPeakWindowOptions(TypedDict, total=False):
|
|
1322
|
-
Enabled:
|
|
1323
|
-
OffPeakWindow:
|
|
1335
|
+
Enabled: Boolean | None
|
|
1336
|
+
OffPeakWindow: OffPeakWindow | None
|
|
1324
1337
|
|
|
1325
1338
|
|
|
1326
1339
|
class IdentityCenterOptionsInput(TypedDict, total=False):
|
|
1327
|
-
EnabledAPIAccess:
|
|
1328
|
-
IdentityCenterInstanceARN:
|
|
1329
|
-
SubjectKey:
|
|
1330
|
-
RolesKey:
|
|
1340
|
+
EnabledAPIAccess: Boolean | None
|
|
1341
|
+
IdentityCenterInstanceARN: IdentityCenterInstanceARN | None
|
|
1342
|
+
SubjectKey: SubjectKeyIdCOption | None
|
|
1343
|
+
RolesKey: RolesKeyIdCOption | None
|
|
1331
1344
|
|
|
1332
1345
|
|
|
1333
1346
|
class DomainEndpointOptions(TypedDict, total=False):
|
|
1334
|
-
EnforceHTTPS:
|
|
1335
|
-
TLSSecurityPolicy:
|
|
1336
|
-
CustomEndpointEnabled:
|
|
1337
|
-
CustomEndpoint:
|
|
1338
|
-
CustomEndpointCertificateArn:
|
|
1347
|
+
EnforceHTTPS: Boolean | None
|
|
1348
|
+
TLSSecurityPolicy: TLSSecurityPolicy | None
|
|
1349
|
+
CustomEndpointEnabled: Boolean | None
|
|
1350
|
+
CustomEndpoint: DomainNameFqdn | None
|
|
1351
|
+
CustomEndpointCertificateArn: ARN | None
|
|
1339
1352
|
|
|
1340
1353
|
|
|
1341
1354
|
class LogPublishingOption(TypedDict, total=False):
|
|
1342
|
-
CloudWatchLogsLogGroupArn:
|
|
1343
|
-
Enabled:
|
|
1355
|
+
CloudWatchLogsLogGroupArn: CloudWatchLogsLogGroupArn | None
|
|
1356
|
+
Enabled: Boolean | None
|
|
1344
1357
|
|
|
1345
1358
|
|
|
1346
|
-
LogPublishingOptions =
|
|
1359
|
+
LogPublishingOptions = dict[LogType, LogPublishingOption]
|
|
1347
1360
|
|
|
1348
1361
|
|
|
1349
1362
|
class NodeToNodeEncryptionOptions(TypedDict, total=False):
|
|
1350
|
-
Enabled:
|
|
1363
|
+
Enabled: Boolean | None
|
|
1351
1364
|
|
|
1352
1365
|
|
|
1353
1366
|
class EncryptionAtRestOptions(TypedDict, total=False):
|
|
1354
|
-
Enabled:
|
|
1355
|
-
KmsKeyId:
|
|
1367
|
+
Enabled: Boolean | None
|
|
1368
|
+
KmsKeyId: KmsKeyId | None
|
|
1356
1369
|
|
|
1357
1370
|
|
|
1358
1371
|
class VPCOptions(TypedDict, total=False):
|
|
1359
|
-
SubnetIds:
|
|
1360
|
-
SecurityGroupIds:
|
|
1372
|
+
SubnetIds: StringList | None
|
|
1373
|
+
SecurityGroupIds: StringList | None
|
|
1361
1374
|
|
|
1362
1375
|
|
|
1363
1376
|
class SnapshotOptions(TypedDict, total=False):
|
|
1364
|
-
AutomatedSnapshotStartHour:
|
|
1377
|
+
AutomatedSnapshotStartHour: IntegerClass | None
|
|
1365
1378
|
|
|
1366
1379
|
|
|
1367
1380
|
class EBSOptions(TypedDict, total=False):
|
|
1368
|
-
EBSEnabled:
|
|
1369
|
-
VolumeType:
|
|
1370
|
-
VolumeSize:
|
|
1371
|
-
Iops:
|
|
1372
|
-
Throughput:
|
|
1381
|
+
EBSEnabled: Boolean | None
|
|
1382
|
+
VolumeType: VolumeType | None
|
|
1383
|
+
VolumeSize: IntegerClass | None
|
|
1384
|
+
Iops: IntegerClass | None
|
|
1385
|
+
Throughput: IntegerClass | None
|
|
1373
1386
|
|
|
1374
1387
|
|
|
1375
1388
|
class CreateDomainRequest(ServiceRequest):
|
|
1376
1389
|
DomainName: DomainName
|
|
1377
|
-
EngineVersion:
|
|
1378
|
-
ClusterConfig:
|
|
1379
|
-
EBSOptions:
|
|
1380
|
-
AccessPolicies:
|
|
1381
|
-
IPAddressType:
|
|
1382
|
-
SnapshotOptions:
|
|
1383
|
-
VPCOptions:
|
|
1384
|
-
CognitoOptions:
|
|
1385
|
-
EncryptionAtRestOptions:
|
|
1386
|
-
NodeToNodeEncryptionOptions:
|
|
1387
|
-
AdvancedOptions:
|
|
1388
|
-
LogPublishingOptions:
|
|
1389
|
-
DomainEndpointOptions:
|
|
1390
|
-
AdvancedSecurityOptions:
|
|
1391
|
-
IdentityCenterOptions:
|
|
1392
|
-
TagList:
|
|
1393
|
-
AutoTuneOptions:
|
|
1394
|
-
OffPeakWindowOptions:
|
|
1395
|
-
SoftwareUpdateOptions:
|
|
1396
|
-
AIMLOptions:
|
|
1390
|
+
EngineVersion: VersionString | None
|
|
1391
|
+
ClusterConfig: ClusterConfig | None
|
|
1392
|
+
EBSOptions: EBSOptions | None
|
|
1393
|
+
AccessPolicies: PolicyDocument | None
|
|
1394
|
+
IPAddressType: IPAddressType | None
|
|
1395
|
+
SnapshotOptions: SnapshotOptions | None
|
|
1396
|
+
VPCOptions: VPCOptions | None
|
|
1397
|
+
CognitoOptions: CognitoOptions | None
|
|
1398
|
+
EncryptionAtRestOptions: EncryptionAtRestOptions | None
|
|
1399
|
+
NodeToNodeEncryptionOptions: NodeToNodeEncryptionOptions | None
|
|
1400
|
+
AdvancedOptions: AdvancedOptions | None
|
|
1401
|
+
LogPublishingOptions: LogPublishingOptions | None
|
|
1402
|
+
DomainEndpointOptions: DomainEndpointOptions | None
|
|
1403
|
+
AdvancedSecurityOptions: AdvancedSecurityOptionsInput | None
|
|
1404
|
+
IdentityCenterOptions: IdentityCenterOptionsInput | None
|
|
1405
|
+
TagList: TagList | None
|
|
1406
|
+
AutoTuneOptions: AutoTuneOptionsInput | None
|
|
1407
|
+
OffPeakWindowOptions: OffPeakWindowOptions | None
|
|
1408
|
+
SoftwareUpdateOptions: SoftwareUpdateOptions | None
|
|
1409
|
+
AIMLOptions: AIMLOptionsInput | None
|
|
1397
1410
|
|
|
1398
1411
|
|
|
1399
1412
|
class ModifyingProperties(TypedDict, total=False):
|
|
1400
|
-
Name:
|
|
1401
|
-
ActiveValue:
|
|
1402
|
-
PendingValue:
|
|
1403
|
-
ValueType:
|
|
1413
|
+
Name: String | None
|
|
1414
|
+
ActiveValue: String | None
|
|
1415
|
+
PendingValue: String | None
|
|
1416
|
+
ValueType: PropertyValueType | None
|
|
1404
1417
|
|
|
1405
1418
|
|
|
1406
|
-
ModifyingPropertiesList =
|
|
1419
|
+
ModifyingPropertiesList = list[ModifyingProperties]
|
|
1407
1420
|
|
|
1408
1421
|
|
|
1409
1422
|
class IdentityCenterOptions(TypedDict, total=False):
|
|
1410
|
-
EnabledAPIAccess:
|
|
1411
|
-
IdentityCenterInstanceARN:
|
|
1412
|
-
SubjectKey:
|
|
1413
|
-
RolesKey:
|
|
1414
|
-
IdentityCenterApplicationARN:
|
|
1415
|
-
IdentityStoreId:
|
|
1423
|
+
EnabledAPIAccess: Boolean | None
|
|
1424
|
+
IdentityCenterInstanceARN: IdentityCenterInstanceARN | None
|
|
1425
|
+
SubjectKey: SubjectKeyIdCOption | None
|
|
1426
|
+
RolesKey: RolesKeyIdCOption | None
|
|
1427
|
+
IdentityCenterApplicationARN: IdentityCenterApplicationARN | None
|
|
1428
|
+
IdentityStoreId: IdentityStoreId | None
|
|
1416
1429
|
|
|
1417
1430
|
|
|
1418
1431
|
class VPCDerivedInfo(TypedDict, total=False):
|
|
1419
|
-
VPCId:
|
|
1420
|
-
SubnetIds:
|
|
1421
|
-
AvailabilityZones:
|
|
1422
|
-
SecurityGroupIds:
|
|
1432
|
+
VPCId: String | None
|
|
1433
|
+
SubnetIds: StringList | None
|
|
1434
|
+
AvailabilityZones: StringList | None
|
|
1435
|
+
SecurityGroupIds: StringList | None
|
|
1423
1436
|
|
|
1424
1437
|
|
|
1425
|
-
EndpointsMap =
|
|
1438
|
+
EndpointsMap = dict[String, ServiceUrl]
|
|
1426
1439
|
|
|
1427
1440
|
|
|
1428
1441
|
class DomainStatus(TypedDict, total=False):
|
|
1429
1442
|
DomainId: DomainId
|
|
1430
1443
|
DomainName: DomainName
|
|
1431
1444
|
ARN: ARN
|
|
1432
|
-
Created:
|
|
1433
|
-
Deleted:
|
|
1434
|
-
Endpoint:
|
|
1435
|
-
EndpointV2:
|
|
1436
|
-
Endpoints:
|
|
1437
|
-
DomainEndpointV2HostedZoneId:
|
|
1438
|
-
Processing:
|
|
1439
|
-
UpgradeProcessing:
|
|
1440
|
-
EngineVersion:
|
|
1445
|
+
Created: Boolean | None
|
|
1446
|
+
Deleted: Boolean | None
|
|
1447
|
+
Endpoint: ServiceUrl | None
|
|
1448
|
+
EndpointV2: ServiceUrl | None
|
|
1449
|
+
Endpoints: EndpointsMap | None
|
|
1450
|
+
DomainEndpointV2HostedZoneId: HostedZoneId | None
|
|
1451
|
+
Processing: Boolean | None
|
|
1452
|
+
UpgradeProcessing: Boolean | None
|
|
1453
|
+
EngineVersion: VersionString | None
|
|
1441
1454
|
ClusterConfig: ClusterConfig
|
|
1442
|
-
EBSOptions:
|
|
1443
|
-
AccessPolicies:
|
|
1444
|
-
IPAddressType:
|
|
1445
|
-
SnapshotOptions:
|
|
1446
|
-
VPCOptions:
|
|
1447
|
-
CognitoOptions:
|
|
1448
|
-
EncryptionAtRestOptions:
|
|
1449
|
-
NodeToNodeEncryptionOptions:
|
|
1450
|
-
AdvancedOptions:
|
|
1451
|
-
LogPublishingOptions:
|
|
1452
|
-
ServiceSoftwareOptions:
|
|
1453
|
-
DomainEndpointOptions:
|
|
1454
|
-
AdvancedSecurityOptions:
|
|
1455
|
-
IdentityCenterOptions:
|
|
1456
|
-
AutoTuneOptions:
|
|
1457
|
-
ChangeProgressDetails:
|
|
1458
|
-
OffPeakWindowOptions:
|
|
1459
|
-
SoftwareUpdateOptions:
|
|
1460
|
-
DomainProcessingStatus:
|
|
1461
|
-
ModifyingProperties:
|
|
1462
|
-
AIMLOptions:
|
|
1455
|
+
EBSOptions: EBSOptions | None
|
|
1456
|
+
AccessPolicies: PolicyDocument | None
|
|
1457
|
+
IPAddressType: IPAddressType | None
|
|
1458
|
+
SnapshotOptions: SnapshotOptions | None
|
|
1459
|
+
VPCOptions: VPCDerivedInfo | None
|
|
1460
|
+
CognitoOptions: CognitoOptions | None
|
|
1461
|
+
EncryptionAtRestOptions: EncryptionAtRestOptions | None
|
|
1462
|
+
NodeToNodeEncryptionOptions: NodeToNodeEncryptionOptions | None
|
|
1463
|
+
AdvancedOptions: AdvancedOptions | None
|
|
1464
|
+
LogPublishingOptions: LogPublishingOptions | None
|
|
1465
|
+
ServiceSoftwareOptions: ServiceSoftwareOptions | None
|
|
1466
|
+
DomainEndpointOptions: DomainEndpointOptions | None
|
|
1467
|
+
AdvancedSecurityOptions: AdvancedSecurityOptions | None
|
|
1468
|
+
IdentityCenterOptions: IdentityCenterOptions | None
|
|
1469
|
+
AutoTuneOptions: AutoTuneOptionsOutput | None
|
|
1470
|
+
ChangeProgressDetails: ChangeProgressDetails | None
|
|
1471
|
+
OffPeakWindowOptions: OffPeakWindowOptions | None
|
|
1472
|
+
SoftwareUpdateOptions: SoftwareUpdateOptions | None
|
|
1473
|
+
DomainProcessingStatus: DomainProcessingStatusType | None
|
|
1474
|
+
ModifyingProperties: ModifyingPropertiesList | None
|
|
1475
|
+
AIMLOptions: AIMLOptionsOutput | None
|
|
1463
1476
|
|
|
1464
1477
|
|
|
1465
1478
|
class CreateDomainResponse(TypedDict, total=False):
|
|
1466
|
-
DomainStatus:
|
|
1479
|
+
DomainStatus: DomainStatus | None
|
|
1480
|
+
|
|
1481
|
+
|
|
1482
|
+
class IndexSchema(TypedDict, total=False):
|
|
1483
|
+
pass
|
|
1484
|
+
|
|
1485
|
+
|
|
1486
|
+
class CreateIndexRequest(ServiceRequest):
|
|
1487
|
+
DomainName: DomainName
|
|
1488
|
+
IndexName: IndexName
|
|
1489
|
+
IndexSchema: IndexSchema
|
|
1490
|
+
|
|
1491
|
+
|
|
1492
|
+
class CreateIndexResponse(TypedDict, total=False):
|
|
1493
|
+
Status: IndexStatus
|
|
1467
1494
|
|
|
1468
1495
|
|
|
1469
1496
|
class CreateOutboundConnectionRequest(ServiceRequest):
|
|
1470
1497
|
LocalDomainInfo: DomainInformationContainer
|
|
1471
1498
|
RemoteDomainInfo: DomainInformationContainer
|
|
1472
1499
|
ConnectionAlias: ConnectionAlias
|
|
1473
|
-
ConnectionMode:
|
|
1474
|
-
ConnectionProperties:
|
|
1500
|
+
ConnectionMode: ConnectionMode | None
|
|
1501
|
+
ConnectionProperties: ConnectionProperties | None
|
|
1475
1502
|
|
|
1476
1503
|
|
|
1477
1504
|
class OutboundConnectionStatus(TypedDict, total=False):
|
|
1478
|
-
StatusCode:
|
|
1479
|
-
Message:
|
|
1505
|
+
StatusCode: OutboundConnectionStatusCode | None
|
|
1506
|
+
Message: ConnectionStatusMessage | None
|
|
1480
1507
|
|
|
1481
1508
|
|
|
1482
1509
|
class CreateOutboundConnectionResponse(TypedDict, total=False):
|
|
1483
|
-
LocalDomainInfo:
|
|
1484
|
-
RemoteDomainInfo:
|
|
1485
|
-
ConnectionAlias:
|
|
1486
|
-
ConnectionStatus:
|
|
1487
|
-
ConnectionId:
|
|
1488
|
-
ConnectionMode:
|
|
1489
|
-
ConnectionProperties:
|
|
1510
|
+
LocalDomainInfo: DomainInformationContainer | None
|
|
1511
|
+
RemoteDomainInfo: DomainInformationContainer | None
|
|
1512
|
+
ConnectionAlias: ConnectionAlias | None
|
|
1513
|
+
ConnectionStatus: OutboundConnectionStatus | None
|
|
1514
|
+
ConnectionId: ConnectionId | None
|
|
1515
|
+
ConnectionMode: ConnectionMode | None
|
|
1516
|
+
ConnectionProperties: ConnectionProperties | None
|
|
1490
1517
|
|
|
1491
1518
|
|
|
1492
1519
|
class PackageEncryptionOptions(TypedDict, total=False):
|
|
1493
|
-
KmsKeyIdentifier:
|
|
1520
|
+
KmsKeyIdentifier: KmsKeyId | None
|
|
1494
1521
|
EncryptionEnabled: Boolean
|
|
1495
1522
|
|
|
1496
1523
|
|
|
@@ -1500,78 +1527,78 @@ class PackageVendingOptions(TypedDict, total=False):
|
|
|
1500
1527
|
|
|
1501
1528
|
class PackageConfiguration(TypedDict, total=False):
|
|
1502
1529
|
LicenseRequirement: RequirementLevel
|
|
1503
|
-
LicenseFilepath:
|
|
1530
|
+
LicenseFilepath: LicenseFilepath | None
|
|
1504
1531
|
ConfigurationRequirement: RequirementLevel
|
|
1505
|
-
RequiresRestartForConfigurationUpdate:
|
|
1532
|
+
RequiresRestartForConfigurationUpdate: Boolean | None
|
|
1506
1533
|
|
|
1507
1534
|
|
|
1508
1535
|
class PackageSource(TypedDict, total=False):
|
|
1509
|
-
S3BucketName:
|
|
1510
|
-
S3Key:
|
|
1536
|
+
S3BucketName: S3BucketName | None
|
|
1537
|
+
S3Key: S3Key | None
|
|
1511
1538
|
|
|
1512
1539
|
|
|
1513
1540
|
class CreatePackageRequest(ServiceRequest):
|
|
1514
1541
|
PackageName: PackageName
|
|
1515
1542
|
PackageType: PackageType
|
|
1516
|
-
PackageDescription:
|
|
1543
|
+
PackageDescription: PackageDescription | None
|
|
1517
1544
|
PackageSource: PackageSource
|
|
1518
|
-
PackageConfiguration:
|
|
1519
|
-
EngineVersion:
|
|
1520
|
-
PackageVendingOptions:
|
|
1521
|
-
PackageEncryptionOptions:
|
|
1545
|
+
PackageConfiguration: PackageConfiguration | None
|
|
1546
|
+
EngineVersion: EngineVersion | None
|
|
1547
|
+
PackageVendingOptions: PackageVendingOptions | None
|
|
1548
|
+
PackageEncryptionOptions: PackageEncryptionOptions | None
|
|
1522
1549
|
|
|
1523
1550
|
|
|
1524
|
-
PackageUserList =
|
|
1551
|
+
PackageUserList = list[PackageUser]
|
|
1525
1552
|
UncompressedPluginSizeInBytes = int
|
|
1526
1553
|
|
|
1527
1554
|
|
|
1528
1555
|
class PluginProperties(TypedDict, total=False):
|
|
1529
|
-
Name:
|
|
1530
|
-
Description:
|
|
1531
|
-
Version:
|
|
1532
|
-
ClassName:
|
|
1533
|
-
UncompressedSizeInBytes:
|
|
1556
|
+
Name: PluginName | None
|
|
1557
|
+
Description: PluginDescription | None
|
|
1558
|
+
Version: PluginVersion | None
|
|
1559
|
+
ClassName: PluginClassName | None
|
|
1560
|
+
UncompressedSizeInBytes: UncompressedPluginSizeInBytes | None
|
|
1534
1561
|
|
|
1535
1562
|
|
|
1536
1563
|
CreatedAt = datetime
|
|
1537
1564
|
|
|
1538
1565
|
|
|
1539
1566
|
class PackageDetails(TypedDict, total=False):
|
|
1540
|
-
PackageID:
|
|
1541
|
-
PackageName:
|
|
1542
|
-
PackageType:
|
|
1543
|
-
PackageDescription:
|
|
1544
|
-
PackageStatus:
|
|
1545
|
-
CreatedAt:
|
|
1546
|
-
LastUpdatedAt:
|
|
1547
|
-
AvailablePackageVersion:
|
|
1548
|
-
ErrorDetails:
|
|
1549
|
-
EngineVersion:
|
|
1550
|
-
AvailablePluginProperties:
|
|
1551
|
-
AvailablePackageConfiguration:
|
|
1552
|
-
AllowListedUserList:
|
|
1553
|
-
PackageOwner:
|
|
1554
|
-
PackageVendingOptions:
|
|
1555
|
-
PackageEncryptionOptions:
|
|
1567
|
+
PackageID: PackageID | None
|
|
1568
|
+
PackageName: PackageName | None
|
|
1569
|
+
PackageType: PackageType | None
|
|
1570
|
+
PackageDescription: PackageDescription | None
|
|
1571
|
+
PackageStatus: PackageStatus | None
|
|
1572
|
+
CreatedAt: CreatedAt | None
|
|
1573
|
+
LastUpdatedAt: LastUpdated | None
|
|
1574
|
+
AvailablePackageVersion: PackageVersion | None
|
|
1575
|
+
ErrorDetails: ErrorDetails | None
|
|
1576
|
+
EngineVersion: EngineVersion | None
|
|
1577
|
+
AvailablePluginProperties: PluginProperties | None
|
|
1578
|
+
AvailablePackageConfiguration: PackageConfiguration | None
|
|
1579
|
+
AllowListedUserList: PackageUserList | None
|
|
1580
|
+
PackageOwner: PackageOwner | None
|
|
1581
|
+
PackageVendingOptions: PackageVendingOptions | None
|
|
1582
|
+
PackageEncryptionOptions: PackageEncryptionOptions | None
|
|
1556
1583
|
|
|
1557
1584
|
|
|
1558
1585
|
class CreatePackageResponse(TypedDict, total=False):
|
|
1559
|
-
PackageDetails:
|
|
1586
|
+
PackageDetails: PackageDetails | None
|
|
1560
1587
|
|
|
1561
1588
|
|
|
1562
1589
|
class CreateVpcEndpointRequest(ServiceRequest):
|
|
1563
1590
|
DomainArn: DomainArn
|
|
1564
1591
|
VpcOptions: VPCOptions
|
|
1565
|
-
ClientToken:
|
|
1592
|
+
ClientToken: ClientToken | None
|
|
1566
1593
|
|
|
1567
1594
|
|
|
1568
1595
|
class VpcEndpoint(TypedDict, total=False):
|
|
1569
|
-
VpcEndpointId:
|
|
1570
|
-
VpcEndpointOwner:
|
|
1571
|
-
DomainArn:
|
|
1572
|
-
VpcOptions:
|
|
1573
|
-
Status:
|
|
1574
|
-
Endpoint:
|
|
1596
|
+
VpcEndpointId: VpcEndpointId | None
|
|
1597
|
+
VpcEndpointOwner: AWSAccount | None
|
|
1598
|
+
DomainArn: DomainArn | None
|
|
1599
|
+
VpcOptions: VPCDerivedInfo | None
|
|
1600
|
+
Status: VpcEndpointStatus | None
|
|
1601
|
+
Endpoint: Endpoint | None
|
|
1575
1602
|
|
|
1576
1603
|
|
|
1577
1604
|
class CreateVpcEndpointResponse(TypedDict, total=False):
|
|
@@ -1579,13 +1606,13 @@ class CreateVpcEndpointResponse(TypedDict, total=False):
|
|
|
1579
1606
|
|
|
1580
1607
|
|
|
1581
1608
|
class DataSourceDetails(TypedDict, total=False):
|
|
1582
|
-
DataSourceType:
|
|
1583
|
-
Name:
|
|
1584
|
-
Description:
|
|
1585
|
-
Status:
|
|
1609
|
+
DataSourceType: DataSourceType | None
|
|
1610
|
+
Name: DataSourceName | None
|
|
1611
|
+
Description: DataSourceDescription | None
|
|
1612
|
+
Status: DataSourceStatus | None
|
|
1586
1613
|
|
|
1587
1614
|
|
|
1588
|
-
DataSourceList =
|
|
1615
|
+
DataSourceList = list[DataSourceDetails]
|
|
1589
1616
|
|
|
1590
1617
|
|
|
1591
1618
|
class DeleteApplicationRequest(ServiceRequest):
|
|
@@ -1602,7 +1629,7 @@ class DeleteDataSourceRequest(ServiceRequest):
|
|
|
1602
1629
|
|
|
1603
1630
|
|
|
1604
1631
|
class DeleteDataSourceResponse(TypedDict, total=False):
|
|
1605
|
-
Message:
|
|
1632
|
+
Message: String | None
|
|
1606
1633
|
|
|
1607
1634
|
|
|
1608
1635
|
class DeleteDirectQueryDataSourceRequest(ServiceRequest):
|
|
@@ -1614,7 +1641,7 @@ class DeleteDomainRequest(ServiceRequest):
|
|
|
1614
1641
|
|
|
1615
1642
|
|
|
1616
1643
|
class DeleteDomainResponse(TypedDict, total=False):
|
|
1617
|
-
DomainStatus:
|
|
1644
|
+
DomainStatus: DomainStatus | None
|
|
1618
1645
|
|
|
1619
1646
|
|
|
1620
1647
|
class DeleteInboundConnectionRequest(ServiceRequest):
|
|
@@ -1622,7 +1649,16 @@ class DeleteInboundConnectionRequest(ServiceRequest):
|
|
|
1622
1649
|
|
|
1623
1650
|
|
|
1624
1651
|
class DeleteInboundConnectionResponse(TypedDict, total=False):
|
|
1625
|
-
Connection:
|
|
1652
|
+
Connection: InboundConnection | None
|
|
1653
|
+
|
|
1654
|
+
|
|
1655
|
+
class DeleteIndexRequest(ServiceRequest):
|
|
1656
|
+
DomainName: DomainName
|
|
1657
|
+
IndexName: IndexName
|
|
1658
|
+
|
|
1659
|
+
|
|
1660
|
+
class DeleteIndexResponse(TypedDict, total=False):
|
|
1661
|
+
Status: IndexStatus
|
|
1626
1662
|
|
|
1627
1663
|
|
|
1628
1664
|
class DeleteOutboundConnectionRequest(ServiceRequest):
|
|
@@ -1630,17 +1666,17 @@ class DeleteOutboundConnectionRequest(ServiceRequest):
|
|
|
1630
1666
|
|
|
1631
1667
|
|
|
1632
1668
|
class OutboundConnection(TypedDict, total=False):
|
|
1633
|
-
LocalDomainInfo:
|
|
1634
|
-
RemoteDomainInfo:
|
|
1635
|
-
ConnectionId:
|
|
1636
|
-
ConnectionAlias:
|
|
1637
|
-
ConnectionStatus:
|
|
1638
|
-
ConnectionMode:
|
|
1639
|
-
ConnectionProperties:
|
|
1669
|
+
LocalDomainInfo: DomainInformationContainer | None
|
|
1670
|
+
RemoteDomainInfo: DomainInformationContainer | None
|
|
1671
|
+
ConnectionId: ConnectionId | None
|
|
1672
|
+
ConnectionAlias: ConnectionAlias | None
|
|
1673
|
+
ConnectionStatus: OutboundConnectionStatus | None
|
|
1674
|
+
ConnectionMode: ConnectionMode | None
|
|
1675
|
+
ConnectionProperties: ConnectionProperties | None
|
|
1640
1676
|
|
|
1641
1677
|
|
|
1642
1678
|
class DeleteOutboundConnectionResponse(TypedDict, total=False):
|
|
1643
|
-
Connection:
|
|
1679
|
+
Connection: OutboundConnection | None
|
|
1644
1680
|
|
|
1645
1681
|
|
|
1646
1682
|
class DeletePackageRequest(ServiceRequest):
|
|
@@ -1648,7 +1684,7 @@ class DeletePackageRequest(ServiceRequest):
|
|
|
1648
1684
|
|
|
1649
1685
|
|
|
1650
1686
|
class DeletePackageResponse(TypedDict, total=False):
|
|
1651
|
-
PackageDetails:
|
|
1687
|
+
PackageDetails: PackageDetails | None
|
|
1652
1688
|
|
|
1653
1689
|
|
|
1654
1690
|
class DeleteVpcEndpointRequest(ServiceRequest):
|
|
@@ -1656,10 +1692,10 @@ class DeleteVpcEndpointRequest(ServiceRequest):
|
|
|
1656
1692
|
|
|
1657
1693
|
|
|
1658
1694
|
class VpcEndpointSummary(TypedDict, total=False):
|
|
1659
|
-
VpcEndpointId:
|
|
1660
|
-
VpcEndpointOwner:
|
|
1661
|
-
DomainArn:
|
|
1662
|
-
Status:
|
|
1695
|
+
VpcEndpointId: VpcEndpointId | None
|
|
1696
|
+
VpcEndpointOwner: String | None
|
|
1697
|
+
DomainArn: DomainArn | None
|
|
1698
|
+
Status: VpcEndpointStatus | None
|
|
1663
1699
|
|
|
1664
1700
|
|
|
1665
1701
|
class DeleteVpcEndpointResponse(TypedDict, total=False):
|
|
@@ -1668,22 +1704,22 @@ class DeleteVpcEndpointResponse(TypedDict, total=False):
|
|
|
1668
1704
|
|
|
1669
1705
|
class DescribeDomainAutoTunesRequest(ServiceRequest):
|
|
1670
1706
|
DomainName: DomainName
|
|
1671
|
-
MaxResults:
|
|
1672
|
-
NextToken:
|
|
1707
|
+
MaxResults: MaxResults | None
|
|
1708
|
+
NextToken: NextToken | None
|
|
1673
1709
|
|
|
1674
1710
|
|
|
1675
1711
|
class DescribeDomainAutoTunesResponse(TypedDict, total=False):
|
|
1676
|
-
AutoTunes:
|
|
1677
|
-
NextToken:
|
|
1712
|
+
AutoTunes: AutoTuneList | None
|
|
1713
|
+
NextToken: NextToken | None
|
|
1678
1714
|
|
|
1679
1715
|
|
|
1680
1716
|
class DescribeDomainChangeProgressRequest(ServiceRequest):
|
|
1681
1717
|
DomainName: DomainName
|
|
1682
|
-
ChangeId:
|
|
1718
|
+
ChangeId: GUID | None
|
|
1683
1719
|
|
|
1684
1720
|
|
|
1685
1721
|
class DescribeDomainChangeProgressResponse(TypedDict, total=False):
|
|
1686
|
-
ChangeProgressStatus:
|
|
1722
|
+
ChangeProgressStatus: ChangeProgressStatusDetails | None
|
|
1687
1723
|
|
|
1688
1724
|
|
|
1689
1725
|
class DescribeDomainConfigRequest(ServiceRequest):
|
|
@@ -1691,13 +1727,13 @@ class DescribeDomainConfigRequest(ServiceRequest):
|
|
|
1691
1727
|
|
|
1692
1728
|
|
|
1693
1729
|
class SoftwareUpdateOptionsStatus(TypedDict, total=False):
|
|
1694
|
-
Options:
|
|
1695
|
-
Status:
|
|
1730
|
+
Options: SoftwareUpdateOptions | None
|
|
1731
|
+
Status: OptionStatus | None
|
|
1696
1732
|
|
|
1697
1733
|
|
|
1698
1734
|
class OffPeakWindowOptionsStatus(TypedDict, total=False):
|
|
1699
|
-
Options:
|
|
1700
|
-
Status:
|
|
1735
|
+
Options: OffPeakWindowOptions | None
|
|
1736
|
+
Status: OptionStatus | None
|
|
1701
1737
|
|
|
1702
1738
|
|
|
1703
1739
|
class IdentityCenterOptionsStatus(TypedDict, total=False):
|
|
@@ -1711,8 +1747,8 @@ class DomainEndpointOptionsStatus(TypedDict, total=False):
|
|
|
1711
1747
|
|
|
1712
1748
|
|
|
1713
1749
|
class LogPublishingOptionsStatus(TypedDict, total=False):
|
|
1714
|
-
Options:
|
|
1715
|
-
Status:
|
|
1750
|
+
Options: LogPublishingOptions | None
|
|
1751
|
+
Status: OptionStatus | None
|
|
1716
1752
|
|
|
1717
1753
|
|
|
1718
1754
|
class NodeToNodeEncryptionOptionsStatus(TypedDict, total=False):
|
|
@@ -1751,27 +1787,27 @@ class VersionStatus(TypedDict, total=False):
|
|
|
1751
1787
|
|
|
1752
1788
|
|
|
1753
1789
|
class DomainConfig(TypedDict, total=False):
|
|
1754
|
-
EngineVersion:
|
|
1755
|
-
ClusterConfig:
|
|
1756
|
-
EBSOptions:
|
|
1757
|
-
AccessPolicies:
|
|
1758
|
-
IPAddressType:
|
|
1759
|
-
SnapshotOptions:
|
|
1760
|
-
VPCOptions:
|
|
1761
|
-
CognitoOptions:
|
|
1762
|
-
EncryptionAtRestOptions:
|
|
1763
|
-
NodeToNodeEncryptionOptions:
|
|
1764
|
-
AdvancedOptions:
|
|
1765
|
-
LogPublishingOptions:
|
|
1766
|
-
DomainEndpointOptions:
|
|
1767
|
-
AdvancedSecurityOptions:
|
|
1768
|
-
IdentityCenterOptions:
|
|
1769
|
-
AutoTuneOptions:
|
|
1770
|
-
ChangeProgressDetails:
|
|
1771
|
-
OffPeakWindowOptions:
|
|
1772
|
-
SoftwareUpdateOptions:
|
|
1773
|
-
ModifyingProperties:
|
|
1774
|
-
AIMLOptions:
|
|
1790
|
+
EngineVersion: VersionStatus | None
|
|
1791
|
+
ClusterConfig: ClusterConfigStatus | None
|
|
1792
|
+
EBSOptions: EBSOptionsStatus | None
|
|
1793
|
+
AccessPolicies: AccessPoliciesStatus | None
|
|
1794
|
+
IPAddressType: IPAddressTypeStatus | None
|
|
1795
|
+
SnapshotOptions: SnapshotOptionsStatus | None
|
|
1796
|
+
VPCOptions: VPCDerivedInfoStatus | None
|
|
1797
|
+
CognitoOptions: CognitoOptionsStatus | None
|
|
1798
|
+
EncryptionAtRestOptions: EncryptionAtRestOptionsStatus | None
|
|
1799
|
+
NodeToNodeEncryptionOptions: NodeToNodeEncryptionOptionsStatus | None
|
|
1800
|
+
AdvancedOptions: AdvancedOptionsStatus | None
|
|
1801
|
+
LogPublishingOptions: LogPublishingOptionsStatus | None
|
|
1802
|
+
DomainEndpointOptions: DomainEndpointOptionsStatus | None
|
|
1803
|
+
AdvancedSecurityOptions: AdvancedSecurityOptionsStatus | None
|
|
1804
|
+
IdentityCenterOptions: IdentityCenterOptionsStatus | None
|
|
1805
|
+
AutoTuneOptions: AutoTuneOptionsStatus | None
|
|
1806
|
+
ChangeProgressDetails: ChangeProgressDetails | None
|
|
1807
|
+
OffPeakWindowOptions: OffPeakWindowOptionsStatus | None
|
|
1808
|
+
SoftwareUpdateOptions: SoftwareUpdateOptionsStatus | None
|
|
1809
|
+
ModifyingProperties: ModifyingPropertiesList | None
|
|
1810
|
+
AIMLOptions: AIMLOptionsStatus | None
|
|
1775
1811
|
|
|
1776
1812
|
|
|
1777
1813
|
class DescribeDomainConfigResponse(TypedDict, total=False):
|
|
@@ -1783,26 +1819,26 @@ class DescribeDomainHealthRequest(ServiceRequest):
|
|
|
1783
1819
|
|
|
1784
1820
|
|
|
1785
1821
|
class EnvironmentInfo(TypedDict, total=False):
|
|
1786
|
-
AvailabilityZoneInformation:
|
|
1822
|
+
AvailabilityZoneInformation: AvailabilityZoneInfoList | None
|
|
1787
1823
|
|
|
1788
1824
|
|
|
1789
|
-
EnvironmentInfoList =
|
|
1825
|
+
EnvironmentInfoList = list[EnvironmentInfo]
|
|
1790
1826
|
|
|
1791
1827
|
|
|
1792
1828
|
class DescribeDomainHealthResponse(TypedDict, total=False):
|
|
1793
|
-
DomainState:
|
|
1794
|
-
AvailabilityZoneCount:
|
|
1795
|
-
ActiveAvailabilityZoneCount:
|
|
1796
|
-
StandByAvailabilityZoneCount:
|
|
1797
|
-
DataNodeCount:
|
|
1798
|
-
DedicatedMaster:
|
|
1799
|
-
MasterEligibleNodeCount:
|
|
1800
|
-
WarmNodeCount:
|
|
1801
|
-
MasterNode:
|
|
1802
|
-
ClusterHealth:
|
|
1803
|
-
TotalShards:
|
|
1804
|
-
TotalUnAssignedShards:
|
|
1805
|
-
EnvironmentInformation:
|
|
1829
|
+
DomainState: DomainState | None
|
|
1830
|
+
AvailabilityZoneCount: NumberOfAZs | None
|
|
1831
|
+
ActiveAvailabilityZoneCount: NumberOfAZs | None
|
|
1832
|
+
StandByAvailabilityZoneCount: NumberOfAZs | None
|
|
1833
|
+
DataNodeCount: NumberOfNodes | None
|
|
1834
|
+
DedicatedMaster: Boolean | None
|
|
1835
|
+
MasterEligibleNodeCount: NumberOfNodes | None
|
|
1836
|
+
WarmNodeCount: NumberOfNodes | None
|
|
1837
|
+
MasterNode: MasterNodeStatus | None
|
|
1838
|
+
ClusterHealth: DomainHealth | None
|
|
1839
|
+
TotalShards: NumberOfShards | None
|
|
1840
|
+
TotalUnAssignedShards: NumberOfShards | None
|
|
1841
|
+
EnvironmentInformation: EnvironmentInfoList | None
|
|
1806
1842
|
|
|
1807
1843
|
|
|
1808
1844
|
class DescribeDomainNodesRequest(ServiceRequest):
|
|
@@ -1810,21 +1846,21 @@ class DescribeDomainNodesRequest(ServiceRequest):
|
|
|
1810
1846
|
|
|
1811
1847
|
|
|
1812
1848
|
class DomainNodesStatus(TypedDict, total=False):
|
|
1813
|
-
NodeId:
|
|
1814
|
-
NodeType:
|
|
1815
|
-
AvailabilityZone:
|
|
1816
|
-
InstanceType:
|
|
1817
|
-
NodeStatus:
|
|
1818
|
-
StorageType:
|
|
1819
|
-
StorageVolumeType:
|
|
1820
|
-
StorageSize:
|
|
1849
|
+
NodeId: NodeId | None
|
|
1850
|
+
NodeType: NodeType | None
|
|
1851
|
+
AvailabilityZone: AvailabilityZone | None
|
|
1852
|
+
InstanceType: OpenSearchPartitionInstanceType | None
|
|
1853
|
+
NodeStatus: NodeStatus | None
|
|
1854
|
+
StorageType: StorageTypeName | None
|
|
1855
|
+
StorageVolumeType: VolumeType | None
|
|
1856
|
+
StorageSize: VolumeSize | None
|
|
1821
1857
|
|
|
1822
1858
|
|
|
1823
|
-
DomainNodesStatusList =
|
|
1859
|
+
DomainNodesStatusList = list[DomainNodesStatus]
|
|
1824
1860
|
|
|
1825
1861
|
|
|
1826
1862
|
class DescribeDomainNodesResponse(TypedDict, total=False):
|
|
1827
|
-
DomainNodesStatusList:
|
|
1863
|
+
DomainNodesStatusList: DomainNodesStatusList | None
|
|
1828
1864
|
|
|
1829
1865
|
|
|
1830
1866
|
class DescribeDomainRequest(ServiceRequest):
|
|
@@ -1835,14 +1871,14 @@ class DescribeDomainResponse(TypedDict, total=False):
|
|
|
1835
1871
|
DomainStatus: DomainStatus
|
|
1836
1872
|
|
|
1837
1873
|
|
|
1838
|
-
DomainNameList =
|
|
1874
|
+
DomainNameList = list[DomainName]
|
|
1839
1875
|
|
|
1840
1876
|
|
|
1841
1877
|
class DescribeDomainsRequest(ServiceRequest):
|
|
1842
1878
|
DomainNames: DomainNameList
|
|
1843
1879
|
|
|
1844
1880
|
|
|
1845
|
-
DomainStatusList =
|
|
1881
|
+
DomainStatusList = list[DomainStatus]
|
|
1846
1882
|
|
|
1847
1883
|
|
|
1848
1884
|
class DescribeDomainsResponse(TypedDict, total=False):
|
|
@@ -1851,21 +1887,21 @@ class DescribeDomainsResponse(TypedDict, total=False):
|
|
|
1851
1887
|
|
|
1852
1888
|
class DescribeDryRunProgressRequest(ServiceRequest):
|
|
1853
1889
|
DomainName: DomainName
|
|
1854
|
-
DryRunId:
|
|
1855
|
-
LoadDryRunConfig:
|
|
1890
|
+
DryRunId: GUID | None
|
|
1891
|
+
LoadDryRunConfig: Boolean | None
|
|
1856
1892
|
|
|
1857
1893
|
|
|
1858
1894
|
class DryRunResults(TypedDict, total=False):
|
|
1859
|
-
DeploymentType:
|
|
1860
|
-
Message:
|
|
1895
|
+
DeploymentType: DeploymentType | None
|
|
1896
|
+
Message: Message | None
|
|
1861
1897
|
|
|
1862
1898
|
|
|
1863
1899
|
class ValidationFailure(TypedDict, total=False):
|
|
1864
|
-
Code:
|
|
1865
|
-
Message:
|
|
1900
|
+
Code: String | None
|
|
1901
|
+
Message: String | None
|
|
1866
1902
|
|
|
1867
1903
|
|
|
1868
|
-
ValidationFailures =
|
|
1904
|
+
ValidationFailures = list[ValidationFailure]
|
|
1869
1905
|
|
|
1870
1906
|
|
|
1871
1907
|
class DryRunProgressStatus(TypedDict, total=False):
|
|
@@ -1873,189 +1909,189 @@ class DryRunProgressStatus(TypedDict, total=False):
|
|
|
1873
1909
|
DryRunStatus: String
|
|
1874
1910
|
CreationDate: String
|
|
1875
1911
|
UpdateDate: String
|
|
1876
|
-
ValidationFailures:
|
|
1912
|
+
ValidationFailures: ValidationFailures | None
|
|
1877
1913
|
|
|
1878
1914
|
|
|
1879
1915
|
class DescribeDryRunProgressResponse(TypedDict, total=False):
|
|
1880
|
-
DryRunProgressStatus:
|
|
1881
|
-
DryRunConfig:
|
|
1882
|
-
DryRunResults:
|
|
1916
|
+
DryRunProgressStatus: DryRunProgressStatus | None
|
|
1917
|
+
DryRunConfig: DomainStatus | None
|
|
1918
|
+
DryRunResults: DryRunResults | None
|
|
1883
1919
|
|
|
1884
1920
|
|
|
1885
|
-
ValueStringList =
|
|
1921
|
+
ValueStringList = list[NonEmptyString]
|
|
1886
1922
|
|
|
1887
1923
|
|
|
1888
1924
|
class Filter(TypedDict, total=False):
|
|
1889
|
-
Name:
|
|
1890
|
-
Values:
|
|
1925
|
+
Name: NonEmptyString | None
|
|
1926
|
+
Values: ValueStringList | None
|
|
1891
1927
|
|
|
1892
1928
|
|
|
1893
|
-
FilterList =
|
|
1929
|
+
FilterList = list[Filter]
|
|
1894
1930
|
|
|
1895
1931
|
|
|
1896
1932
|
class DescribeInboundConnectionsRequest(ServiceRequest):
|
|
1897
|
-
Filters:
|
|
1898
|
-
MaxResults:
|
|
1899
|
-
NextToken:
|
|
1933
|
+
Filters: FilterList | None
|
|
1934
|
+
MaxResults: MaxResults | None
|
|
1935
|
+
NextToken: NextToken | None
|
|
1900
1936
|
|
|
1901
1937
|
|
|
1902
|
-
InboundConnections =
|
|
1938
|
+
InboundConnections = list[InboundConnection]
|
|
1903
1939
|
|
|
1904
1940
|
|
|
1905
1941
|
class DescribeInboundConnectionsResponse(TypedDict, total=False):
|
|
1906
|
-
Connections:
|
|
1907
|
-
NextToken:
|
|
1942
|
+
Connections: InboundConnections | None
|
|
1943
|
+
NextToken: NextToken | None
|
|
1908
1944
|
|
|
1909
1945
|
|
|
1910
1946
|
class DescribeInstanceTypeLimitsRequest(ServiceRequest):
|
|
1911
|
-
DomainName:
|
|
1947
|
+
DomainName: DomainName | None
|
|
1912
1948
|
InstanceType: OpenSearchPartitionInstanceType
|
|
1913
1949
|
EngineVersion: VersionString
|
|
1914
1950
|
|
|
1915
1951
|
|
|
1916
1952
|
class InstanceCountLimits(TypedDict, total=False):
|
|
1917
|
-
MinimumInstanceCount:
|
|
1918
|
-
MaximumInstanceCount:
|
|
1953
|
+
MinimumInstanceCount: MinimumInstanceCount | None
|
|
1954
|
+
MaximumInstanceCount: MaximumInstanceCount | None
|
|
1919
1955
|
|
|
1920
1956
|
|
|
1921
1957
|
class InstanceLimits(TypedDict, total=False):
|
|
1922
|
-
InstanceCountLimits:
|
|
1958
|
+
InstanceCountLimits: InstanceCountLimits | None
|
|
1923
1959
|
|
|
1924
1960
|
|
|
1925
1961
|
class StorageTypeLimit(TypedDict, total=False):
|
|
1926
|
-
LimitName:
|
|
1927
|
-
LimitValues:
|
|
1962
|
+
LimitName: LimitName | None
|
|
1963
|
+
LimitValues: LimitValueList | None
|
|
1928
1964
|
|
|
1929
1965
|
|
|
1930
|
-
StorageTypeLimitList =
|
|
1966
|
+
StorageTypeLimitList = list[StorageTypeLimit]
|
|
1931
1967
|
|
|
1932
1968
|
|
|
1933
1969
|
class StorageType(TypedDict, total=False):
|
|
1934
|
-
StorageTypeName:
|
|
1935
|
-
StorageSubTypeName:
|
|
1936
|
-
StorageTypeLimits:
|
|
1970
|
+
StorageTypeName: StorageTypeName | None
|
|
1971
|
+
StorageSubTypeName: StorageSubTypeName | None
|
|
1972
|
+
StorageTypeLimits: StorageTypeLimitList | None
|
|
1937
1973
|
|
|
1938
1974
|
|
|
1939
|
-
StorageTypeList =
|
|
1975
|
+
StorageTypeList = list[StorageType]
|
|
1940
1976
|
|
|
1941
1977
|
|
|
1942
1978
|
class Limits(TypedDict, total=False):
|
|
1943
|
-
StorageTypes:
|
|
1944
|
-
InstanceLimits:
|
|
1945
|
-
AdditionalLimits:
|
|
1979
|
+
StorageTypes: StorageTypeList | None
|
|
1980
|
+
InstanceLimits: InstanceLimits | None
|
|
1981
|
+
AdditionalLimits: AdditionalLimitList | None
|
|
1946
1982
|
|
|
1947
1983
|
|
|
1948
|
-
LimitsByRole =
|
|
1984
|
+
LimitsByRole = dict[InstanceRole, Limits]
|
|
1949
1985
|
|
|
1950
1986
|
|
|
1951
1987
|
class DescribeInstanceTypeLimitsResponse(TypedDict, total=False):
|
|
1952
|
-
LimitsByRole:
|
|
1988
|
+
LimitsByRole: LimitsByRole | None
|
|
1953
1989
|
|
|
1954
1990
|
|
|
1955
1991
|
class DescribeOutboundConnectionsRequest(ServiceRequest):
|
|
1956
|
-
Filters:
|
|
1957
|
-
MaxResults:
|
|
1958
|
-
NextToken:
|
|
1992
|
+
Filters: FilterList | None
|
|
1993
|
+
MaxResults: MaxResults | None
|
|
1994
|
+
NextToken: NextToken | None
|
|
1959
1995
|
|
|
1960
1996
|
|
|
1961
|
-
OutboundConnections =
|
|
1997
|
+
OutboundConnections = list[OutboundConnection]
|
|
1962
1998
|
|
|
1963
1999
|
|
|
1964
2000
|
class DescribeOutboundConnectionsResponse(TypedDict, total=False):
|
|
1965
|
-
Connections:
|
|
1966
|
-
NextToken:
|
|
2001
|
+
Connections: OutboundConnections | None
|
|
2002
|
+
NextToken: NextToken | None
|
|
1967
2003
|
|
|
1968
2004
|
|
|
1969
|
-
DescribePackagesFilterValues =
|
|
2005
|
+
DescribePackagesFilterValues = list[DescribePackagesFilterValue]
|
|
1970
2006
|
|
|
1971
2007
|
|
|
1972
2008
|
class DescribePackagesFilter(TypedDict, total=False):
|
|
1973
|
-
Name:
|
|
1974
|
-
Value:
|
|
2009
|
+
Name: DescribePackagesFilterName | None
|
|
2010
|
+
Value: DescribePackagesFilterValues | None
|
|
1975
2011
|
|
|
1976
2012
|
|
|
1977
|
-
DescribePackagesFilterList =
|
|
2013
|
+
DescribePackagesFilterList = list[DescribePackagesFilter]
|
|
1978
2014
|
|
|
1979
2015
|
|
|
1980
2016
|
class DescribePackagesRequest(ServiceRequest):
|
|
1981
|
-
Filters:
|
|
1982
|
-
MaxResults:
|
|
1983
|
-
NextToken:
|
|
2017
|
+
Filters: DescribePackagesFilterList | None
|
|
2018
|
+
MaxResults: MaxResults | None
|
|
2019
|
+
NextToken: NextToken | None
|
|
1984
2020
|
|
|
1985
2021
|
|
|
1986
|
-
PackageDetailsList =
|
|
2022
|
+
PackageDetailsList = list[PackageDetails]
|
|
1987
2023
|
|
|
1988
2024
|
|
|
1989
2025
|
class DescribePackagesResponse(TypedDict, total=False):
|
|
1990
|
-
PackageDetailsList:
|
|
1991
|
-
NextToken:
|
|
2026
|
+
PackageDetailsList: PackageDetailsList | None
|
|
2027
|
+
NextToken: String | None
|
|
1992
2028
|
|
|
1993
2029
|
|
|
1994
2030
|
class DescribeReservedInstanceOfferingsRequest(ServiceRequest):
|
|
1995
|
-
ReservedInstanceOfferingId:
|
|
1996
|
-
MaxResults:
|
|
1997
|
-
NextToken:
|
|
2031
|
+
ReservedInstanceOfferingId: GUID | None
|
|
2032
|
+
MaxResults: MaxResults | None
|
|
2033
|
+
NextToken: NextToken | None
|
|
1998
2034
|
|
|
1999
2035
|
|
|
2000
2036
|
class RecurringCharge(TypedDict, total=False):
|
|
2001
|
-
RecurringChargeAmount:
|
|
2002
|
-
RecurringChargeFrequency:
|
|
2037
|
+
RecurringChargeAmount: Double | None
|
|
2038
|
+
RecurringChargeFrequency: String | None
|
|
2003
2039
|
|
|
2004
2040
|
|
|
2005
|
-
RecurringChargeList =
|
|
2041
|
+
RecurringChargeList = list[RecurringCharge]
|
|
2006
2042
|
|
|
2007
2043
|
|
|
2008
2044
|
class ReservedInstanceOffering(TypedDict, total=False):
|
|
2009
|
-
ReservedInstanceOfferingId:
|
|
2010
|
-
InstanceType:
|
|
2011
|
-
Duration:
|
|
2012
|
-
FixedPrice:
|
|
2013
|
-
UsagePrice:
|
|
2014
|
-
CurrencyCode:
|
|
2015
|
-
PaymentOption:
|
|
2016
|
-
RecurringCharges:
|
|
2045
|
+
ReservedInstanceOfferingId: GUID | None
|
|
2046
|
+
InstanceType: OpenSearchPartitionInstanceType | None
|
|
2047
|
+
Duration: Integer | None
|
|
2048
|
+
FixedPrice: Double | None
|
|
2049
|
+
UsagePrice: Double | None
|
|
2050
|
+
CurrencyCode: String | None
|
|
2051
|
+
PaymentOption: ReservedInstancePaymentOption | None
|
|
2052
|
+
RecurringCharges: RecurringChargeList | None
|
|
2017
2053
|
|
|
2018
2054
|
|
|
2019
|
-
ReservedInstanceOfferingList =
|
|
2055
|
+
ReservedInstanceOfferingList = list[ReservedInstanceOffering]
|
|
2020
2056
|
|
|
2021
2057
|
|
|
2022
2058
|
class DescribeReservedInstanceOfferingsResponse(TypedDict, total=False):
|
|
2023
|
-
NextToken:
|
|
2024
|
-
ReservedInstanceOfferings:
|
|
2059
|
+
NextToken: NextToken | None
|
|
2060
|
+
ReservedInstanceOfferings: ReservedInstanceOfferingList | None
|
|
2025
2061
|
|
|
2026
2062
|
|
|
2027
2063
|
class DescribeReservedInstancesRequest(ServiceRequest):
|
|
2028
|
-
ReservedInstanceId:
|
|
2029
|
-
MaxResults:
|
|
2030
|
-
NextToken:
|
|
2064
|
+
ReservedInstanceId: GUID | None
|
|
2065
|
+
MaxResults: MaxResults | None
|
|
2066
|
+
NextToken: NextToken | None
|
|
2031
2067
|
|
|
2032
2068
|
|
|
2033
2069
|
class ReservedInstance(TypedDict, total=False):
|
|
2034
|
-
ReservationName:
|
|
2035
|
-
ReservedInstanceId:
|
|
2036
|
-
BillingSubscriptionId:
|
|
2037
|
-
ReservedInstanceOfferingId:
|
|
2038
|
-
InstanceType:
|
|
2039
|
-
StartTime:
|
|
2040
|
-
Duration:
|
|
2041
|
-
FixedPrice:
|
|
2042
|
-
UsagePrice:
|
|
2043
|
-
CurrencyCode:
|
|
2044
|
-
InstanceCount:
|
|
2045
|
-
State:
|
|
2046
|
-
PaymentOption:
|
|
2047
|
-
RecurringCharges:
|
|
2070
|
+
ReservationName: ReservationToken | None
|
|
2071
|
+
ReservedInstanceId: GUID | None
|
|
2072
|
+
BillingSubscriptionId: Long | None
|
|
2073
|
+
ReservedInstanceOfferingId: String | None
|
|
2074
|
+
InstanceType: OpenSearchPartitionInstanceType | None
|
|
2075
|
+
StartTime: UpdateTimestamp | None
|
|
2076
|
+
Duration: Integer | None
|
|
2077
|
+
FixedPrice: Double | None
|
|
2078
|
+
UsagePrice: Double | None
|
|
2079
|
+
CurrencyCode: String | None
|
|
2080
|
+
InstanceCount: Integer | None
|
|
2081
|
+
State: String | None
|
|
2082
|
+
PaymentOption: ReservedInstancePaymentOption | None
|
|
2083
|
+
RecurringCharges: RecurringChargeList | None
|
|
2048
2084
|
|
|
2049
2085
|
|
|
2050
|
-
ReservedInstanceList =
|
|
2086
|
+
ReservedInstanceList = list[ReservedInstance]
|
|
2051
2087
|
|
|
2052
2088
|
|
|
2053
2089
|
class DescribeReservedInstancesResponse(TypedDict, total=False):
|
|
2054
|
-
NextToken:
|
|
2055
|
-
ReservedInstances:
|
|
2090
|
+
NextToken: String | None
|
|
2091
|
+
ReservedInstances: ReservedInstanceList | None
|
|
2056
2092
|
|
|
2057
2093
|
|
|
2058
|
-
VpcEndpointIdList =
|
|
2094
|
+
VpcEndpointIdList = list[VpcEndpointId]
|
|
2059
2095
|
|
|
2060
2096
|
|
|
2061
2097
|
class DescribeVpcEndpointsRequest(ServiceRequest):
|
|
@@ -2063,13 +2099,13 @@ class DescribeVpcEndpointsRequest(ServiceRequest):
|
|
|
2063
2099
|
|
|
2064
2100
|
|
|
2065
2101
|
class VpcEndpointError(TypedDict, total=False):
|
|
2066
|
-
VpcEndpointId:
|
|
2067
|
-
ErrorCode:
|
|
2068
|
-
ErrorMessage:
|
|
2102
|
+
VpcEndpointId: VpcEndpointId | None
|
|
2103
|
+
ErrorCode: VpcEndpointErrorCode | None
|
|
2104
|
+
ErrorMessage: String | None
|
|
2069
2105
|
|
|
2070
2106
|
|
|
2071
|
-
VpcEndpointErrorList =
|
|
2072
|
-
VpcEndpoints =
|
|
2107
|
+
VpcEndpointErrorList = list[VpcEndpointError]
|
|
2108
|
+
VpcEndpoints = list[VpcEndpoint]
|
|
2073
2109
|
|
|
2074
2110
|
|
|
2075
2111
|
class DescribeVpcEndpointsResponse(TypedDict, total=False):
|
|
@@ -2078,15 +2114,15 @@ class DescribeVpcEndpointsResponse(TypedDict, total=False):
|
|
|
2078
2114
|
|
|
2079
2115
|
|
|
2080
2116
|
class DirectQueryDataSource(TypedDict, total=False):
|
|
2081
|
-
DataSourceName:
|
|
2082
|
-
DataSourceType:
|
|
2083
|
-
Description:
|
|
2084
|
-
OpenSearchArns:
|
|
2085
|
-
DataSourceArn:
|
|
2086
|
-
TagList:
|
|
2117
|
+
DataSourceName: DirectQueryDataSourceName | None
|
|
2118
|
+
DataSourceType: DirectQueryDataSourceType | None
|
|
2119
|
+
Description: DirectQueryDataSourceDescription | None
|
|
2120
|
+
OpenSearchArns: DirectQueryOpenSearchARNList | None
|
|
2121
|
+
DataSourceArn: String | None
|
|
2122
|
+
TagList: TagList | None
|
|
2087
2123
|
|
|
2088
2124
|
|
|
2089
|
-
DirectQueryDataSourceList =
|
|
2125
|
+
DirectQueryDataSourceList = list[DirectQueryDataSource]
|
|
2090
2126
|
|
|
2091
2127
|
|
|
2092
2128
|
class DissociatePackageRequest(ServiceRequest):
|
|
@@ -2095,7 +2131,7 @@ class DissociatePackageRequest(ServiceRequest):
|
|
|
2095
2131
|
|
|
2096
2132
|
|
|
2097
2133
|
class DissociatePackageResponse(TypedDict, total=False):
|
|
2098
|
-
DomainPackageDetails:
|
|
2134
|
+
DomainPackageDetails: DomainPackageDetails | None
|
|
2099
2135
|
|
|
2100
2136
|
|
|
2101
2137
|
class DissociatePackagesRequest(ServiceRequest):
|
|
@@ -2104,29 +2140,29 @@ class DissociatePackagesRequest(ServiceRequest):
|
|
|
2104
2140
|
|
|
2105
2141
|
|
|
2106
2142
|
class DissociatePackagesResponse(TypedDict, total=False):
|
|
2107
|
-
DomainPackageDetailsList:
|
|
2143
|
+
DomainPackageDetailsList: DomainPackageDetailsList | None
|
|
2108
2144
|
|
|
2109
2145
|
|
|
2110
2146
|
class DomainInfo(TypedDict, total=False):
|
|
2111
|
-
DomainName:
|
|
2112
|
-
EngineType:
|
|
2147
|
+
DomainName: DomainName | None
|
|
2148
|
+
EngineType: EngineType | None
|
|
2113
2149
|
|
|
2114
2150
|
|
|
2115
|
-
DomainInfoList =
|
|
2151
|
+
DomainInfoList = list[DomainInfo]
|
|
2116
2152
|
|
|
2117
2153
|
|
|
2118
2154
|
class DomainMaintenanceDetails(TypedDict, total=False):
|
|
2119
|
-
MaintenanceId:
|
|
2120
|
-
DomainName:
|
|
2121
|
-
Action:
|
|
2122
|
-
NodeId:
|
|
2123
|
-
Status:
|
|
2124
|
-
StatusMessage:
|
|
2125
|
-
CreatedAt:
|
|
2126
|
-
UpdatedAt:
|
|
2155
|
+
MaintenanceId: RequestId | None
|
|
2156
|
+
DomainName: DomainName | None
|
|
2157
|
+
Action: MaintenanceType | None
|
|
2158
|
+
NodeId: NodeId | None
|
|
2159
|
+
Status: MaintenanceStatus | None
|
|
2160
|
+
StatusMessage: MaintenanceStatusMessage | None
|
|
2161
|
+
CreatedAt: UpdateTimestamp | None
|
|
2162
|
+
UpdatedAt: UpdateTimestamp | None
|
|
2127
2163
|
|
|
2128
2164
|
|
|
2129
|
-
DomainMaintenanceList =
|
|
2165
|
+
DomainMaintenanceList = list[DomainMaintenanceDetails]
|
|
2130
2166
|
|
|
2131
2167
|
|
|
2132
2168
|
class GetApplicationRequest(ServiceRequest):
|
|
@@ -2134,24 +2170,24 @@ class GetApplicationRequest(ServiceRequest):
|
|
|
2134
2170
|
|
|
2135
2171
|
|
|
2136
2172
|
class GetApplicationResponse(TypedDict, total=False):
|
|
2137
|
-
id:
|
|
2138
|
-
arn:
|
|
2139
|
-
name:
|
|
2140
|
-
endpoint:
|
|
2141
|
-
status:
|
|
2142
|
-
iamIdentityCenterOptions:
|
|
2143
|
-
dataSources:
|
|
2144
|
-
appConfigs:
|
|
2145
|
-
createdAt:
|
|
2146
|
-
lastUpdatedAt:
|
|
2173
|
+
id: Id | None
|
|
2174
|
+
arn: ARN | None
|
|
2175
|
+
name: ApplicationName | None
|
|
2176
|
+
endpoint: String | None
|
|
2177
|
+
status: ApplicationStatus | None
|
|
2178
|
+
iamIdentityCenterOptions: IamIdentityCenterOptions | None
|
|
2179
|
+
dataSources: DataSources | None
|
|
2180
|
+
appConfigs: AppConfigs | None
|
|
2181
|
+
createdAt: Timestamp | None
|
|
2182
|
+
lastUpdatedAt: Timestamp | None
|
|
2147
2183
|
|
|
2148
2184
|
|
|
2149
2185
|
class GetCompatibleVersionsRequest(ServiceRequest):
|
|
2150
|
-
DomainName:
|
|
2186
|
+
DomainName: DomainName | None
|
|
2151
2187
|
|
|
2152
2188
|
|
|
2153
2189
|
class GetCompatibleVersionsResponse(TypedDict, total=False):
|
|
2154
|
-
CompatibleVersions:
|
|
2190
|
+
CompatibleVersions: CompatibleVersionsList | None
|
|
2155
2191
|
|
|
2156
2192
|
|
|
2157
2193
|
class GetDataSourceRequest(ServiceRequest):
|
|
@@ -2160,10 +2196,18 @@ class GetDataSourceRequest(ServiceRequest):
|
|
|
2160
2196
|
|
|
2161
2197
|
|
|
2162
2198
|
class GetDataSourceResponse(TypedDict, total=False):
|
|
2163
|
-
DataSourceType:
|
|
2164
|
-
Name:
|
|
2165
|
-
Description:
|
|
2166
|
-
Status:
|
|
2199
|
+
DataSourceType: DataSourceType | None
|
|
2200
|
+
Name: DataSourceName | None
|
|
2201
|
+
Description: DataSourceDescription | None
|
|
2202
|
+
Status: DataSourceStatus | None
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
class GetDefaultApplicationSettingRequest(ServiceRequest):
|
|
2206
|
+
pass
|
|
2207
|
+
|
|
2208
|
+
|
|
2209
|
+
class GetDefaultApplicationSettingResponse(TypedDict, total=False):
|
|
2210
|
+
applicationArn: ARN | None
|
|
2167
2211
|
|
|
2168
2212
|
|
|
2169
2213
|
class GetDirectQueryDataSourceRequest(ServiceRequest):
|
|
@@ -2171,11 +2215,11 @@ class GetDirectQueryDataSourceRequest(ServiceRequest):
|
|
|
2171
2215
|
|
|
2172
2216
|
|
|
2173
2217
|
class GetDirectQueryDataSourceResponse(TypedDict, total=False):
|
|
2174
|
-
DataSourceName:
|
|
2175
|
-
DataSourceType:
|
|
2176
|
-
Description:
|
|
2177
|
-
OpenSearchArns:
|
|
2178
|
-
DataSourceArn:
|
|
2218
|
+
DataSourceName: DirectQueryDataSourceName | None
|
|
2219
|
+
DataSourceType: DirectQueryDataSourceType | None
|
|
2220
|
+
Description: DirectQueryDataSourceDescription | None
|
|
2221
|
+
OpenSearchArns: DirectQueryOpenSearchARNList | None
|
|
2222
|
+
DataSourceArn: String | None
|
|
2179
2223
|
|
|
2180
2224
|
|
|
2181
2225
|
class GetDomainMaintenanceStatusRequest(ServiceRequest):
|
|
@@ -2184,70 +2228,79 @@ class GetDomainMaintenanceStatusRequest(ServiceRequest):
|
|
|
2184
2228
|
|
|
2185
2229
|
|
|
2186
2230
|
class GetDomainMaintenanceStatusResponse(TypedDict, total=False):
|
|
2187
|
-
Status:
|
|
2188
|
-
StatusMessage:
|
|
2189
|
-
NodeId:
|
|
2190
|
-
Action:
|
|
2191
|
-
CreatedAt:
|
|
2192
|
-
UpdatedAt:
|
|
2231
|
+
Status: MaintenanceStatus | None
|
|
2232
|
+
StatusMessage: MaintenanceStatusMessage | None
|
|
2233
|
+
NodeId: NodeId | None
|
|
2234
|
+
Action: MaintenanceType | None
|
|
2235
|
+
CreatedAt: UpdateTimestamp | None
|
|
2236
|
+
UpdatedAt: UpdateTimestamp | None
|
|
2237
|
+
|
|
2238
|
+
|
|
2239
|
+
class GetIndexRequest(ServiceRequest):
|
|
2240
|
+
DomainName: DomainName
|
|
2241
|
+
IndexName: IndexName
|
|
2242
|
+
|
|
2243
|
+
|
|
2244
|
+
class GetIndexResponse(TypedDict, total=False):
|
|
2245
|
+
IndexSchema: IndexSchema
|
|
2193
2246
|
|
|
2194
2247
|
|
|
2195
2248
|
class GetPackageVersionHistoryRequest(ServiceRequest):
|
|
2196
2249
|
PackageID: PackageID
|
|
2197
|
-
MaxResults:
|
|
2198
|
-
NextToken:
|
|
2250
|
+
MaxResults: MaxResults | None
|
|
2251
|
+
NextToken: NextToken | None
|
|
2199
2252
|
|
|
2200
2253
|
|
|
2201
2254
|
class PackageVersionHistory(TypedDict, total=False):
|
|
2202
|
-
PackageVersion:
|
|
2203
|
-
CommitMessage:
|
|
2204
|
-
CreatedAt:
|
|
2205
|
-
PluginProperties:
|
|
2206
|
-
PackageConfiguration:
|
|
2255
|
+
PackageVersion: PackageVersion | None
|
|
2256
|
+
CommitMessage: CommitMessage | None
|
|
2257
|
+
CreatedAt: CreatedAt | None
|
|
2258
|
+
PluginProperties: PluginProperties | None
|
|
2259
|
+
PackageConfiguration: PackageConfiguration | None
|
|
2207
2260
|
|
|
2208
2261
|
|
|
2209
|
-
PackageVersionHistoryList =
|
|
2262
|
+
PackageVersionHistoryList = list[PackageVersionHistory]
|
|
2210
2263
|
|
|
2211
2264
|
|
|
2212
2265
|
class GetPackageVersionHistoryResponse(TypedDict, total=False):
|
|
2213
|
-
PackageID:
|
|
2214
|
-
PackageVersionHistoryList:
|
|
2215
|
-
NextToken:
|
|
2266
|
+
PackageID: PackageID | None
|
|
2267
|
+
PackageVersionHistoryList: PackageVersionHistoryList | None
|
|
2268
|
+
NextToken: String | None
|
|
2216
2269
|
|
|
2217
2270
|
|
|
2218
2271
|
class GetUpgradeHistoryRequest(ServiceRequest):
|
|
2219
2272
|
DomainName: DomainName
|
|
2220
|
-
MaxResults:
|
|
2221
|
-
NextToken:
|
|
2273
|
+
MaxResults: MaxResults | None
|
|
2274
|
+
NextToken: NextToken | None
|
|
2222
2275
|
|
|
2223
2276
|
|
|
2224
|
-
Issues =
|
|
2277
|
+
Issues = list[Issue]
|
|
2225
2278
|
|
|
2226
2279
|
|
|
2227
2280
|
class UpgradeStepItem(TypedDict, total=False):
|
|
2228
|
-
UpgradeStep:
|
|
2229
|
-
UpgradeStepStatus:
|
|
2230
|
-
Issues:
|
|
2231
|
-
ProgressPercent:
|
|
2281
|
+
UpgradeStep: UpgradeStep | None
|
|
2282
|
+
UpgradeStepStatus: UpgradeStatus | None
|
|
2283
|
+
Issues: Issues | None
|
|
2284
|
+
ProgressPercent: Double | None
|
|
2232
2285
|
|
|
2233
2286
|
|
|
2234
|
-
UpgradeStepsList =
|
|
2287
|
+
UpgradeStepsList = list[UpgradeStepItem]
|
|
2235
2288
|
StartTimestamp = datetime
|
|
2236
2289
|
|
|
2237
2290
|
|
|
2238
2291
|
class UpgradeHistory(TypedDict, total=False):
|
|
2239
|
-
UpgradeName:
|
|
2240
|
-
StartTimestamp:
|
|
2241
|
-
UpgradeStatus:
|
|
2242
|
-
StepsList:
|
|
2292
|
+
UpgradeName: UpgradeName | None
|
|
2293
|
+
StartTimestamp: StartTimestamp | None
|
|
2294
|
+
UpgradeStatus: UpgradeStatus | None
|
|
2295
|
+
StepsList: UpgradeStepsList | None
|
|
2243
2296
|
|
|
2244
2297
|
|
|
2245
|
-
UpgradeHistoryList =
|
|
2298
|
+
UpgradeHistoryList = list[UpgradeHistory]
|
|
2246
2299
|
|
|
2247
2300
|
|
|
2248
2301
|
class GetUpgradeHistoryResponse(TypedDict, total=False):
|
|
2249
|
-
UpgradeHistories:
|
|
2250
|
-
NextToken:
|
|
2302
|
+
UpgradeHistories: UpgradeHistoryList | None
|
|
2303
|
+
NextToken: String | None
|
|
2251
2304
|
|
|
2252
2305
|
|
|
2253
2306
|
class GetUpgradeStatusRequest(ServiceRequest):
|
|
@@ -2255,37 +2308,37 @@ class GetUpgradeStatusRequest(ServiceRequest):
|
|
|
2255
2308
|
|
|
2256
2309
|
|
|
2257
2310
|
class GetUpgradeStatusResponse(TypedDict, total=False):
|
|
2258
|
-
UpgradeStep:
|
|
2259
|
-
StepStatus:
|
|
2260
|
-
UpgradeName:
|
|
2311
|
+
UpgradeStep: UpgradeStep | None
|
|
2312
|
+
StepStatus: UpgradeStatus | None
|
|
2313
|
+
UpgradeName: UpgradeName | None
|
|
2261
2314
|
|
|
2262
2315
|
|
|
2263
|
-
InstanceRoleList =
|
|
2316
|
+
InstanceRoleList = list[InstanceRole]
|
|
2264
2317
|
|
|
2265
2318
|
|
|
2266
2319
|
class InstanceTypeDetails(TypedDict, total=False):
|
|
2267
|
-
InstanceType:
|
|
2268
|
-
EncryptionEnabled:
|
|
2269
|
-
CognitoEnabled:
|
|
2270
|
-
AppLogsEnabled:
|
|
2271
|
-
AdvancedSecurityEnabled:
|
|
2272
|
-
WarmEnabled:
|
|
2273
|
-
InstanceRole:
|
|
2274
|
-
AvailabilityZones:
|
|
2320
|
+
InstanceType: OpenSearchPartitionInstanceType | None
|
|
2321
|
+
EncryptionEnabled: Boolean | None
|
|
2322
|
+
CognitoEnabled: Boolean | None
|
|
2323
|
+
AppLogsEnabled: Boolean | None
|
|
2324
|
+
AdvancedSecurityEnabled: Boolean | None
|
|
2325
|
+
WarmEnabled: Boolean | None
|
|
2326
|
+
InstanceRole: InstanceRoleList | None
|
|
2327
|
+
AvailabilityZones: AvailabilityZoneList | None
|
|
2275
2328
|
|
|
2276
2329
|
|
|
2277
|
-
InstanceTypeDetailsList =
|
|
2330
|
+
InstanceTypeDetailsList = list[InstanceTypeDetails]
|
|
2278
2331
|
|
|
2279
2332
|
|
|
2280
2333
|
class ListApplicationsRequest(ServiceRequest):
|
|
2281
|
-
nextToken:
|
|
2282
|
-
statuses:
|
|
2283
|
-
maxResults:
|
|
2334
|
+
nextToken: NextToken | None
|
|
2335
|
+
statuses: ApplicationStatuses | None
|
|
2336
|
+
maxResults: MaxResults | None
|
|
2284
2337
|
|
|
2285
2338
|
|
|
2286
2339
|
class ListApplicationsResponse(TypedDict, total=False):
|
|
2287
|
-
ApplicationSummaries:
|
|
2288
|
-
nextToken:
|
|
2340
|
+
ApplicationSummaries: ApplicationSummaries | None
|
|
2341
|
+
nextToken: NextToken | None
|
|
2289
2342
|
|
|
2290
2343
|
|
|
2291
2344
|
class ListDataSourcesRequest(ServiceRequest):
|
|
@@ -2293,79 +2346,79 @@ class ListDataSourcesRequest(ServiceRequest):
|
|
|
2293
2346
|
|
|
2294
2347
|
|
|
2295
2348
|
class ListDataSourcesResponse(TypedDict, total=False):
|
|
2296
|
-
DataSources:
|
|
2349
|
+
DataSources: DataSourceList | None
|
|
2297
2350
|
|
|
2298
2351
|
|
|
2299
2352
|
class ListDirectQueryDataSourcesRequest(ServiceRequest):
|
|
2300
|
-
NextToken:
|
|
2353
|
+
NextToken: NextToken | None
|
|
2301
2354
|
|
|
2302
2355
|
|
|
2303
2356
|
class ListDirectQueryDataSourcesResponse(TypedDict, total=False):
|
|
2304
|
-
NextToken:
|
|
2305
|
-
DirectQueryDataSources:
|
|
2357
|
+
NextToken: NextToken | None
|
|
2358
|
+
DirectQueryDataSources: DirectQueryDataSourceList | None
|
|
2306
2359
|
|
|
2307
2360
|
|
|
2308
2361
|
class ListDomainMaintenancesRequest(ServiceRequest):
|
|
2309
2362
|
DomainName: DomainName
|
|
2310
|
-
Action:
|
|
2311
|
-
Status:
|
|
2312
|
-
MaxResults:
|
|
2313
|
-
NextToken:
|
|
2363
|
+
Action: MaintenanceType | None
|
|
2364
|
+
Status: MaintenanceStatus | None
|
|
2365
|
+
MaxResults: MaxResults | None
|
|
2366
|
+
NextToken: NextToken | None
|
|
2314
2367
|
|
|
2315
2368
|
|
|
2316
2369
|
class ListDomainMaintenancesResponse(TypedDict, total=False):
|
|
2317
|
-
DomainMaintenances:
|
|
2318
|
-
NextToken:
|
|
2370
|
+
DomainMaintenances: DomainMaintenanceList | None
|
|
2371
|
+
NextToken: NextToken | None
|
|
2319
2372
|
|
|
2320
2373
|
|
|
2321
2374
|
class ListDomainNamesRequest(ServiceRequest):
|
|
2322
|
-
EngineType:
|
|
2375
|
+
EngineType: EngineType | None
|
|
2323
2376
|
|
|
2324
2377
|
|
|
2325
2378
|
class ListDomainNamesResponse(TypedDict, total=False):
|
|
2326
|
-
DomainNames:
|
|
2379
|
+
DomainNames: DomainInfoList | None
|
|
2327
2380
|
|
|
2328
2381
|
|
|
2329
2382
|
class ListDomainsForPackageRequest(ServiceRequest):
|
|
2330
2383
|
PackageID: PackageID
|
|
2331
|
-
MaxResults:
|
|
2332
|
-
NextToken:
|
|
2384
|
+
MaxResults: MaxResults | None
|
|
2385
|
+
NextToken: NextToken | None
|
|
2333
2386
|
|
|
2334
2387
|
|
|
2335
2388
|
class ListDomainsForPackageResponse(TypedDict, total=False):
|
|
2336
|
-
DomainPackageDetailsList:
|
|
2337
|
-
NextToken:
|
|
2389
|
+
DomainPackageDetailsList: DomainPackageDetailsList | None
|
|
2390
|
+
NextToken: String | None
|
|
2338
2391
|
|
|
2339
2392
|
|
|
2340
2393
|
class ListInstanceTypeDetailsRequest(ServiceRequest):
|
|
2341
2394
|
EngineVersion: VersionString
|
|
2342
|
-
DomainName:
|
|
2343
|
-
MaxResults:
|
|
2344
|
-
NextToken:
|
|
2345
|
-
RetrieveAZs:
|
|
2346
|
-
InstanceType:
|
|
2395
|
+
DomainName: DomainName | None
|
|
2396
|
+
MaxResults: MaxResults | None
|
|
2397
|
+
NextToken: NextToken | None
|
|
2398
|
+
RetrieveAZs: Boolean | None
|
|
2399
|
+
InstanceType: InstanceTypeString | None
|
|
2347
2400
|
|
|
2348
2401
|
|
|
2349
2402
|
class ListInstanceTypeDetailsResponse(TypedDict, total=False):
|
|
2350
|
-
InstanceTypeDetails:
|
|
2351
|
-
NextToken:
|
|
2403
|
+
InstanceTypeDetails: InstanceTypeDetailsList | None
|
|
2404
|
+
NextToken: NextToken | None
|
|
2352
2405
|
|
|
2353
2406
|
|
|
2354
2407
|
class ListPackagesForDomainRequest(ServiceRequest):
|
|
2355
2408
|
DomainName: DomainName
|
|
2356
|
-
MaxResults:
|
|
2357
|
-
NextToken:
|
|
2409
|
+
MaxResults: MaxResults | None
|
|
2410
|
+
NextToken: NextToken | None
|
|
2358
2411
|
|
|
2359
2412
|
|
|
2360
2413
|
class ListPackagesForDomainResponse(TypedDict, total=False):
|
|
2361
|
-
DomainPackageDetailsList:
|
|
2362
|
-
NextToken:
|
|
2414
|
+
DomainPackageDetailsList: DomainPackageDetailsList | None
|
|
2415
|
+
NextToken: String | None
|
|
2363
2416
|
|
|
2364
2417
|
|
|
2365
2418
|
class ListScheduledActionsRequest(ServiceRequest):
|
|
2366
2419
|
DomainName: DomainName
|
|
2367
|
-
MaxResults:
|
|
2368
|
-
NextToken:
|
|
2420
|
+
MaxResults: MaxResults | None
|
|
2421
|
+
NextToken: NextToken | None
|
|
2369
2422
|
|
|
2370
2423
|
|
|
2371
2424
|
class ScheduledAction(TypedDict, total=False):
|
|
@@ -2373,19 +2426,19 @@ class ScheduledAction(TypedDict, total=False):
|
|
|
2373
2426
|
Type: ActionType
|
|
2374
2427
|
Severity: ActionSeverity
|
|
2375
2428
|
ScheduledTime: Long
|
|
2376
|
-
Description:
|
|
2377
|
-
ScheduledBy:
|
|
2378
|
-
Status:
|
|
2379
|
-
Mandatory:
|
|
2380
|
-
Cancellable:
|
|
2429
|
+
Description: String | None
|
|
2430
|
+
ScheduledBy: ScheduledBy | None
|
|
2431
|
+
Status: ActionStatus | None
|
|
2432
|
+
Mandatory: Boolean | None
|
|
2433
|
+
Cancellable: Boolean | None
|
|
2381
2434
|
|
|
2382
2435
|
|
|
2383
|
-
ScheduledActionsList =
|
|
2436
|
+
ScheduledActionsList = list[ScheduledAction]
|
|
2384
2437
|
|
|
2385
2438
|
|
|
2386
2439
|
class ListScheduledActionsResponse(TypedDict, total=False):
|
|
2387
|
-
ScheduledActions:
|
|
2388
|
-
NextToken:
|
|
2440
|
+
ScheduledActions: ScheduledActionsList | None
|
|
2441
|
+
NextToken: NextToken | None
|
|
2389
2442
|
|
|
2390
2443
|
|
|
2391
2444
|
class ListTagsRequest(ServiceRequest):
|
|
@@ -2393,22 +2446,22 @@ class ListTagsRequest(ServiceRequest):
|
|
|
2393
2446
|
|
|
2394
2447
|
|
|
2395
2448
|
class ListTagsResponse(TypedDict, total=False):
|
|
2396
|
-
TagList:
|
|
2449
|
+
TagList: TagList | None
|
|
2397
2450
|
|
|
2398
2451
|
|
|
2399
2452
|
class ListVersionsRequest(ServiceRequest):
|
|
2400
|
-
MaxResults:
|
|
2401
|
-
NextToken:
|
|
2453
|
+
MaxResults: MaxResults | None
|
|
2454
|
+
NextToken: NextToken | None
|
|
2402
2455
|
|
|
2403
2456
|
|
|
2404
2457
|
class ListVersionsResponse(TypedDict, total=False):
|
|
2405
|
-
Versions:
|
|
2406
|
-
NextToken:
|
|
2458
|
+
Versions: VersionList | None
|
|
2459
|
+
NextToken: NextToken | None
|
|
2407
2460
|
|
|
2408
2461
|
|
|
2409
2462
|
class ListVpcEndpointAccessRequest(ServiceRequest):
|
|
2410
2463
|
DomainName: DomainName
|
|
2411
|
-
NextToken:
|
|
2464
|
+
NextToken: NextToken | None
|
|
2412
2465
|
|
|
2413
2466
|
|
|
2414
2467
|
class ListVpcEndpointAccessResponse(TypedDict, total=False):
|
|
@@ -2418,10 +2471,10 @@ class ListVpcEndpointAccessResponse(TypedDict, total=False):
|
|
|
2418
2471
|
|
|
2419
2472
|
class ListVpcEndpointsForDomainRequest(ServiceRequest):
|
|
2420
2473
|
DomainName: DomainName
|
|
2421
|
-
NextToken:
|
|
2474
|
+
NextToken: NextToken | None
|
|
2422
2475
|
|
|
2423
2476
|
|
|
2424
|
-
VpcEndpointSummaryList =
|
|
2477
|
+
VpcEndpointSummaryList = list[VpcEndpointSummary]
|
|
2425
2478
|
|
|
2426
2479
|
|
|
2427
2480
|
class ListVpcEndpointsForDomainResponse(TypedDict, total=False):
|
|
@@ -2430,7 +2483,7 @@ class ListVpcEndpointsForDomainResponse(TypedDict, total=False):
|
|
|
2430
2483
|
|
|
2431
2484
|
|
|
2432
2485
|
class ListVpcEndpointsRequest(ServiceRequest):
|
|
2433
|
-
NextToken:
|
|
2486
|
+
NextToken: NextToken | None
|
|
2434
2487
|
|
|
2435
2488
|
|
|
2436
2489
|
class ListVpcEndpointsResponse(TypedDict, total=False):
|
|
@@ -2441,12 +2494,21 @@ class ListVpcEndpointsResponse(TypedDict, total=False):
|
|
|
2441
2494
|
class PurchaseReservedInstanceOfferingRequest(ServiceRequest):
|
|
2442
2495
|
ReservedInstanceOfferingId: GUID
|
|
2443
2496
|
ReservationName: ReservationToken
|
|
2444
|
-
InstanceCount:
|
|
2497
|
+
InstanceCount: InstanceCount | None
|
|
2445
2498
|
|
|
2446
2499
|
|
|
2447
2500
|
class PurchaseReservedInstanceOfferingResponse(TypedDict, total=False):
|
|
2448
|
-
ReservedInstanceId:
|
|
2449
|
-
ReservationName:
|
|
2501
|
+
ReservedInstanceId: GUID | None
|
|
2502
|
+
ReservationName: ReservationToken | None
|
|
2503
|
+
|
|
2504
|
+
|
|
2505
|
+
class PutDefaultApplicationSettingRequest(ServiceRequest):
|
|
2506
|
+
applicationArn: ARN
|
|
2507
|
+
setAsDefault: Boolean
|
|
2508
|
+
|
|
2509
|
+
|
|
2510
|
+
class PutDefaultApplicationSettingResponse(TypedDict, total=False):
|
|
2511
|
+
applicationArn: ARN | None
|
|
2450
2512
|
|
|
2451
2513
|
|
|
2452
2514
|
class RejectInboundConnectionRequest(ServiceRequest):
|
|
@@ -2454,7 +2516,7 @@ class RejectInboundConnectionRequest(ServiceRequest):
|
|
|
2454
2516
|
|
|
2455
2517
|
|
|
2456
2518
|
class RejectInboundConnectionResponse(TypedDict, total=False):
|
|
2457
|
-
Connection:
|
|
2519
|
+
Connection: InboundConnection | None
|
|
2458
2520
|
|
|
2459
2521
|
|
|
2460
2522
|
class RemoveTagsRequest(ServiceRequest):
|
|
@@ -2464,8 +2526,8 @@ class RemoveTagsRequest(ServiceRequest):
|
|
|
2464
2526
|
|
|
2465
2527
|
class RevokeVpcEndpointAccessRequest(ServiceRequest):
|
|
2466
2528
|
DomainName: DomainName
|
|
2467
|
-
Account:
|
|
2468
|
-
Service:
|
|
2529
|
+
Account: AWSAccount | None
|
|
2530
|
+
Service: AWSServicePrincipal | None
|
|
2469
2531
|
|
|
2470
2532
|
|
|
2471
2533
|
class RevokeVpcEndpointAccessResponse(TypedDict, total=False):
|
|
@@ -2475,104 +2537,114 @@ class RevokeVpcEndpointAccessResponse(TypedDict, total=False):
|
|
|
2475
2537
|
class StartDomainMaintenanceRequest(ServiceRequest):
|
|
2476
2538
|
DomainName: DomainName
|
|
2477
2539
|
Action: MaintenanceType
|
|
2478
|
-
NodeId:
|
|
2540
|
+
NodeId: NodeId | None
|
|
2479
2541
|
|
|
2480
2542
|
|
|
2481
2543
|
class StartDomainMaintenanceResponse(TypedDict, total=False):
|
|
2482
|
-
MaintenanceId:
|
|
2544
|
+
MaintenanceId: RequestId | None
|
|
2483
2545
|
|
|
2484
2546
|
|
|
2485
2547
|
class StartServiceSoftwareUpdateRequest(ServiceRequest):
|
|
2486
2548
|
DomainName: DomainName
|
|
2487
|
-
ScheduleAt:
|
|
2488
|
-
DesiredStartTime:
|
|
2549
|
+
ScheduleAt: ScheduleAt | None
|
|
2550
|
+
DesiredStartTime: Long | None
|
|
2489
2551
|
|
|
2490
2552
|
|
|
2491
2553
|
class StartServiceSoftwareUpdateResponse(TypedDict, total=False):
|
|
2492
|
-
ServiceSoftwareOptions:
|
|
2554
|
+
ServiceSoftwareOptions: ServiceSoftwareOptions | None
|
|
2493
2555
|
|
|
2494
2556
|
|
|
2495
2557
|
class UpdateApplicationRequest(ServiceRequest):
|
|
2496
2558
|
id: Id
|
|
2497
|
-
dataSources:
|
|
2498
|
-
appConfigs:
|
|
2559
|
+
dataSources: DataSources | None
|
|
2560
|
+
appConfigs: AppConfigs | None
|
|
2499
2561
|
|
|
2500
2562
|
|
|
2501
2563
|
class UpdateApplicationResponse(TypedDict, total=False):
|
|
2502
|
-
id:
|
|
2503
|
-
name:
|
|
2504
|
-
arn:
|
|
2505
|
-
dataSources:
|
|
2506
|
-
iamIdentityCenterOptions:
|
|
2507
|
-
appConfigs:
|
|
2508
|
-
createdAt:
|
|
2509
|
-
lastUpdatedAt:
|
|
2564
|
+
id: Id | None
|
|
2565
|
+
name: ApplicationName | None
|
|
2566
|
+
arn: ARN | None
|
|
2567
|
+
dataSources: DataSources | None
|
|
2568
|
+
iamIdentityCenterOptions: IamIdentityCenterOptions | None
|
|
2569
|
+
appConfigs: AppConfigs | None
|
|
2570
|
+
createdAt: Timestamp | None
|
|
2571
|
+
lastUpdatedAt: Timestamp | None
|
|
2510
2572
|
|
|
2511
2573
|
|
|
2512
2574
|
class UpdateDataSourceRequest(ServiceRequest):
|
|
2513
2575
|
DomainName: DomainName
|
|
2514
2576
|
Name: DataSourceName
|
|
2515
2577
|
DataSourceType: DataSourceType
|
|
2516
|
-
Description:
|
|
2517
|
-
Status:
|
|
2578
|
+
Description: DataSourceDescription | None
|
|
2579
|
+
Status: DataSourceStatus | None
|
|
2518
2580
|
|
|
2519
2581
|
|
|
2520
2582
|
class UpdateDataSourceResponse(TypedDict, total=False):
|
|
2521
|
-
Message:
|
|
2583
|
+
Message: String | None
|
|
2522
2584
|
|
|
2523
2585
|
|
|
2524
2586
|
class UpdateDirectQueryDataSourceRequest(ServiceRequest):
|
|
2525
2587
|
DataSourceName: DirectQueryDataSourceName
|
|
2526
2588
|
DataSourceType: DirectQueryDataSourceType
|
|
2527
|
-
Description:
|
|
2589
|
+
Description: DirectQueryDataSourceDescription | None
|
|
2528
2590
|
OpenSearchArns: DirectQueryOpenSearchARNList
|
|
2529
2591
|
|
|
2530
2592
|
|
|
2531
2593
|
class UpdateDirectQueryDataSourceResponse(TypedDict, total=False):
|
|
2532
|
-
DataSourceArn:
|
|
2594
|
+
DataSourceArn: String | None
|
|
2533
2595
|
|
|
2534
2596
|
|
|
2535
2597
|
class UpdateDomainConfigRequest(ServiceRequest):
|
|
2536
2598
|
DomainName: DomainName
|
|
2537
|
-
ClusterConfig:
|
|
2538
|
-
EBSOptions:
|
|
2539
|
-
SnapshotOptions:
|
|
2540
|
-
VPCOptions:
|
|
2541
|
-
CognitoOptions:
|
|
2542
|
-
AdvancedOptions:
|
|
2543
|
-
AccessPolicies:
|
|
2544
|
-
IPAddressType:
|
|
2545
|
-
LogPublishingOptions:
|
|
2546
|
-
EncryptionAtRestOptions:
|
|
2547
|
-
DomainEndpointOptions:
|
|
2548
|
-
NodeToNodeEncryptionOptions:
|
|
2549
|
-
AdvancedSecurityOptions:
|
|
2550
|
-
IdentityCenterOptions:
|
|
2551
|
-
AutoTuneOptions:
|
|
2552
|
-
DryRun:
|
|
2553
|
-
DryRunMode:
|
|
2554
|
-
OffPeakWindowOptions:
|
|
2555
|
-
SoftwareUpdateOptions:
|
|
2556
|
-
AIMLOptions:
|
|
2599
|
+
ClusterConfig: ClusterConfig | None
|
|
2600
|
+
EBSOptions: EBSOptions | None
|
|
2601
|
+
SnapshotOptions: SnapshotOptions | None
|
|
2602
|
+
VPCOptions: VPCOptions | None
|
|
2603
|
+
CognitoOptions: CognitoOptions | None
|
|
2604
|
+
AdvancedOptions: AdvancedOptions | None
|
|
2605
|
+
AccessPolicies: PolicyDocument | None
|
|
2606
|
+
IPAddressType: IPAddressType | None
|
|
2607
|
+
LogPublishingOptions: LogPublishingOptions | None
|
|
2608
|
+
EncryptionAtRestOptions: EncryptionAtRestOptions | None
|
|
2609
|
+
DomainEndpointOptions: DomainEndpointOptions | None
|
|
2610
|
+
NodeToNodeEncryptionOptions: NodeToNodeEncryptionOptions | None
|
|
2611
|
+
AdvancedSecurityOptions: AdvancedSecurityOptionsInput | None
|
|
2612
|
+
IdentityCenterOptions: IdentityCenterOptionsInput | None
|
|
2613
|
+
AutoTuneOptions: AutoTuneOptions | None
|
|
2614
|
+
DryRun: DryRun | None
|
|
2615
|
+
DryRunMode: DryRunMode | None
|
|
2616
|
+
OffPeakWindowOptions: OffPeakWindowOptions | None
|
|
2617
|
+
SoftwareUpdateOptions: SoftwareUpdateOptions | None
|
|
2618
|
+
AIMLOptions: AIMLOptionsInput | None
|
|
2557
2619
|
|
|
2558
2620
|
|
|
2559
2621
|
class UpdateDomainConfigResponse(TypedDict, total=False):
|
|
2560
2622
|
DomainConfig: DomainConfig
|
|
2561
|
-
DryRunResults:
|
|
2562
|
-
DryRunProgressStatus:
|
|
2623
|
+
DryRunResults: DryRunResults | None
|
|
2624
|
+
DryRunProgressStatus: DryRunProgressStatus | None
|
|
2625
|
+
|
|
2626
|
+
|
|
2627
|
+
class UpdateIndexRequest(ServiceRequest):
|
|
2628
|
+
DomainName: DomainName
|
|
2629
|
+
IndexName: IndexName
|
|
2630
|
+
IndexSchema: IndexSchema
|
|
2631
|
+
|
|
2632
|
+
|
|
2633
|
+
class UpdateIndexResponse(TypedDict, total=False):
|
|
2634
|
+
Status: IndexStatus
|
|
2563
2635
|
|
|
2564
2636
|
|
|
2565
2637
|
class UpdatePackageRequest(ServiceRequest):
|
|
2566
2638
|
PackageID: PackageID
|
|
2567
2639
|
PackageSource: PackageSource
|
|
2568
|
-
PackageDescription:
|
|
2569
|
-
CommitMessage:
|
|
2570
|
-
PackageConfiguration:
|
|
2571
|
-
PackageEncryptionOptions:
|
|
2640
|
+
PackageDescription: PackageDescription | None
|
|
2641
|
+
CommitMessage: CommitMessage | None
|
|
2642
|
+
PackageConfiguration: PackageConfiguration | None
|
|
2643
|
+
PackageEncryptionOptions: PackageEncryptionOptions | None
|
|
2572
2644
|
|
|
2573
2645
|
|
|
2574
2646
|
class UpdatePackageResponse(TypedDict, total=False):
|
|
2575
|
-
PackageDetails:
|
|
2647
|
+
PackageDetails: PackageDetails | None
|
|
2576
2648
|
|
|
2577
2649
|
|
|
2578
2650
|
class UpdatePackageScopeRequest(ServiceRequest):
|
|
@@ -2582,9 +2654,9 @@ class UpdatePackageScopeRequest(ServiceRequest):
|
|
|
2582
2654
|
|
|
2583
2655
|
|
|
2584
2656
|
class UpdatePackageScopeResponse(TypedDict, total=False):
|
|
2585
|
-
PackageID:
|
|
2586
|
-
Operation:
|
|
2587
|
-
PackageUserList:
|
|
2657
|
+
PackageID: PackageID | None
|
|
2658
|
+
Operation: PackageScopeOperationEnum | None
|
|
2659
|
+
PackageUserList: PackageUserList | None
|
|
2588
2660
|
|
|
2589
2661
|
|
|
2590
2662
|
class UpdateScheduledActionRequest(ServiceRequest):
|
|
@@ -2592,11 +2664,11 @@ class UpdateScheduledActionRequest(ServiceRequest):
|
|
|
2592
2664
|
ActionID: String
|
|
2593
2665
|
ActionType: ActionType
|
|
2594
2666
|
ScheduleAt: ScheduleAt
|
|
2595
|
-
DesiredStartTime:
|
|
2667
|
+
DesiredStartTime: Long | None
|
|
2596
2668
|
|
|
2597
2669
|
|
|
2598
2670
|
class UpdateScheduledActionResponse(TypedDict, total=False):
|
|
2599
|
-
ScheduledAction:
|
|
2671
|
+
ScheduledAction: ScheduledAction | None
|
|
2600
2672
|
|
|
2601
2673
|
|
|
2602
2674
|
class UpdateVpcEndpointRequest(ServiceRequest):
|
|
@@ -2611,22 +2683,22 @@ class UpdateVpcEndpointResponse(TypedDict, total=False):
|
|
|
2611
2683
|
class UpgradeDomainRequest(ServiceRequest):
|
|
2612
2684
|
DomainName: DomainName
|
|
2613
2685
|
TargetVersion: VersionString
|
|
2614
|
-
PerformCheckOnly:
|
|
2615
|
-
AdvancedOptions:
|
|
2686
|
+
PerformCheckOnly: Boolean | None
|
|
2687
|
+
AdvancedOptions: AdvancedOptions | None
|
|
2616
2688
|
|
|
2617
2689
|
|
|
2618
2690
|
class UpgradeDomainResponse(TypedDict, total=False):
|
|
2619
|
-
UpgradeId:
|
|
2620
|
-
DomainName:
|
|
2621
|
-
TargetVersion:
|
|
2622
|
-
PerformCheckOnly:
|
|
2623
|
-
AdvancedOptions:
|
|
2624
|
-
ChangeProgressDetails:
|
|
2691
|
+
UpgradeId: String | None
|
|
2692
|
+
DomainName: DomainName | None
|
|
2693
|
+
TargetVersion: VersionString | None
|
|
2694
|
+
PerformCheckOnly: Boolean | None
|
|
2695
|
+
AdvancedOptions: AdvancedOptions | None
|
|
2696
|
+
ChangeProgressDetails: ChangeProgressDetails | None
|
|
2625
2697
|
|
|
2626
2698
|
|
|
2627
2699
|
class OpensearchApi:
|
|
2628
|
-
service = "opensearch"
|
|
2629
|
-
version = "2021-01-01"
|
|
2700
|
+
service: str = "opensearch"
|
|
2701
|
+
version: str = "2021-01-01"
|
|
2630
2702
|
|
|
2631
2703
|
@handler("AcceptInboundConnection")
|
|
2632
2704
|
def accept_inbound_connection(
|
|
@@ -2755,6 +2827,17 @@ class OpensearchApi:
|
|
|
2755
2827
|
) -> CreateDomainResponse:
|
|
2756
2828
|
raise NotImplementedError
|
|
2757
2829
|
|
|
2830
|
+
@handler("CreateIndex")
|
|
2831
|
+
def create_index(
|
|
2832
|
+
self,
|
|
2833
|
+
context: RequestContext,
|
|
2834
|
+
domain_name: DomainName,
|
|
2835
|
+
index_name: IndexName,
|
|
2836
|
+
index_schema: IndexSchema,
|
|
2837
|
+
**kwargs,
|
|
2838
|
+
) -> CreateIndexResponse:
|
|
2839
|
+
raise NotImplementedError
|
|
2840
|
+
|
|
2758
2841
|
@handler("CreateOutboundConnection")
|
|
2759
2842
|
def create_outbound_connection(
|
|
2760
2843
|
self,
|
|
@@ -2825,6 +2908,12 @@ class OpensearchApi:
|
|
|
2825
2908
|
) -> DeleteInboundConnectionResponse:
|
|
2826
2909
|
raise NotImplementedError
|
|
2827
2910
|
|
|
2911
|
+
@handler("DeleteIndex")
|
|
2912
|
+
def delete_index(
|
|
2913
|
+
self, context: RequestContext, domain_name: DomainName, index_name: IndexName, **kwargs
|
|
2914
|
+
) -> DeleteIndexResponse:
|
|
2915
|
+
raise NotImplementedError
|
|
2916
|
+
|
|
2828
2917
|
@handler("DeleteOutboundConnection")
|
|
2829
2918
|
def delete_outbound_connection(
|
|
2830
2919
|
self, context: RequestContext, connection_id: ConnectionId, **kwargs
|
|
@@ -3009,6 +3098,12 @@ class OpensearchApi:
|
|
|
3009
3098
|
) -> GetDataSourceResponse:
|
|
3010
3099
|
raise NotImplementedError
|
|
3011
3100
|
|
|
3101
|
+
@handler("GetDefaultApplicationSetting")
|
|
3102
|
+
def get_default_application_setting(
|
|
3103
|
+
self, context: RequestContext, **kwargs
|
|
3104
|
+
) -> GetDefaultApplicationSettingResponse:
|
|
3105
|
+
raise NotImplementedError
|
|
3106
|
+
|
|
3012
3107
|
@handler("GetDirectQueryDataSource")
|
|
3013
3108
|
def get_direct_query_data_source(
|
|
3014
3109
|
self, context: RequestContext, data_source_name: DirectQueryDataSourceName, **kwargs
|
|
@@ -3021,6 +3116,12 @@ class OpensearchApi:
|
|
|
3021
3116
|
) -> GetDomainMaintenanceStatusResponse:
|
|
3022
3117
|
raise NotImplementedError
|
|
3023
3118
|
|
|
3119
|
+
@handler("GetIndex")
|
|
3120
|
+
def get_index(
|
|
3121
|
+
self, context: RequestContext, domain_name: DomainName, index_name: IndexName, **kwargs
|
|
3122
|
+
) -> GetIndexResponse:
|
|
3123
|
+
raise NotImplementedError
|
|
3124
|
+
|
|
3024
3125
|
@handler("GetPackageVersionHistory")
|
|
3025
3126
|
def get_package_version_history(
|
|
3026
3127
|
self,
|
|
@@ -3189,6 +3290,12 @@ class OpensearchApi:
|
|
|
3189
3290
|
) -> PurchaseReservedInstanceOfferingResponse:
|
|
3190
3291
|
raise NotImplementedError
|
|
3191
3292
|
|
|
3293
|
+
@handler("PutDefaultApplicationSetting")
|
|
3294
|
+
def put_default_application_setting(
|
|
3295
|
+
self, context: RequestContext, application_arn: ARN, set_as_default: Boolean, **kwargs
|
|
3296
|
+
) -> PutDefaultApplicationSettingResponse:
|
|
3297
|
+
raise NotImplementedError
|
|
3298
|
+
|
|
3192
3299
|
@handler("RejectInboundConnection")
|
|
3193
3300
|
def reject_inbound_connection(
|
|
3194
3301
|
self, context: RequestContext, connection_id: ConnectionId, **kwargs
|
|
@@ -3299,6 +3406,17 @@ class OpensearchApi:
|
|
|
3299
3406
|
) -> UpdateDomainConfigResponse:
|
|
3300
3407
|
raise NotImplementedError
|
|
3301
3408
|
|
|
3409
|
+
@handler("UpdateIndex")
|
|
3410
|
+
def update_index(
|
|
3411
|
+
self,
|
|
3412
|
+
context: RequestContext,
|
|
3413
|
+
domain_name: DomainName,
|
|
3414
|
+
index_name: IndexName,
|
|
3415
|
+
index_schema: IndexSchema,
|
|
3416
|
+
**kwargs,
|
|
3417
|
+
) -> UpdateIndexResponse:
|
|
3418
|
+
raise NotImplementedError
|
|
3419
|
+
|
|
3302
3420
|
@handler("UpdatePackage")
|
|
3303
3421
|
def update_package(
|
|
3304
3422
|
self,
|