mypy-boto3-redshift 1.29.0__py3-none-any.whl → 1.34.0__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 mypy-boto3-redshift might be problematic. Click here for more details.
- mypy_boto3_redshift/__init__.py +4 -0
- mypy_boto3_redshift/__init__.pyi +4 -0
- mypy_boto3_redshift/__main__.py +3 -3
- mypy_boto3_redshift/client.py +81 -9
- mypy_boto3_redshift/client.pyi +81 -9
- mypy_boto3_redshift/literals.py +22 -1
- mypy_boto3_redshift/literals.pyi +22 -1
- mypy_boto3_redshift/paginator.py +22 -0
- mypy_boto3_redshift/paginator.pyi +21 -0
- mypy_boto3_redshift/type_defs.py +168 -2
- mypy_boto3_redshift/type_defs.pyi +168 -2
- mypy_boto3_redshift/version.py +1 -1
- {mypy_boto3_redshift-1.29.0.dist-info → mypy_boto3_redshift-1.34.0.dist-info}/METADATA +8 -4
- mypy_boto3_redshift-1.34.0.dist-info/RECORD +20 -0
- {mypy_boto3_redshift-1.29.0.dist-info → mypy_boto3_redshift-1.34.0.dist-info}/WHEEL +1 -1
- mypy_boto3_redshift-1.29.0.dist-info/RECORD +0 -20
- {mypy_boto3_redshift-1.29.0.dist-info → mypy_boto3_redshift-1.34.0.dist-info}/LICENSE +0 -0
- {mypy_boto3_redshift-1.29.0.dist-info → mypy_boto3_redshift-1.34.0.dist-info}/top_level.txt +0 -0
mypy_boto3_redshift/__init__.py
CHANGED
|
@@ -33,6 +33,7 @@ Usage::
|
|
|
33
33
|
DescribeInboundIntegrationsPaginator,
|
|
34
34
|
DescribeNodeConfigurationOptionsPaginator,
|
|
35
35
|
DescribeOrderableClusterOptionsPaginator,
|
|
36
|
+
DescribeRedshiftIdcApplicationsPaginator,
|
|
36
37
|
DescribeReservedNodeExchangeStatusPaginator,
|
|
37
38
|
DescribeReservedNodeOfferingsPaginator,
|
|
38
39
|
DescribeReservedNodesPaginator,
|
|
@@ -79,6 +80,7 @@ Usage::
|
|
|
79
80
|
describe_inbound_integrations_paginator: DescribeInboundIntegrationsPaginator = client.get_paginator("describe_inbound_integrations")
|
|
80
81
|
describe_node_configuration_options_paginator: DescribeNodeConfigurationOptionsPaginator = client.get_paginator("describe_node_configuration_options")
|
|
81
82
|
describe_orderable_cluster_options_paginator: DescribeOrderableClusterOptionsPaginator = client.get_paginator("describe_orderable_cluster_options")
|
|
83
|
+
describe_redshift_idc_applications_paginator: DescribeRedshiftIdcApplicationsPaginator = client.get_paginator("describe_redshift_idc_applications")
|
|
82
84
|
describe_reserved_node_exchange_status_paginator: DescribeReservedNodeExchangeStatusPaginator = client.get_paginator("describe_reserved_node_exchange_status")
|
|
83
85
|
describe_reserved_node_offerings_paginator: DescribeReservedNodeOfferingsPaginator = client.get_paginator("describe_reserved_node_offerings")
|
|
84
86
|
describe_reserved_nodes_paginator: DescribeReservedNodesPaginator = client.get_paginator("describe_reserved_nodes")
|
|
@@ -118,6 +120,7 @@ from .paginator import (
|
|
|
118
120
|
DescribeInboundIntegrationsPaginator,
|
|
119
121
|
DescribeNodeConfigurationOptionsPaginator,
|
|
120
122
|
DescribeOrderableClusterOptionsPaginator,
|
|
123
|
+
DescribeRedshiftIdcApplicationsPaginator,
|
|
121
124
|
DescribeReservedNodeExchangeStatusPaginator,
|
|
122
125
|
DescribeReservedNodeOfferingsPaginator,
|
|
123
126
|
DescribeReservedNodesPaginator,
|
|
@@ -168,6 +171,7 @@ __all__ = (
|
|
|
168
171
|
"DescribeInboundIntegrationsPaginator",
|
|
169
172
|
"DescribeNodeConfigurationOptionsPaginator",
|
|
170
173
|
"DescribeOrderableClusterOptionsPaginator",
|
|
174
|
+
"DescribeRedshiftIdcApplicationsPaginator",
|
|
171
175
|
"DescribeReservedNodeExchangeStatusPaginator",
|
|
172
176
|
"DescribeReservedNodeOfferingsPaginator",
|
|
173
177
|
"DescribeReservedNodesPaginator",
|
mypy_boto3_redshift/__init__.pyi
CHANGED
|
@@ -33,6 +33,7 @@ Usage::
|
|
|
33
33
|
DescribeInboundIntegrationsPaginator,
|
|
34
34
|
DescribeNodeConfigurationOptionsPaginator,
|
|
35
35
|
DescribeOrderableClusterOptionsPaginator,
|
|
36
|
+
DescribeRedshiftIdcApplicationsPaginator,
|
|
36
37
|
DescribeReservedNodeExchangeStatusPaginator,
|
|
37
38
|
DescribeReservedNodeOfferingsPaginator,
|
|
38
39
|
DescribeReservedNodesPaginator,
|
|
@@ -79,6 +80,7 @@ Usage::
|
|
|
79
80
|
describe_inbound_integrations_paginator: DescribeInboundIntegrationsPaginator = client.get_paginator("describe_inbound_integrations")
|
|
80
81
|
describe_node_configuration_options_paginator: DescribeNodeConfigurationOptionsPaginator = client.get_paginator("describe_node_configuration_options")
|
|
81
82
|
describe_orderable_cluster_options_paginator: DescribeOrderableClusterOptionsPaginator = client.get_paginator("describe_orderable_cluster_options")
|
|
83
|
+
describe_redshift_idc_applications_paginator: DescribeRedshiftIdcApplicationsPaginator = client.get_paginator("describe_redshift_idc_applications")
|
|
82
84
|
describe_reserved_node_exchange_status_paginator: DescribeReservedNodeExchangeStatusPaginator = client.get_paginator("describe_reserved_node_exchange_status")
|
|
83
85
|
describe_reserved_node_offerings_paginator: DescribeReservedNodeOfferingsPaginator = client.get_paginator("describe_reserved_node_offerings")
|
|
84
86
|
describe_reserved_nodes_paginator: DescribeReservedNodesPaginator = client.get_paginator("describe_reserved_nodes")
|
|
@@ -118,6 +120,7 @@ from .paginator import (
|
|
|
118
120
|
DescribeInboundIntegrationsPaginator,
|
|
119
121
|
DescribeNodeConfigurationOptionsPaginator,
|
|
120
122
|
DescribeOrderableClusterOptionsPaginator,
|
|
123
|
+
DescribeRedshiftIdcApplicationsPaginator,
|
|
121
124
|
DescribeReservedNodeExchangeStatusPaginator,
|
|
122
125
|
DescribeReservedNodeOfferingsPaginator,
|
|
123
126
|
DescribeReservedNodesPaginator,
|
|
@@ -167,6 +170,7 @@ __all__ = (
|
|
|
167
170
|
"DescribeInboundIntegrationsPaginator",
|
|
168
171
|
"DescribeNodeConfigurationOptionsPaginator",
|
|
169
172
|
"DescribeOrderableClusterOptionsPaginator",
|
|
173
|
+
"DescribeRedshiftIdcApplicationsPaginator",
|
|
170
174
|
"DescribeReservedNodeExchangeStatusPaginator",
|
|
171
175
|
"DescribeReservedNodeOfferingsPaginator",
|
|
172
176
|
"DescribeReservedNodesPaginator",
|
mypy_boto3_redshift/__main__.py
CHANGED
|
@@ -10,8 +10,8 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.Redshift 1.
|
|
14
|
-
" 7.
|
|
13
|
+
"Type annotations for boto3.Redshift 1.34.0\nVersion: 1.34.0\nBuilder version:"
|
|
14
|
+
" 7.21.0\nDocs: "
|
|
15
15
|
" https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift//\nBoto3 docs: "
|
|
16
16
|
" https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift\nOther"
|
|
17
17
|
" services: https://pypi.org/project/boto3-stubs/\nChangelog: "
|
|
@@ -23,7 +23,7 @@ def print_version() -> None:
|
|
|
23
23
|
"""
|
|
24
24
|
Print package version to stdout.
|
|
25
25
|
"""
|
|
26
|
-
print("1.
|
|
26
|
+
print("1.34.0")
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
def main() -> None:
|
mypy_boto3_redshift/client.py
CHANGED
|
@@ -58,6 +58,7 @@ from .paginator import (
|
|
|
58
58
|
DescribeInboundIntegrationsPaginator,
|
|
59
59
|
DescribeNodeConfigurationOptionsPaginator,
|
|
60
60
|
DescribeOrderableClusterOptionsPaginator,
|
|
61
|
+
DescribeRedshiftIdcApplicationsPaginator,
|
|
61
62
|
DescribeReservedNodeExchangeStatusPaginator,
|
|
62
63
|
DescribeReservedNodeOfferingsPaginator,
|
|
63
64
|
DescribeReservedNodesPaginator,
|
|
@@ -74,6 +75,7 @@ from .type_defs import (
|
|
|
74
75
|
AcceptReservedNodeExchangeOutputMessageTypeDef,
|
|
75
76
|
AccountAttributeListTypeDef,
|
|
76
77
|
AuthorizeClusterSecurityGroupIngressResultTypeDef,
|
|
78
|
+
AuthorizedTokenIssuerTypeDef,
|
|
77
79
|
AuthorizeSnapshotAccessResultTypeDef,
|
|
78
80
|
BatchDeleteClusterSnapshotsResultTypeDef,
|
|
79
81
|
BatchModifyClusterSnapshotsOutputMessageTypeDef,
|
|
@@ -98,6 +100,7 @@ from .type_defs import (
|
|
|
98
100
|
CreateEventSubscriptionResultTypeDef,
|
|
99
101
|
CreateHsmClientCertificateResultTypeDef,
|
|
100
102
|
CreateHsmConfigurationResultTypeDef,
|
|
103
|
+
CreateRedshiftIdcApplicationResultTypeDef,
|
|
101
104
|
CreateSnapshotCopyGrantResultTypeDef,
|
|
102
105
|
CustomDomainAssociationsMessageTypeDef,
|
|
103
106
|
CustomerStorageMessageTypeDef,
|
|
@@ -112,6 +115,7 @@ from .type_defs import (
|
|
|
112
115
|
DescribeDataSharesResultTypeDef,
|
|
113
116
|
DescribeDefaultClusterParametersResultTypeDef,
|
|
114
117
|
DescribePartnersOutputMessageTypeDef,
|
|
118
|
+
DescribeRedshiftIdcApplicationsResultTypeDef,
|
|
115
119
|
DescribeReservedNodeExchangeStatusOutputMessageTypeDef,
|
|
116
120
|
DescribeSnapshotSchedulesOutputMessageTypeDef,
|
|
117
121
|
DisableSnapshotCopyResultTypeDef,
|
|
@@ -142,6 +146,7 @@ from .type_defs import (
|
|
|
142
146
|
ModifyClusterSubnetGroupResultTypeDef,
|
|
143
147
|
ModifyCustomDomainAssociationResultTypeDef,
|
|
144
148
|
ModifyEventSubscriptionResultTypeDef,
|
|
149
|
+
ModifyRedshiftIdcApplicationResultTypeDef,
|
|
145
150
|
ModifySnapshotCopyRetentionPeriodResultTypeDef,
|
|
146
151
|
NodeConfigurationOptionsFilterTypeDef,
|
|
147
152
|
NodeConfigurationOptionsMessageTypeDef,
|
|
@@ -166,6 +171,7 @@ from .type_defs import (
|
|
|
166
171
|
ScheduledActionResponseTypeDef,
|
|
167
172
|
ScheduledActionsMessageTypeDef,
|
|
168
173
|
ScheduledActionTypeTypeDef,
|
|
174
|
+
ServiceIntegrationsUnionTypeDef,
|
|
169
175
|
SnapshotCopyGrantMessageTypeDef,
|
|
170
176
|
SnapshotMessageTypeDef,
|
|
171
177
|
SnapshotScheduleResponseTypeDef,
|
|
@@ -236,6 +242,7 @@ class Exceptions:
|
|
|
236
242
|
CopyToRegionDisabledFault: Type[BotocoreClientError]
|
|
237
243
|
CustomCnameAssociationFault: Type[BotocoreClientError]
|
|
238
244
|
CustomDomainAssociationNotFoundFault: Type[BotocoreClientError]
|
|
245
|
+
DependentServiceAccessDeniedFault: Type[BotocoreClientError]
|
|
239
246
|
DependentServiceRequestThrottlingFault: Type[BotocoreClientError]
|
|
240
247
|
DependentServiceUnavailableFault: Type[BotocoreClientError]
|
|
241
248
|
EndpointAlreadyExistsFault: Type[BotocoreClientError]
|
|
@@ -293,6 +300,9 @@ class Exceptions:
|
|
|
293
300
|
NumberOfNodesPerClusterLimitExceededFault: Type[BotocoreClientError]
|
|
294
301
|
NumberOfNodesQuotaExceededFault: Type[BotocoreClientError]
|
|
295
302
|
PartnerNotFoundFault: Type[BotocoreClientError]
|
|
303
|
+
RedshiftIdcApplicationAlreadyExistsFault: Type[BotocoreClientError]
|
|
304
|
+
RedshiftIdcApplicationNotExistsFault: Type[BotocoreClientError]
|
|
305
|
+
RedshiftIdcApplicationQuotaExceededFault: Type[BotocoreClientError]
|
|
296
306
|
ReservedNodeAlreadyExistsFault: Type[BotocoreClientError]
|
|
297
307
|
ReservedNodeAlreadyMigratedFault: Type[BotocoreClientError]
|
|
298
308
|
ReservedNodeExchangeNotFoundFault: Type[BotocoreClientError]
|
|
@@ -383,7 +393,8 @@ class RedshiftClient(BaseClient):
|
|
|
383
393
|
DataShareArn: str,
|
|
384
394
|
AssociateEntireAccount: bool = ...,
|
|
385
395
|
ConsumerArn: str = ...,
|
|
386
|
-
ConsumerRegion: str =
|
|
396
|
+
ConsumerRegion: str = ...,
|
|
397
|
+
AllowWrites: bool = ...
|
|
387
398
|
) -> DataShareResponseTypeDef:
|
|
388
399
|
"""
|
|
389
400
|
From a datashare consumer account, associates a datashare with the account
|
|
@@ -410,7 +421,7 @@ class RedshiftClient(BaseClient):
|
|
|
410
421
|
"""
|
|
411
422
|
|
|
412
423
|
def authorize_data_share(
|
|
413
|
-
self, *, DataShareArn: str, ConsumerIdentifier: str
|
|
424
|
+
self, *, DataShareArn: str, ConsumerIdentifier: str, AllowWrites: bool = ...
|
|
414
425
|
) -> DataShareResponseTypeDef:
|
|
415
426
|
"""
|
|
416
427
|
From a data producer account, authorizes the sharing of a datashare with one or
|
|
@@ -561,7 +572,8 @@ class RedshiftClient(BaseClient):
|
|
|
561
572
|
ManageMasterPassword: bool = ...,
|
|
562
573
|
MasterPasswordSecretKmsKeyId: str = ...,
|
|
563
574
|
IpAddressType: str = ...,
|
|
564
|
-
MultiAZ: bool =
|
|
575
|
+
MultiAZ: bool = ...,
|
|
576
|
+
RedshiftIdcApplicationArn: str = ...
|
|
565
577
|
) -> CreateClusterResultTypeDef:
|
|
566
578
|
"""
|
|
567
579
|
Creates a new cluster with the specified parameters.
|
|
@@ -704,6 +716,24 @@ class RedshiftClient(BaseClient):
|
|
|
704
716
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_hsm_configuration)
|
|
705
717
|
"""
|
|
706
718
|
|
|
719
|
+
def create_redshift_idc_application(
|
|
720
|
+
self,
|
|
721
|
+
*,
|
|
722
|
+
IdcInstanceArn: str,
|
|
723
|
+
RedshiftIdcApplicationName: str,
|
|
724
|
+
IdcDisplayName: str,
|
|
725
|
+
IamRoleArn: str,
|
|
726
|
+
IdentityNamespace: str = ...,
|
|
727
|
+
AuthorizedTokenIssuerList: Sequence[AuthorizedTokenIssuerTypeDef] = ...,
|
|
728
|
+
ServiceIntegrations: Sequence[ServiceIntegrationsUnionTypeDef] = ...
|
|
729
|
+
) -> CreateRedshiftIdcApplicationResultTypeDef:
|
|
730
|
+
"""
|
|
731
|
+
Creates an Amazon Redshift application for use with IAM Identity Center.
|
|
732
|
+
|
|
733
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.create_redshift_idc_application)
|
|
734
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_redshift_idc_application)
|
|
735
|
+
"""
|
|
736
|
+
|
|
707
737
|
def create_scheduled_action(
|
|
708
738
|
self,
|
|
709
739
|
*,
|
|
@@ -861,7 +891,7 @@ class RedshiftClient(BaseClient):
|
|
|
861
891
|
"""
|
|
862
892
|
|
|
863
893
|
def delete_custom_domain_association(
|
|
864
|
-
self, *, ClusterIdentifier: str
|
|
894
|
+
self, *, ClusterIdentifier: str, CustomDomainName: str
|
|
865
895
|
) -> EmptyResponseMetadataTypeDef:
|
|
866
896
|
"""
|
|
867
897
|
Contains information about deleting a custom domain association for a cluster.
|
|
@@ -916,6 +946,16 @@ class RedshiftClient(BaseClient):
|
|
|
916
946
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#delete_partner)
|
|
917
947
|
"""
|
|
918
948
|
|
|
949
|
+
def delete_redshift_idc_application(
|
|
950
|
+
self, *, RedshiftIdcApplicationArn: str
|
|
951
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
952
|
+
"""
|
|
953
|
+
Deletes an Amazon Redshift IAM Identity Center application.
|
|
954
|
+
|
|
955
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.delete_redshift_idc_application)
|
|
956
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#delete_redshift_idc_application)
|
|
957
|
+
"""
|
|
958
|
+
|
|
919
959
|
def delete_resource_policy(self, *, ResourceArn: str) -> EmptyResponseMetadataTypeDef:
|
|
920
960
|
"""
|
|
921
961
|
Deletes the resource policy for a specified resource.
|
|
@@ -1397,6 +1437,16 @@ class RedshiftClient(BaseClient):
|
|
|
1397
1437
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_partners)
|
|
1398
1438
|
"""
|
|
1399
1439
|
|
|
1440
|
+
def describe_redshift_idc_applications(
|
|
1441
|
+
self, *, RedshiftIdcApplicationArn: str = ..., MaxRecords: int = ..., Marker: str = ...
|
|
1442
|
+
) -> DescribeRedshiftIdcApplicationsResultTypeDef:
|
|
1443
|
+
"""
|
|
1444
|
+
Lists the Amazon Redshift IAM Identity Center applications.
|
|
1445
|
+
|
|
1446
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_redshift_idc_applications)
|
|
1447
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_redshift_idc_applications)
|
|
1448
|
+
"""
|
|
1449
|
+
|
|
1400
1450
|
def describe_reserved_node_exchange_status(
|
|
1401
1451
|
self,
|
|
1402
1452
|
*,
|
|
@@ -1882,11 +1932,7 @@ class RedshiftClient(BaseClient):
|
|
|
1882
1932
|
"""
|
|
1883
1933
|
|
|
1884
1934
|
def modify_custom_domain_association(
|
|
1885
|
-
self,
|
|
1886
|
-
*,
|
|
1887
|
-
ClusterIdentifier: str,
|
|
1888
|
-
CustomDomainName: str = ...,
|
|
1889
|
-
CustomDomainCertificateArn: str = ...
|
|
1935
|
+
self, *, CustomDomainName: str, CustomDomainCertificateArn: str, ClusterIdentifier: str
|
|
1890
1936
|
) -> ModifyCustomDomainAssociationResultTypeDef:
|
|
1891
1937
|
"""
|
|
1892
1938
|
Contains information for changing a custom domain association.
|
|
@@ -1923,6 +1969,23 @@ class RedshiftClient(BaseClient):
|
|
|
1923
1969
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#modify_event_subscription)
|
|
1924
1970
|
"""
|
|
1925
1971
|
|
|
1972
|
+
def modify_redshift_idc_application(
|
|
1973
|
+
self,
|
|
1974
|
+
*,
|
|
1975
|
+
RedshiftIdcApplicationArn: str,
|
|
1976
|
+
IdentityNamespace: str = ...,
|
|
1977
|
+
IamRoleArn: str = ...,
|
|
1978
|
+
IdcDisplayName: str = ...,
|
|
1979
|
+
AuthorizedTokenIssuerList: Sequence[AuthorizedTokenIssuerTypeDef] = ...,
|
|
1980
|
+
ServiceIntegrations: Sequence[ServiceIntegrationsUnionTypeDef] = ...
|
|
1981
|
+
) -> ModifyRedshiftIdcApplicationResultTypeDef:
|
|
1982
|
+
"""
|
|
1983
|
+
Changes an existing Amazon Redshift IAM Identity Center application.
|
|
1984
|
+
|
|
1985
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.modify_redshift_idc_application)
|
|
1986
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#modify_redshift_idc_application)
|
|
1987
|
+
"""
|
|
1988
|
+
|
|
1926
1989
|
def modify_scheduled_action(
|
|
1927
1990
|
self,
|
|
1928
1991
|
*,
|
|
@@ -2411,6 +2474,15 @@ class RedshiftClient(BaseClient):
|
|
|
2411
2474
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_paginator)
|
|
2412
2475
|
"""
|
|
2413
2476
|
|
|
2477
|
+
@overload
|
|
2478
|
+
def get_paginator(
|
|
2479
|
+
self, operation_name: Literal["describe_redshift_idc_applications"]
|
|
2480
|
+
) -> DescribeRedshiftIdcApplicationsPaginator:
|
|
2481
|
+
"""
|
|
2482
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.get_paginator)
|
|
2483
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_paginator)
|
|
2484
|
+
"""
|
|
2485
|
+
|
|
2414
2486
|
@overload
|
|
2415
2487
|
def get_paginator(
|
|
2416
2488
|
self, operation_name: Literal["describe_reserved_node_exchange_status"]
|
mypy_boto3_redshift/client.pyi
CHANGED
|
@@ -58,6 +58,7 @@ from .paginator import (
|
|
|
58
58
|
DescribeInboundIntegrationsPaginator,
|
|
59
59
|
DescribeNodeConfigurationOptionsPaginator,
|
|
60
60
|
DescribeOrderableClusterOptionsPaginator,
|
|
61
|
+
DescribeRedshiftIdcApplicationsPaginator,
|
|
61
62
|
DescribeReservedNodeExchangeStatusPaginator,
|
|
62
63
|
DescribeReservedNodeOfferingsPaginator,
|
|
63
64
|
DescribeReservedNodesPaginator,
|
|
@@ -74,6 +75,7 @@ from .type_defs import (
|
|
|
74
75
|
AcceptReservedNodeExchangeOutputMessageTypeDef,
|
|
75
76
|
AccountAttributeListTypeDef,
|
|
76
77
|
AuthorizeClusterSecurityGroupIngressResultTypeDef,
|
|
78
|
+
AuthorizedTokenIssuerTypeDef,
|
|
77
79
|
AuthorizeSnapshotAccessResultTypeDef,
|
|
78
80
|
BatchDeleteClusterSnapshotsResultTypeDef,
|
|
79
81
|
BatchModifyClusterSnapshotsOutputMessageTypeDef,
|
|
@@ -98,6 +100,7 @@ from .type_defs import (
|
|
|
98
100
|
CreateEventSubscriptionResultTypeDef,
|
|
99
101
|
CreateHsmClientCertificateResultTypeDef,
|
|
100
102
|
CreateHsmConfigurationResultTypeDef,
|
|
103
|
+
CreateRedshiftIdcApplicationResultTypeDef,
|
|
101
104
|
CreateSnapshotCopyGrantResultTypeDef,
|
|
102
105
|
CustomDomainAssociationsMessageTypeDef,
|
|
103
106
|
CustomerStorageMessageTypeDef,
|
|
@@ -112,6 +115,7 @@ from .type_defs import (
|
|
|
112
115
|
DescribeDataSharesResultTypeDef,
|
|
113
116
|
DescribeDefaultClusterParametersResultTypeDef,
|
|
114
117
|
DescribePartnersOutputMessageTypeDef,
|
|
118
|
+
DescribeRedshiftIdcApplicationsResultTypeDef,
|
|
115
119
|
DescribeReservedNodeExchangeStatusOutputMessageTypeDef,
|
|
116
120
|
DescribeSnapshotSchedulesOutputMessageTypeDef,
|
|
117
121
|
DisableSnapshotCopyResultTypeDef,
|
|
@@ -142,6 +146,7 @@ from .type_defs import (
|
|
|
142
146
|
ModifyClusterSubnetGroupResultTypeDef,
|
|
143
147
|
ModifyCustomDomainAssociationResultTypeDef,
|
|
144
148
|
ModifyEventSubscriptionResultTypeDef,
|
|
149
|
+
ModifyRedshiftIdcApplicationResultTypeDef,
|
|
145
150
|
ModifySnapshotCopyRetentionPeriodResultTypeDef,
|
|
146
151
|
NodeConfigurationOptionsFilterTypeDef,
|
|
147
152
|
NodeConfigurationOptionsMessageTypeDef,
|
|
@@ -166,6 +171,7 @@ from .type_defs import (
|
|
|
166
171
|
ScheduledActionResponseTypeDef,
|
|
167
172
|
ScheduledActionsMessageTypeDef,
|
|
168
173
|
ScheduledActionTypeTypeDef,
|
|
174
|
+
ServiceIntegrationsUnionTypeDef,
|
|
169
175
|
SnapshotCopyGrantMessageTypeDef,
|
|
170
176
|
SnapshotMessageTypeDef,
|
|
171
177
|
SnapshotScheduleResponseTypeDef,
|
|
@@ -233,6 +239,7 @@ class Exceptions:
|
|
|
233
239
|
CopyToRegionDisabledFault: Type[BotocoreClientError]
|
|
234
240
|
CustomCnameAssociationFault: Type[BotocoreClientError]
|
|
235
241
|
CustomDomainAssociationNotFoundFault: Type[BotocoreClientError]
|
|
242
|
+
DependentServiceAccessDeniedFault: Type[BotocoreClientError]
|
|
236
243
|
DependentServiceRequestThrottlingFault: Type[BotocoreClientError]
|
|
237
244
|
DependentServiceUnavailableFault: Type[BotocoreClientError]
|
|
238
245
|
EndpointAlreadyExistsFault: Type[BotocoreClientError]
|
|
@@ -290,6 +297,9 @@ class Exceptions:
|
|
|
290
297
|
NumberOfNodesPerClusterLimitExceededFault: Type[BotocoreClientError]
|
|
291
298
|
NumberOfNodesQuotaExceededFault: Type[BotocoreClientError]
|
|
292
299
|
PartnerNotFoundFault: Type[BotocoreClientError]
|
|
300
|
+
RedshiftIdcApplicationAlreadyExistsFault: Type[BotocoreClientError]
|
|
301
|
+
RedshiftIdcApplicationNotExistsFault: Type[BotocoreClientError]
|
|
302
|
+
RedshiftIdcApplicationQuotaExceededFault: Type[BotocoreClientError]
|
|
293
303
|
ReservedNodeAlreadyExistsFault: Type[BotocoreClientError]
|
|
294
304
|
ReservedNodeAlreadyMigratedFault: Type[BotocoreClientError]
|
|
295
305
|
ReservedNodeExchangeNotFoundFault: Type[BotocoreClientError]
|
|
@@ -379,7 +389,8 @@ class RedshiftClient(BaseClient):
|
|
|
379
389
|
DataShareArn: str,
|
|
380
390
|
AssociateEntireAccount: bool = ...,
|
|
381
391
|
ConsumerArn: str = ...,
|
|
382
|
-
ConsumerRegion: str =
|
|
392
|
+
ConsumerRegion: str = ...,
|
|
393
|
+
AllowWrites: bool = ...
|
|
383
394
|
) -> DataShareResponseTypeDef:
|
|
384
395
|
"""
|
|
385
396
|
From a datashare consumer account, associates a datashare with the account
|
|
@@ -406,7 +417,7 @@ class RedshiftClient(BaseClient):
|
|
|
406
417
|
"""
|
|
407
418
|
|
|
408
419
|
def authorize_data_share(
|
|
409
|
-
self, *, DataShareArn: str, ConsumerIdentifier: str
|
|
420
|
+
self, *, DataShareArn: str, ConsumerIdentifier: str, AllowWrites: bool = ...
|
|
410
421
|
) -> DataShareResponseTypeDef:
|
|
411
422
|
"""
|
|
412
423
|
From a data producer account, authorizes the sharing of a datashare with one or
|
|
@@ -557,7 +568,8 @@ class RedshiftClient(BaseClient):
|
|
|
557
568
|
ManageMasterPassword: bool = ...,
|
|
558
569
|
MasterPasswordSecretKmsKeyId: str = ...,
|
|
559
570
|
IpAddressType: str = ...,
|
|
560
|
-
MultiAZ: bool =
|
|
571
|
+
MultiAZ: bool = ...,
|
|
572
|
+
RedshiftIdcApplicationArn: str = ...
|
|
561
573
|
) -> CreateClusterResultTypeDef:
|
|
562
574
|
"""
|
|
563
575
|
Creates a new cluster with the specified parameters.
|
|
@@ -700,6 +712,24 @@ class RedshiftClient(BaseClient):
|
|
|
700
712
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_hsm_configuration)
|
|
701
713
|
"""
|
|
702
714
|
|
|
715
|
+
def create_redshift_idc_application(
|
|
716
|
+
self,
|
|
717
|
+
*,
|
|
718
|
+
IdcInstanceArn: str,
|
|
719
|
+
RedshiftIdcApplicationName: str,
|
|
720
|
+
IdcDisplayName: str,
|
|
721
|
+
IamRoleArn: str,
|
|
722
|
+
IdentityNamespace: str = ...,
|
|
723
|
+
AuthorizedTokenIssuerList: Sequence[AuthorizedTokenIssuerTypeDef] = ...,
|
|
724
|
+
ServiceIntegrations: Sequence[ServiceIntegrationsUnionTypeDef] = ...
|
|
725
|
+
) -> CreateRedshiftIdcApplicationResultTypeDef:
|
|
726
|
+
"""
|
|
727
|
+
Creates an Amazon Redshift application for use with IAM Identity Center.
|
|
728
|
+
|
|
729
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.create_redshift_idc_application)
|
|
730
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_redshift_idc_application)
|
|
731
|
+
"""
|
|
732
|
+
|
|
703
733
|
def create_scheduled_action(
|
|
704
734
|
self,
|
|
705
735
|
*,
|
|
@@ -857,7 +887,7 @@ class RedshiftClient(BaseClient):
|
|
|
857
887
|
"""
|
|
858
888
|
|
|
859
889
|
def delete_custom_domain_association(
|
|
860
|
-
self, *, ClusterIdentifier: str
|
|
890
|
+
self, *, ClusterIdentifier: str, CustomDomainName: str
|
|
861
891
|
) -> EmptyResponseMetadataTypeDef:
|
|
862
892
|
"""
|
|
863
893
|
Contains information about deleting a custom domain association for a cluster.
|
|
@@ -912,6 +942,16 @@ class RedshiftClient(BaseClient):
|
|
|
912
942
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#delete_partner)
|
|
913
943
|
"""
|
|
914
944
|
|
|
945
|
+
def delete_redshift_idc_application(
|
|
946
|
+
self, *, RedshiftIdcApplicationArn: str
|
|
947
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
948
|
+
"""
|
|
949
|
+
Deletes an Amazon Redshift IAM Identity Center application.
|
|
950
|
+
|
|
951
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.delete_redshift_idc_application)
|
|
952
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#delete_redshift_idc_application)
|
|
953
|
+
"""
|
|
954
|
+
|
|
915
955
|
def delete_resource_policy(self, *, ResourceArn: str) -> EmptyResponseMetadataTypeDef:
|
|
916
956
|
"""
|
|
917
957
|
Deletes the resource policy for a specified resource.
|
|
@@ -1393,6 +1433,16 @@ class RedshiftClient(BaseClient):
|
|
|
1393
1433
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_partners)
|
|
1394
1434
|
"""
|
|
1395
1435
|
|
|
1436
|
+
def describe_redshift_idc_applications(
|
|
1437
|
+
self, *, RedshiftIdcApplicationArn: str = ..., MaxRecords: int = ..., Marker: str = ...
|
|
1438
|
+
) -> DescribeRedshiftIdcApplicationsResultTypeDef:
|
|
1439
|
+
"""
|
|
1440
|
+
Lists the Amazon Redshift IAM Identity Center applications.
|
|
1441
|
+
|
|
1442
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_redshift_idc_applications)
|
|
1443
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_redshift_idc_applications)
|
|
1444
|
+
"""
|
|
1445
|
+
|
|
1396
1446
|
def describe_reserved_node_exchange_status(
|
|
1397
1447
|
self,
|
|
1398
1448
|
*,
|
|
@@ -1878,11 +1928,7 @@ class RedshiftClient(BaseClient):
|
|
|
1878
1928
|
"""
|
|
1879
1929
|
|
|
1880
1930
|
def modify_custom_domain_association(
|
|
1881
|
-
self,
|
|
1882
|
-
*,
|
|
1883
|
-
ClusterIdentifier: str,
|
|
1884
|
-
CustomDomainName: str = ...,
|
|
1885
|
-
CustomDomainCertificateArn: str = ...
|
|
1931
|
+
self, *, CustomDomainName: str, CustomDomainCertificateArn: str, ClusterIdentifier: str
|
|
1886
1932
|
) -> ModifyCustomDomainAssociationResultTypeDef:
|
|
1887
1933
|
"""
|
|
1888
1934
|
Contains information for changing a custom domain association.
|
|
@@ -1919,6 +1965,23 @@ class RedshiftClient(BaseClient):
|
|
|
1919
1965
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#modify_event_subscription)
|
|
1920
1966
|
"""
|
|
1921
1967
|
|
|
1968
|
+
def modify_redshift_idc_application(
|
|
1969
|
+
self,
|
|
1970
|
+
*,
|
|
1971
|
+
RedshiftIdcApplicationArn: str,
|
|
1972
|
+
IdentityNamespace: str = ...,
|
|
1973
|
+
IamRoleArn: str = ...,
|
|
1974
|
+
IdcDisplayName: str = ...,
|
|
1975
|
+
AuthorizedTokenIssuerList: Sequence[AuthorizedTokenIssuerTypeDef] = ...,
|
|
1976
|
+
ServiceIntegrations: Sequence[ServiceIntegrationsUnionTypeDef] = ...
|
|
1977
|
+
) -> ModifyRedshiftIdcApplicationResultTypeDef:
|
|
1978
|
+
"""
|
|
1979
|
+
Changes an existing Amazon Redshift IAM Identity Center application.
|
|
1980
|
+
|
|
1981
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.modify_redshift_idc_application)
|
|
1982
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#modify_redshift_idc_application)
|
|
1983
|
+
"""
|
|
1984
|
+
|
|
1922
1985
|
def modify_scheduled_action(
|
|
1923
1986
|
self,
|
|
1924
1987
|
*,
|
|
@@ -2407,6 +2470,15 @@ class RedshiftClient(BaseClient):
|
|
|
2407
2470
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_paginator)
|
|
2408
2471
|
"""
|
|
2409
2472
|
|
|
2473
|
+
@overload
|
|
2474
|
+
def get_paginator(
|
|
2475
|
+
self, operation_name: Literal["describe_redshift_idc_applications"]
|
|
2476
|
+
) -> DescribeRedshiftIdcApplicationsPaginator:
|
|
2477
|
+
"""
|
|
2478
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.get_paginator)
|
|
2479
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_paginator)
|
|
2480
|
+
"""
|
|
2481
|
+
|
|
2410
2482
|
@overload
|
|
2411
2483
|
def get_paginator(
|
|
2412
2484
|
self, operation_name: Literal["describe_reserved_node_exchange_status"]
|
mypy_boto3_redshift/literals.py
CHANGED
|
@@ -54,6 +54,7 @@ __all__ = (
|
|
|
54
54
|
"DescribeInboundIntegrationsPaginatorName",
|
|
55
55
|
"DescribeNodeConfigurationOptionsPaginatorName",
|
|
56
56
|
"DescribeOrderableClusterOptionsPaginatorName",
|
|
57
|
+
"DescribeRedshiftIdcApplicationsPaginatorName",
|
|
57
58
|
"DescribeReservedNodeExchangeStatusPaginatorName",
|
|
58
59
|
"DescribeReservedNodeOfferingsPaginatorName",
|
|
59
60
|
"DescribeReservedNodesPaginatorName",
|
|
@@ -78,6 +79,7 @@ __all__ = (
|
|
|
78
79
|
"ScheduledActionFilterNameType",
|
|
79
80
|
"ScheduledActionStateType",
|
|
80
81
|
"ScheduledActionTypeValuesType",
|
|
82
|
+
"ServiceAuthorizationType",
|
|
81
83
|
"SnapshotAttributeToSortByType",
|
|
82
84
|
"SnapshotAvailableWaiterName",
|
|
83
85
|
"SortByOrderType",
|
|
@@ -134,6 +136,7 @@ DescribeHsmConfigurationsPaginatorName = Literal["describe_hsm_configurations"]
|
|
|
134
136
|
DescribeInboundIntegrationsPaginatorName = Literal["describe_inbound_integrations"]
|
|
135
137
|
DescribeNodeConfigurationOptionsPaginatorName = Literal["describe_node_configuration_options"]
|
|
136
138
|
DescribeOrderableClusterOptionsPaginatorName = Literal["describe_orderable_cluster_options"]
|
|
139
|
+
DescribeRedshiftIdcApplicationsPaginatorName = Literal["describe_redshift_idc_applications"]
|
|
137
140
|
DescribeReservedNodeExchangeStatusPaginatorName = Literal["describe_reserved_node_exchange_status"]
|
|
138
141
|
DescribeReservedNodeOfferingsPaginatorName = Literal["describe_reserved_node_offerings"]
|
|
139
142
|
DescribeReservedNodesPaginatorName = Literal["describe_reserved_nodes"]
|
|
@@ -164,6 +167,7 @@ ScheduleStateType = Literal["ACTIVE", "FAILED", "MODIFYING"]
|
|
|
164
167
|
ScheduledActionFilterNameType = Literal["cluster-identifier", "iam-role"]
|
|
165
168
|
ScheduledActionStateType = Literal["ACTIVE", "DISABLED"]
|
|
166
169
|
ScheduledActionTypeValuesType = Literal["PauseCluster", "ResizeCluster", "ResumeCluster"]
|
|
170
|
+
ServiceAuthorizationType = Literal["Disabled", "Enabled"]
|
|
167
171
|
SnapshotAttributeToSortByType = Literal["CREATE_TIME", "SOURCE_TYPE", "TOTAL_SIZE"]
|
|
168
172
|
SnapshotAvailableWaiterName = Literal["snapshot_available"]
|
|
169
173
|
SortByOrderType = Literal["ASC", "DESC"]
|
|
@@ -213,11 +217,15 @@ ServiceName = Literal[
|
|
|
213
217
|
"auditmanager",
|
|
214
218
|
"autoscaling",
|
|
215
219
|
"autoscaling-plans",
|
|
220
|
+
"b2bi",
|
|
216
221
|
"backup",
|
|
217
222
|
"backup-gateway",
|
|
218
223
|
"backupstorage",
|
|
219
224
|
"batch",
|
|
225
|
+
"bcm-data-exports",
|
|
220
226
|
"bedrock",
|
|
227
|
+
"bedrock-agent",
|
|
228
|
+
"bedrock-agent-runtime",
|
|
221
229
|
"bedrock-runtime",
|
|
222
230
|
"billingconductor",
|
|
223
231
|
"braket",
|
|
@@ -230,11 +238,13 @@ ServiceName = Literal[
|
|
|
230
238
|
"chime-sdk-messaging",
|
|
231
239
|
"chime-sdk-voice",
|
|
232
240
|
"cleanrooms",
|
|
241
|
+
"cleanroomsml",
|
|
233
242
|
"cloud9",
|
|
234
243
|
"cloudcontrol",
|
|
235
244
|
"clouddirectory",
|
|
236
245
|
"cloudformation",
|
|
237
246
|
"cloudfront",
|
|
247
|
+
"cloudfront-keyvaluestore",
|
|
238
248
|
"cloudhsm",
|
|
239
249
|
"cloudhsmv2",
|
|
240
250
|
"cloudsearch",
|
|
@@ -267,6 +277,7 @@ ServiceName = Literal[
|
|
|
267
277
|
"connectcases",
|
|
268
278
|
"connectparticipant",
|
|
269
279
|
"controltower",
|
|
280
|
+
"cost-optimization-hub",
|
|
270
281
|
"cur",
|
|
271
282
|
"customer-profiles",
|
|
272
283
|
"databrew",
|
|
@@ -296,6 +307,7 @@ ServiceName = Literal[
|
|
|
296
307
|
"ecs",
|
|
297
308
|
"efs",
|
|
298
309
|
"eks",
|
|
310
|
+
"eks-auth",
|
|
299
311
|
"elastic-inference",
|
|
300
312
|
"elasticache",
|
|
301
313
|
"elasticbeanstalk",
|
|
@@ -317,6 +329,7 @@ ServiceName = Literal[
|
|
|
317
329
|
"forecast",
|
|
318
330
|
"forecastquery",
|
|
319
331
|
"frauddetector",
|
|
332
|
+
"freetier",
|
|
320
333
|
"fsx",
|
|
321
334
|
"gamelift",
|
|
322
335
|
"glacier",
|
|
@@ -335,6 +348,7 @@ ServiceName = Literal[
|
|
|
335
348
|
"imagebuilder",
|
|
336
349
|
"importexport",
|
|
337
350
|
"inspector",
|
|
351
|
+
"inspector-scan",
|
|
338
352
|
"inspector2",
|
|
339
353
|
"internetmonitor",
|
|
340
354
|
"iot",
|
|
@@ -389,11 +403,12 @@ ServiceName = Literal[
|
|
|
389
403
|
"lookoutvision",
|
|
390
404
|
"m2",
|
|
391
405
|
"machinelearning",
|
|
392
|
-
"macie",
|
|
393
406
|
"macie2",
|
|
394
407
|
"managedblockchain",
|
|
395
408
|
"managedblockchain-query",
|
|
409
|
+
"marketplace-agreement",
|
|
396
410
|
"marketplace-catalog",
|
|
411
|
+
"marketplace-deployment",
|
|
397
412
|
"marketplace-entitlement",
|
|
398
413
|
"marketplacecommerceanalytics",
|
|
399
414
|
"mediaconnect",
|
|
@@ -449,6 +464,8 @@ ServiceName = Literal[
|
|
|
449
464
|
"pricing",
|
|
450
465
|
"privatenetworks",
|
|
451
466
|
"proton",
|
|
467
|
+
"qbusiness",
|
|
468
|
+
"qconnect",
|
|
452
469
|
"qldb",
|
|
453
470
|
"qldb-session",
|
|
454
471
|
"quicksight",
|
|
@@ -460,6 +477,7 @@ ServiceName = Literal[
|
|
|
460
477
|
"redshift-data",
|
|
461
478
|
"redshift-serverless",
|
|
462
479
|
"rekognition",
|
|
480
|
+
"repostspace",
|
|
463
481
|
"resiliencehub",
|
|
464
482
|
"resource-explorer-2",
|
|
465
483
|
"resource-groups",
|
|
@@ -527,6 +545,7 @@ ServiceName = Literal[
|
|
|
527
545
|
"transcribe",
|
|
528
546
|
"transfer",
|
|
529
547
|
"translate",
|
|
548
|
+
"trustedadvisor",
|
|
530
549
|
"verifiedpermissions",
|
|
531
550
|
"voice-id",
|
|
532
551
|
"vpc-lattice",
|
|
@@ -540,6 +559,7 @@ ServiceName = Literal[
|
|
|
540
559
|
"workmail",
|
|
541
560
|
"workmailmessageflow",
|
|
542
561
|
"workspaces",
|
|
562
|
+
"workspaces-thin-client",
|
|
543
563
|
"workspaces-web",
|
|
544
564
|
"xray",
|
|
545
565
|
]
|
|
@@ -579,6 +599,7 @@ PaginatorName = Literal[
|
|
|
579
599
|
"describe_inbound_integrations",
|
|
580
600
|
"describe_node_configuration_options",
|
|
581
601
|
"describe_orderable_cluster_options",
|
|
602
|
+
"describe_redshift_idc_applications",
|
|
582
603
|
"describe_reserved_node_exchange_status",
|
|
583
604
|
"describe_reserved_node_offerings",
|
|
584
605
|
"describe_reserved_nodes",
|