types-boto3-redshift 1.40.64__py3-none-any.whl → 1.41.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.
- types_boto3_redshift/__main__.py +4 -4
- types_boto3_redshift/client.py +158 -148
- types_boto3_redshift/client.pyi +158 -148
- types_boto3_redshift/literals.py +3 -0
- types_boto3_redshift/literals.pyi +3 -0
- types_boto3_redshift/type_defs.py +139 -132
- types_boto3_redshift/type_defs.pyi +137 -132
- types_boto3_redshift/version.py +1 -1
- {types_boto3_redshift-1.40.64.dist-info → types_boto3_redshift-1.41.0.dist-info}/METADATA +11 -25
- types_boto3_redshift-1.41.0.dist-info/RECORD +20 -0
- types_boto3_redshift-1.40.64.dist-info/RECORD +0 -20
- {types_boto3_redshift-1.40.64.dist-info → types_boto3_redshift-1.41.0.dist-info}/WHEEL +0 -0
- {types_boto3_redshift-1.40.64.dist-info → types_boto3_redshift-1.41.0.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_redshift-1.40.64.dist-info → types_boto3_redshift-1.41.0.dist-info}/top_level.txt +0 -0
types_boto3_redshift/client.pyi
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -218,6 +219,8 @@ from .type_defs import (
|
|
|
218
219
|
FailoverPrimaryComputeResultTypeDef,
|
|
219
220
|
GetClusterCredentialsMessageTypeDef,
|
|
220
221
|
GetClusterCredentialsWithIAMMessageTypeDef,
|
|
222
|
+
GetIdentityCenterAuthTokenRequestTypeDef,
|
|
223
|
+
GetIdentityCenterAuthTokenResponseTypeDef,
|
|
221
224
|
GetReservedNodeExchangeConfigurationOptionsInputMessageTypeDef,
|
|
222
225
|
GetReservedNodeExchangeConfigurationOptionsOutputMessageTypeDef,
|
|
223
226
|
GetReservedNodeExchangeOfferingsInputMessageTypeDef,
|
|
@@ -317,11 +320,6 @@ from .waiter import (
|
|
|
317
320
|
SnapshotAvailableWaiter,
|
|
318
321
|
)
|
|
319
322
|
|
|
320
|
-
if sys.version_info >= (3, 9):
|
|
321
|
-
from builtins import type as Type
|
|
322
|
-
from collections.abc import Mapping
|
|
323
|
-
else:
|
|
324
|
-
from typing import Mapping, Type
|
|
325
323
|
if sys.version_info >= (3, 12):
|
|
326
324
|
from typing import Literal, Unpack
|
|
327
325
|
else:
|
|
@@ -330,149 +328,150 @@ else:
|
|
|
330
328
|
__all__ = ("RedshiftClient",)
|
|
331
329
|
|
|
332
330
|
class Exceptions(BaseClientExceptions):
|
|
333
|
-
AccessToClusterDeniedFault:
|
|
334
|
-
AccessToSnapshotDeniedFault:
|
|
335
|
-
AuthenticationProfileAlreadyExistsFault:
|
|
336
|
-
AuthenticationProfileNotFoundFault:
|
|
337
|
-
AuthenticationProfileQuotaExceededFault:
|
|
338
|
-
AuthorizationAlreadyExistsFault:
|
|
339
|
-
AuthorizationNotFoundFault:
|
|
340
|
-
AuthorizationQuotaExceededFault:
|
|
341
|
-
BatchDeleteRequestSizeExceededFault:
|
|
342
|
-
BatchModifyClusterSnapshotsLimitExceededFault:
|
|
343
|
-
BucketNotFoundFault:
|
|
344
|
-
ClientError:
|
|
345
|
-
ClusterAlreadyExistsFault:
|
|
346
|
-
ClusterNotFoundFault:
|
|
347
|
-
ClusterOnLatestRevisionFault:
|
|
348
|
-
ClusterParameterGroupAlreadyExistsFault:
|
|
349
|
-
ClusterParameterGroupNotFoundFault:
|
|
350
|
-
ClusterParameterGroupQuotaExceededFault:
|
|
351
|
-
ClusterQuotaExceededFault:
|
|
352
|
-
ClusterSecurityGroupAlreadyExistsFault:
|
|
353
|
-
ClusterSecurityGroupNotFoundFault:
|
|
354
|
-
ClusterSecurityGroupQuotaExceededFault:
|
|
355
|
-
ClusterSnapshotAlreadyExistsFault:
|
|
356
|
-
ClusterSnapshotNotFoundFault:
|
|
357
|
-
ClusterSnapshotQuotaExceededFault:
|
|
358
|
-
ClusterSubnetGroupAlreadyExistsFault:
|
|
359
|
-
ClusterSubnetGroupNotFoundFault:
|
|
360
|
-
ClusterSubnetGroupQuotaExceededFault:
|
|
361
|
-
ClusterSubnetQuotaExceededFault:
|
|
362
|
-
ConflictPolicyUpdateFault:
|
|
363
|
-
CopyToRegionDisabledFault:
|
|
364
|
-
CustomCnameAssociationFault:
|
|
365
|
-
CustomDomainAssociationNotFoundFault:
|
|
366
|
-
DependentServiceAccessDeniedFault:
|
|
367
|
-
DependentServiceRequestThrottlingFault:
|
|
368
|
-
DependentServiceUnavailableFault:
|
|
369
|
-
EndpointAlreadyExistsFault:
|
|
370
|
-
EndpointAuthorizationAlreadyExistsFault:
|
|
371
|
-
EndpointAuthorizationNotFoundFault:
|
|
372
|
-
EndpointAuthorizationsPerClusterLimitExceededFault:
|
|
373
|
-
EndpointNotFoundFault:
|
|
374
|
-
EndpointsPerAuthorizationLimitExceededFault:
|
|
375
|
-
EndpointsPerClusterLimitExceededFault:
|
|
376
|
-
EventSubscriptionQuotaExceededFault:
|
|
377
|
-
HsmClientCertificateAlreadyExistsFault:
|
|
378
|
-
HsmClientCertificateNotFoundFault:
|
|
379
|
-
HsmClientCertificateQuotaExceededFault:
|
|
380
|
-
HsmConfigurationAlreadyExistsFault:
|
|
381
|
-
HsmConfigurationNotFoundFault:
|
|
382
|
-
HsmConfigurationQuotaExceededFault:
|
|
383
|
-
InProgressTableRestoreQuotaExceededFault:
|
|
384
|
-
IncompatibleOrderableOptions:
|
|
385
|
-
InsufficientClusterCapacityFault:
|
|
386
|
-
InsufficientS3BucketPolicyFault:
|
|
387
|
-
IntegrationAlreadyExistsFault:
|
|
388
|
-
IntegrationConflictOperationFault:
|
|
389
|
-
IntegrationConflictStateFault:
|
|
390
|
-
IntegrationNotFoundFault:
|
|
391
|
-
IntegrationQuotaExceededFault:
|
|
392
|
-
IntegrationSourceNotFoundFault:
|
|
393
|
-
IntegrationTargetNotFoundFault:
|
|
394
|
-
InvalidAuthenticationProfileRequestFault:
|
|
395
|
-
InvalidAuthorizationStateFault:
|
|
396
|
-
InvalidClusterParameterGroupStateFault:
|
|
397
|
-
InvalidClusterSecurityGroupStateFault:
|
|
398
|
-
InvalidClusterSnapshotScheduleStateFault:
|
|
399
|
-
InvalidClusterSnapshotStateFault:
|
|
400
|
-
InvalidClusterStateFault:
|
|
401
|
-
InvalidClusterSubnetGroupStateFault:
|
|
402
|
-
InvalidClusterSubnetStateFault:
|
|
403
|
-
InvalidClusterTrackFault:
|
|
404
|
-
InvalidDataShareFault:
|
|
405
|
-
InvalidElasticIpFault:
|
|
406
|
-
InvalidEndpointStateFault:
|
|
407
|
-
InvalidHsmClientCertificateStateFault:
|
|
408
|
-
InvalidHsmConfigurationStateFault:
|
|
409
|
-
InvalidNamespaceFault:
|
|
410
|
-
InvalidPolicyFault:
|
|
411
|
-
InvalidReservedNodeStateFault:
|
|
412
|
-
InvalidRestoreFault:
|
|
413
|
-
InvalidRetentionPeriodFault:
|
|
414
|
-
InvalidS3BucketNameFault:
|
|
415
|
-
InvalidS3KeyPrefixFault:
|
|
416
|
-
InvalidScheduleFault:
|
|
417
|
-
InvalidScheduledActionFault:
|
|
418
|
-
InvalidSnapshotCopyGrantStateFault:
|
|
419
|
-
InvalidSubnet:
|
|
420
|
-
InvalidSubscriptionStateFault:
|
|
421
|
-
InvalidTableRestoreArgumentFault:
|
|
422
|
-
InvalidTagFault:
|
|
423
|
-
InvalidUsageLimitFault:
|
|
424
|
-
InvalidVPCNetworkStateFault:
|
|
425
|
-
Ipv6CidrBlockNotFoundFault:
|
|
426
|
-
LimitExceededFault:
|
|
427
|
-
NumberOfNodesPerClusterLimitExceededFault:
|
|
428
|
-
NumberOfNodesQuotaExceededFault:
|
|
429
|
-
PartnerNotFoundFault:
|
|
430
|
-
RedshiftIdcApplicationAlreadyExistsFault:
|
|
431
|
-
RedshiftIdcApplicationNotExistsFault:
|
|
432
|
-
RedshiftIdcApplicationQuotaExceededFault:
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
331
|
+
AccessToClusterDeniedFault: type[BotocoreClientError]
|
|
332
|
+
AccessToSnapshotDeniedFault: type[BotocoreClientError]
|
|
333
|
+
AuthenticationProfileAlreadyExistsFault: type[BotocoreClientError]
|
|
334
|
+
AuthenticationProfileNotFoundFault: type[BotocoreClientError]
|
|
335
|
+
AuthenticationProfileQuotaExceededFault: type[BotocoreClientError]
|
|
336
|
+
AuthorizationAlreadyExistsFault: type[BotocoreClientError]
|
|
337
|
+
AuthorizationNotFoundFault: type[BotocoreClientError]
|
|
338
|
+
AuthorizationQuotaExceededFault: type[BotocoreClientError]
|
|
339
|
+
BatchDeleteRequestSizeExceededFault: type[BotocoreClientError]
|
|
340
|
+
BatchModifyClusterSnapshotsLimitExceededFault: type[BotocoreClientError]
|
|
341
|
+
BucketNotFoundFault: type[BotocoreClientError]
|
|
342
|
+
ClientError: type[BotocoreClientError]
|
|
343
|
+
ClusterAlreadyExistsFault: type[BotocoreClientError]
|
|
344
|
+
ClusterNotFoundFault: type[BotocoreClientError]
|
|
345
|
+
ClusterOnLatestRevisionFault: type[BotocoreClientError]
|
|
346
|
+
ClusterParameterGroupAlreadyExistsFault: type[BotocoreClientError]
|
|
347
|
+
ClusterParameterGroupNotFoundFault: type[BotocoreClientError]
|
|
348
|
+
ClusterParameterGroupQuotaExceededFault: type[BotocoreClientError]
|
|
349
|
+
ClusterQuotaExceededFault: type[BotocoreClientError]
|
|
350
|
+
ClusterSecurityGroupAlreadyExistsFault: type[BotocoreClientError]
|
|
351
|
+
ClusterSecurityGroupNotFoundFault: type[BotocoreClientError]
|
|
352
|
+
ClusterSecurityGroupQuotaExceededFault: type[BotocoreClientError]
|
|
353
|
+
ClusterSnapshotAlreadyExistsFault: type[BotocoreClientError]
|
|
354
|
+
ClusterSnapshotNotFoundFault: type[BotocoreClientError]
|
|
355
|
+
ClusterSnapshotQuotaExceededFault: type[BotocoreClientError]
|
|
356
|
+
ClusterSubnetGroupAlreadyExistsFault: type[BotocoreClientError]
|
|
357
|
+
ClusterSubnetGroupNotFoundFault: type[BotocoreClientError]
|
|
358
|
+
ClusterSubnetGroupQuotaExceededFault: type[BotocoreClientError]
|
|
359
|
+
ClusterSubnetQuotaExceededFault: type[BotocoreClientError]
|
|
360
|
+
ConflictPolicyUpdateFault: type[BotocoreClientError]
|
|
361
|
+
CopyToRegionDisabledFault: type[BotocoreClientError]
|
|
362
|
+
CustomCnameAssociationFault: type[BotocoreClientError]
|
|
363
|
+
CustomDomainAssociationNotFoundFault: type[BotocoreClientError]
|
|
364
|
+
DependentServiceAccessDeniedFault: type[BotocoreClientError]
|
|
365
|
+
DependentServiceRequestThrottlingFault: type[BotocoreClientError]
|
|
366
|
+
DependentServiceUnavailableFault: type[BotocoreClientError]
|
|
367
|
+
EndpointAlreadyExistsFault: type[BotocoreClientError]
|
|
368
|
+
EndpointAuthorizationAlreadyExistsFault: type[BotocoreClientError]
|
|
369
|
+
EndpointAuthorizationNotFoundFault: type[BotocoreClientError]
|
|
370
|
+
EndpointAuthorizationsPerClusterLimitExceededFault: type[BotocoreClientError]
|
|
371
|
+
EndpointNotFoundFault: type[BotocoreClientError]
|
|
372
|
+
EndpointsPerAuthorizationLimitExceededFault: type[BotocoreClientError]
|
|
373
|
+
EndpointsPerClusterLimitExceededFault: type[BotocoreClientError]
|
|
374
|
+
EventSubscriptionQuotaExceededFault: type[BotocoreClientError]
|
|
375
|
+
HsmClientCertificateAlreadyExistsFault: type[BotocoreClientError]
|
|
376
|
+
HsmClientCertificateNotFoundFault: type[BotocoreClientError]
|
|
377
|
+
HsmClientCertificateQuotaExceededFault: type[BotocoreClientError]
|
|
378
|
+
HsmConfigurationAlreadyExistsFault: type[BotocoreClientError]
|
|
379
|
+
HsmConfigurationNotFoundFault: type[BotocoreClientError]
|
|
380
|
+
HsmConfigurationQuotaExceededFault: type[BotocoreClientError]
|
|
381
|
+
InProgressTableRestoreQuotaExceededFault: type[BotocoreClientError]
|
|
382
|
+
IncompatibleOrderableOptions: type[BotocoreClientError]
|
|
383
|
+
InsufficientClusterCapacityFault: type[BotocoreClientError]
|
|
384
|
+
InsufficientS3BucketPolicyFault: type[BotocoreClientError]
|
|
385
|
+
IntegrationAlreadyExistsFault: type[BotocoreClientError]
|
|
386
|
+
IntegrationConflictOperationFault: type[BotocoreClientError]
|
|
387
|
+
IntegrationConflictStateFault: type[BotocoreClientError]
|
|
388
|
+
IntegrationNotFoundFault: type[BotocoreClientError]
|
|
389
|
+
IntegrationQuotaExceededFault: type[BotocoreClientError]
|
|
390
|
+
IntegrationSourceNotFoundFault: type[BotocoreClientError]
|
|
391
|
+
IntegrationTargetNotFoundFault: type[BotocoreClientError]
|
|
392
|
+
InvalidAuthenticationProfileRequestFault: type[BotocoreClientError]
|
|
393
|
+
InvalidAuthorizationStateFault: type[BotocoreClientError]
|
|
394
|
+
InvalidClusterParameterGroupStateFault: type[BotocoreClientError]
|
|
395
|
+
InvalidClusterSecurityGroupStateFault: type[BotocoreClientError]
|
|
396
|
+
InvalidClusterSnapshotScheduleStateFault: type[BotocoreClientError]
|
|
397
|
+
InvalidClusterSnapshotStateFault: type[BotocoreClientError]
|
|
398
|
+
InvalidClusterStateFault: type[BotocoreClientError]
|
|
399
|
+
InvalidClusterSubnetGroupStateFault: type[BotocoreClientError]
|
|
400
|
+
InvalidClusterSubnetStateFault: type[BotocoreClientError]
|
|
401
|
+
InvalidClusterTrackFault: type[BotocoreClientError]
|
|
402
|
+
InvalidDataShareFault: type[BotocoreClientError]
|
|
403
|
+
InvalidElasticIpFault: type[BotocoreClientError]
|
|
404
|
+
InvalidEndpointStateFault: type[BotocoreClientError]
|
|
405
|
+
InvalidHsmClientCertificateStateFault: type[BotocoreClientError]
|
|
406
|
+
InvalidHsmConfigurationStateFault: type[BotocoreClientError]
|
|
407
|
+
InvalidNamespaceFault: type[BotocoreClientError]
|
|
408
|
+
InvalidPolicyFault: type[BotocoreClientError]
|
|
409
|
+
InvalidReservedNodeStateFault: type[BotocoreClientError]
|
|
410
|
+
InvalidRestoreFault: type[BotocoreClientError]
|
|
411
|
+
InvalidRetentionPeriodFault: type[BotocoreClientError]
|
|
412
|
+
InvalidS3BucketNameFault: type[BotocoreClientError]
|
|
413
|
+
InvalidS3KeyPrefixFault: type[BotocoreClientError]
|
|
414
|
+
InvalidScheduleFault: type[BotocoreClientError]
|
|
415
|
+
InvalidScheduledActionFault: type[BotocoreClientError]
|
|
416
|
+
InvalidSnapshotCopyGrantStateFault: type[BotocoreClientError]
|
|
417
|
+
InvalidSubnet: type[BotocoreClientError]
|
|
418
|
+
InvalidSubscriptionStateFault: type[BotocoreClientError]
|
|
419
|
+
InvalidTableRestoreArgumentFault: type[BotocoreClientError]
|
|
420
|
+
InvalidTagFault: type[BotocoreClientError]
|
|
421
|
+
InvalidUsageLimitFault: type[BotocoreClientError]
|
|
422
|
+
InvalidVPCNetworkStateFault: type[BotocoreClientError]
|
|
423
|
+
Ipv6CidrBlockNotFoundFault: type[BotocoreClientError]
|
|
424
|
+
LimitExceededFault: type[BotocoreClientError]
|
|
425
|
+
NumberOfNodesPerClusterLimitExceededFault: type[BotocoreClientError]
|
|
426
|
+
NumberOfNodesQuotaExceededFault: type[BotocoreClientError]
|
|
427
|
+
PartnerNotFoundFault: type[BotocoreClientError]
|
|
428
|
+
RedshiftIdcApplicationAlreadyExistsFault: type[BotocoreClientError]
|
|
429
|
+
RedshiftIdcApplicationNotExistsFault: type[BotocoreClientError]
|
|
430
|
+
RedshiftIdcApplicationQuotaExceededFault: type[BotocoreClientError]
|
|
431
|
+
RedshiftInvalidParameterFault: type[BotocoreClientError]
|
|
432
|
+
ReservedNodeAlreadyExistsFault: type[BotocoreClientError]
|
|
433
|
+
ReservedNodeAlreadyMigratedFault: type[BotocoreClientError]
|
|
434
|
+
ReservedNodeExchangeNotFoundFault: type[BotocoreClientError]
|
|
435
|
+
ReservedNodeNotFoundFault: type[BotocoreClientError]
|
|
436
|
+
ReservedNodeOfferingNotFoundFault: type[BotocoreClientError]
|
|
437
|
+
ReservedNodeQuotaExceededFault: type[BotocoreClientError]
|
|
438
|
+
ResizeNotFoundFault: type[BotocoreClientError]
|
|
439
|
+
ResourceNotFoundFault: type[BotocoreClientError]
|
|
440
|
+
SNSInvalidTopicFault: type[BotocoreClientError]
|
|
441
|
+
SNSNoAuthorizationFault: type[BotocoreClientError]
|
|
442
|
+
SNSTopicArnNotFoundFault: type[BotocoreClientError]
|
|
443
|
+
ScheduleDefinitionTypeUnsupportedFault: type[BotocoreClientError]
|
|
444
|
+
ScheduledActionAlreadyExistsFault: type[BotocoreClientError]
|
|
445
|
+
ScheduledActionNotFoundFault: type[BotocoreClientError]
|
|
446
|
+
ScheduledActionQuotaExceededFault: type[BotocoreClientError]
|
|
447
|
+
ScheduledActionTypeUnsupportedFault: type[BotocoreClientError]
|
|
448
|
+
SnapshotCopyAlreadyDisabledFault: type[BotocoreClientError]
|
|
449
|
+
SnapshotCopyAlreadyEnabledFault: type[BotocoreClientError]
|
|
450
|
+
SnapshotCopyDisabledFault: type[BotocoreClientError]
|
|
451
|
+
SnapshotCopyGrantAlreadyExistsFault: type[BotocoreClientError]
|
|
452
|
+
SnapshotCopyGrantNotFoundFault: type[BotocoreClientError]
|
|
453
|
+
SnapshotCopyGrantQuotaExceededFault: type[BotocoreClientError]
|
|
454
|
+
SnapshotScheduleAlreadyExistsFault: type[BotocoreClientError]
|
|
455
|
+
SnapshotScheduleNotFoundFault: type[BotocoreClientError]
|
|
456
|
+
SnapshotScheduleQuotaExceededFault: type[BotocoreClientError]
|
|
457
|
+
SnapshotScheduleUpdateInProgressFault: type[BotocoreClientError]
|
|
458
|
+
SourceNotFoundFault: type[BotocoreClientError]
|
|
459
|
+
SubnetAlreadyInUse: type[BotocoreClientError]
|
|
460
|
+
SubscriptionAlreadyExistFault: type[BotocoreClientError]
|
|
461
|
+
SubscriptionCategoryNotFoundFault: type[BotocoreClientError]
|
|
462
|
+
SubscriptionEventIdNotFoundFault: type[BotocoreClientError]
|
|
463
|
+
SubscriptionNotFoundFault: type[BotocoreClientError]
|
|
464
|
+
SubscriptionSeverityNotFoundFault: type[BotocoreClientError]
|
|
465
|
+
TableLimitExceededFault: type[BotocoreClientError]
|
|
466
|
+
TableRestoreNotFoundFault: type[BotocoreClientError]
|
|
467
|
+
TagLimitExceededFault: type[BotocoreClientError]
|
|
468
|
+
UnauthorizedOperation: type[BotocoreClientError]
|
|
469
|
+
UnauthorizedPartnerIntegrationFault: type[BotocoreClientError]
|
|
470
|
+
UnknownSnapshotCopyRegionFault: type[BotocoreClientError]
|
|
471
|
+
UnsupportedOperationFault: type[BotocoreClientError]
|
|
472
|
+
UnsupportedOptionFault: type[BotocoreClientError]
|
|
473
|
+
UsageLimitAlreadyExistsFault: type[BotocoreClientError]
|
|
474
|
+
UsageLimitNotFoundFault: type[BotocoreClientError]
|
|
476
475
|
|
|
477
476
|
class RedshiftClient(BaseClient):
|
|
478
477
|
"""
|
|
@@ -1547,6 +1546,17 @@ class RedshiftClient(BaseClient):
|
|
|
1547
1546
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_cluster_credentials_with_iam)
|
|
1548
1547
|
"""
|
|
1549
1548
|
|
|
1549
|
+
def get_identity_center_auth_token(
|
|
1550
|
+
self, **kwargs: Unpack[GetIdentityCenterAuthTokenRequestTypeDef]
|
|
1551
|
+
) -> GetIdentityCenterAuthTokenResponseTypeDef:
|
|
1552
|
+
"""
|
|
1553
|
+
Generates an encrypted authentication token that propagates the caller's Amazon
|
|
1554
|
+
Web Services IAM Identity Center identity to Amazon Redshift clusters.
|
|
1555
|
+
|
|
1556
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/get_identity_center_auth_token.html)
|
|
1557
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#get_identity_center_auth_token)
|
|
1558
|
+
"""
|
|
1559
|
+
|
|
1550
1560
|
def get_reserved_node_exchange_configuration_options(
|
|
1551
1561
|
self, **kwargs: Unpack[GetReservedNodeExchangeConfigurationOptionsInputMessageTypeDef]
|
|
1552
1562
|
) -> GetReservedNodeExchangeConfigurationOptionsOutputMessageTypeDef:
|
types_boto3_redshift/literals.py
CHANGED
|
@@ -470,6 +470,7 @@ ServiceName = Literal[
|
|
|
470
470
|
"mq",
|
|
471
471
|
"mturk",
|
|
472
472
|
"mwaa",
|
|
473
|
+
"mwaa-serverless",
|
|
473
474
|
"neptune",
|
|
474
475
|
"neptune-graph",
|
|
475
476
|
"neptunedata",
|
|
@@ -489,6 +490,7 @@ ServiceName = Literal[
|
|
|
489
490
|
"osis",
|
|
490
491
|
"outposts",
|
|
491
492
|
"panorama",
|
|
493
|
+
"partnercentral-channel",
|
|
492
494
|
"partnercentral-selling",
|
|
493
495
|
"payment-cryptography",
|
|
494
496
|
"payment-cryptography-data",
|
|
@@ -563,6 +565,7 @@ ServiceName = Literal[
|
|
|
563
565
|
"sesv2",
|
|
564
566
|
"shield",
|
|
565
567
|
"signer",
|
|
568
|
+
"signin",
|
|
566
569
|
"simspaceweaver",
|
|
567
570
|
"snow-device-management",
|
|
568
571
|
"snowball",
|
|
@@ -468,6 +468,7 @@ ServiceName = Literal[
|
|
|
468
468
|
"mq",
|
|
469
469
|
"mturk",
|
|
470
470
|
"mwaa",
|
|
471
|
+
"mwaa-serverless",
|
|
471
472
|
"neptune",
|
|
472
473
|
"neptune-graph",
|
|
473
474
|
"neptunedata",
|
|
@@ -487,6 +488,7 @@ ServiceName = Literal[
|
|
|
487
488
|
"osis",
|
|
488
489
|
"outposts",
|
|
489
490
|
"panorama",
|
|
491
|
+
"partnercentral-channel",
|
|
490
492
|
"partnercentral-selling",
|
|
491
493
|
"payment-cryptography",
|
|
492
494
|
"payment-cryptography-data",
|
|
@@ -561,6 +563,7 @@ ServiceName = Literal[
|
|
|
561
563
|
"sesv2",
|
|
562
564
|
"shield",
|
|
563
565
|
"signer",
|
|
566
|
+
"signin",
|
|
564
567
|
"simspaceweaver",
|
|
565
568
|
"snow-device-management",
|
|
566
569
|
"snowball",
|