@aws-sdk/client-redshift 3.105.0 → 3.110.0

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.
Files changed (32) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/dist-cjs/Redshift.js +15 -0
  3. package/dist-cjs/commands/DescribeHsmConfigurationsCommand.js +1 -2
  4. package/dist-cjs/commands/GetClusterCredentialsWithIAMCommand.js +37 -0
  5. package/dist-cjs/commands/index.js +1 -0
  6. package/dist-cjs/models/models_0.js +11 -10
  7. package/dist-cjs/models/models_1.js +15 -3
  8. package/dist-cjs/protocols/Aws_query.js +201 -96
  9. package/dist-es/Redshift.js +15 -0
  10. package/dist-es/commands/DescribeHsmConfigurationsCommand.js +1 -2
  11. package/dist-es/commands/GetClusterCredentialsWithIAMCommand.js +40 -0
  12. package/dist-es/commands/index.js +1 -0
  13. package/dist-es/models/models_0.js +4 -4
  14. package/dist-es/models/models_1.js +8 -0
  15. package/dist-es/protocols/Aws_query.js +209 -92
  16. package/dist-types/Redshift.d.ts +16 -0
  17. package/dist-types/RedshiftClient.d.ts +3 -2
  18. package/dist-types/commands/DescribeHsmConfigurationsCommand.d.ts +1 -2
  19. package/dist-types/commands/GetClusterCredentialsWithIAMCommand.d.ts +45 -0
  20. package/dist-types/commands/index.d.ts +1 -0
  21. package/dist-types/models/models_0.d.ts +26 -56
  22. package/dist-types/models/models_1.d.ts +81 -3
  23. package/dist-types/protocols/Aws_query.d.ts +3 -0
  24. package/dist-types/ts3.4/Redshift.d.ts +5 -0
  25. package/dist-types/ts3.4/RedshiftClient.d.ts +3 -2
  26. package/dist-types/ts3.4/commands/DescribeHsmConfigurationsCommand.d.ts +1 -2
  27. package/dist-types/ts3.4/commands/GetClusterCredentialsWithIAMCommand.d.ts +18 -0
  28. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  29. package/dist-types/ts3.4/models/models_0.d.ts +14 -17
  30. package/dist-types/ts3.4/models/models_1.d.ts +29 -0
  31. package/dist-types/ts3.4/protocols/Aws_query.d.ts +3 -0
  32. package/package.json +30 -30
@@ -85,6 +85,7 @@ import { DisassociateDataShareConsumerCommandInput, DisassociateDataShareConsume
85
85
  import { EnableLoggingCommandInput, EnableLoggingCommandOutput } from "./commands/EnableLoggingCommand";
86
86
  import { EnableSnapshotCopyCommandInput, EnableSnapshotCopyCommandOutput } from "./commands/EnableSnapshotCopyCommand";
87
87
  import { GetClusterCredentialsCommandInput, GetClusterCredentialsCommandOutput } from "./commands/GetClusterCredentialsCommand";
88
+ import { GetClusterCredentialsWithIAMCommandInput, GetClusterCredentialsWithIAMCommandOutput } from "./commands/GetClusterCredentialsWithIAMCommand";
88
89
  import { GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput } from "./commands/GetReservedNodeExchangeConfigurationOptionsCommand";
89
90
  import { GetReservedNodeExchangeOfferingsCommandInput, GetReservedNodeExchangeOfferingsCommandOutput } from "./commands/GetReservedNodeExchangeOfferingsCommand";
90
91
  import { ModifyAquaConfigurationCommandInput, ModifyAquaConfigurationCommandOutput } from "./commands/ModifyAquaConfigurationCommand";
@@ -1034,6 +1035,21 @@ export declare class Redshift extends RedshiftClient {
1034
1035
  getClusterCredentials(args: GetClusterCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<GetClusterCredentialsCommandOutput>;
1035
1036
  getClusterCredentials(args: GetClusterCredentialsCommandInput, cb: (err: any, data?: GetClusterCredentialsCommandOutput) => void): void;
1036
1037
  getClusterCredentials(args: GetClusterCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClusterCredentialsCommandOutput) => void): void;
1038
+ /**
1039
+ * <p>Returns a database user name and temporary password with temporary authorization to
1040
+ * log in to an Amazon Redshift database.
1041
+ * The database user is mapped 1:1 to the source Identity and Access Management (IAM) identity.
1042
+ * For more information about IAM identities, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id.html">IAM Identities (users, user groups, and roles)</a> in the
1043
+ * Amazon Web Services Identity and Access Management User Guide.</p>
1044
+ * <p>The Identity and Access Management (IAM) identity that runs
1045
+ * this operation must have an IAM policy attached that allows access to all
1046
+ * necessary actions and resources.
1047
+ * For more information about permissions, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-identity-based.html">Using identity-based policies (IAM policies)</a> in the
1048
+ * Amazon Redshift Cluster Management Guide. </p>
1049
+ */
1050
+ getClusterCredentialsWithIAM(args: GetClusterCredentialsWithIAMCommandInput, options?: __HttpHandlerOptions): Promise<GetClusterCredentialsWithIAMCommandOutput>;
1051
+ getClusterCredentialsWithIAM(args: GetClusterCredentialsWithIAMCommandInput, cb: (err: any, data?: GetClusterCredentialsWithIAMCommandOutput) => void): void;
1052
+ getClusterCredentialsWithIAM(args: GetClusterCredentialsWithIAMCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClusterCredentialsWithIAMCommandOutput) => void): void;
1037
1053
  /**
1038
1054
  * <p>Gets the configuration options for the reserved-node exchange. These options
1039
1055
  * include information about the source reserved node and target reserved node offering.
@@ -92,6 +92,7 @@ import { DisassociateDataShareConsumerCommandInput, DisassociateDataShareConsume
92
92
  import { EnableLoggingCommandInput, EnableLoggingCommandOutput } from "./commands/EnableLoggingCommand";
93
93
  import { EnableSnapshotCopyCommandInput, EnableSnapshotCopyCommandOutput } from "./commands/EnableSnapshotCopyCommand";
94
94
  import { GetClusterCredentialsCommandInput, GetClusterCredentialsCommandOutput } from "./commands/GetClusterCredentialsCommand";
95
+ import { GetClusterCredentialsWithIAMCommandInput, GetClusterCredentialsWithIAMCommandOutput } from "./commands/GetClusterCredentialsWithIAMCommand";
95
96
  import { GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput } from "./commands/GetReservedNodeExchangeConfigurationOptionsCommand";
96
97
  import { GetReservedNodeExchangeOfferingsCommandInput, GetReservedNodeExchangeOfferingsCommandOutput } from "./commands/GetReservedNodeExchangeOfferingsCommand";
97
98
  import { ModifyAquaConfigurationCommandInput, ModifyAquaConfigurationCommandOutput } from "./commands/ModifyAquaConfigurationCommand";
@@ -124,8 +125,8 @@ import { RevokeEndpointAccessCommandInput, RevokeEndpointAccessCommandOutput } f
124
125
  import { RevokeSnapshotAccessCommandInput, RevokeSnapshotAccessCommandOutput } from "./commands/RevokeSnapshotAccessCommand";
125
126
  import { RotateEncryptionKeyCommandInput, RotateEncryptionKeyCommandOutput } from "./commands/RotateEncryptionKeyCommand";
126
127
  import { UpdatePartnerStatusCommandInput, UpdatePartnerStatusCommandOutput } from "./commands/UpdatePartnerStatusCommand";
127
- export declare type ServiceInputTypes = AcceptReservedNodeExchangeCommandInput | AddPartnerCommandInput | AssociateDataShareConsumerCommandInput | AuthorizeClusterSecurityGroupIngressCommandInput | AuthorizeDataShareCommandInput | AuthorizeEndpointAccessCommandInput | AuthorizeSnapshotAccessCommandInput | BatchDeleteClusterSnapshotsCommandInput | BatchModifyClusterSnapshotsCommandInput | CancelResizeCommandInput | CopyClusterSnapshotCommandInput | CreateAuthenticationProfileCommandInput | CreateClusterCommandInput | CreateClusterParameterGroupCommandInput | CreateClusterSecurityGroupCommandInput | CreateClusterSnapshotCommandInput | CreateClusterSubnetGroupCommandInput | CreateEndpointAccessCommandInput | CreateEventSubscriptionCommandInput | CreateHsmClientCertificateCommandInput | CreateHsmConfigurationCommandInput | CreateScheduledActionCommandInput | CreateSnapshotCopyGrantCommandInput | CreateSnapshotScheduleCommandInput | CreateTagsCommandInput | CreateUsageLimitCommandInput | DeauthorizeDataShareCommandInput | DeleteAuthenticationProfileCommandInput | DeleteClusterCommandInput | DeleteClusterParameterGroupCommandInput | DeleteClusterSecurityGroupCommandInput | DeleteClusterSnapshotCommandInput | DeleteClusterSubnetGroupCommandInput | DeleteEndpointAccessCommandInput | DeleteEventSubscriptionCommandInput | DeleteHsmClientCertificateCommandInput | DeleteHsmConfigurationCommandInput | DeletePartnerCommandInput | DeleteScheduledActionCommandInput | DeleteSnapshotCopyGrantCommandInput | DeleteSnapshotScheduleCommandInput | DeleteTagsCommandInput | DeleteUsageLimitCommandInput | DescribeAccountAttributesCommandInput | DescribeAuthenticationProfilesCommandInput | DescribeClusterDbRevisionsCommandInput | DescribeClusterParameterGroupsCommandInput | DescribeClusterParametersCommandInput | DescribeClusterSecurityGroupsCommandInput | DescribeClusterSnapshotsCommandInput | DescribeClusterSubnetGroupsCommandInput | DescribeClusterTracksCommandInput | DescribeClusterVersionsCommandInput | DescribeClustersCommandInput | DescribeDataSharesCommandInput | DescribeDataSharesForConsumerCommandInput | DescribeDataSharesForProducerCommandInput | DescribeDefaultClusterParametersCommandInput | DescribeEndpointAccessCommandInput | DescribeEndpointAuthorizationCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeHsmClientCertificatesCommandInput | DescribeHsmConfigurationsCommandInput | DescribeLoggingStatusCommandInput | DescribeNodeConfigurationOptionsCommandInput | DescribeOrderableClusterOptionsCommandInput | DescribePartnersCommandInput | DescribeReservedNodeExchangeStatusCommandInput | DescribeReservedNodeOfferingsCommandInput | DescribeReservedNodesCommandInput | DescribeResizeCommandInput | DescribeScheduledActionsCommandInput | DescribeSnapshotCopyGrantsCommandInput | DescribeSnapshotSchedulesCommandInput | DescribeStorageCommandInput | DescribeTableRestoreStatusCommandInput | DescribeTagsCommandInput | DescribeUsageLimitsCommandInput | DisableLoggingCommandInput | DisableSnapshotCopyCommandInput | DisassociateDataShareConsumerCommandInput | EnableLoggingCommandInput | EnableSnapshotCopyCommandInput | GetClusterCredentialsCommandInput | GetReservedNodeExchangeConfigurationOptionsCommandInput | GetReservedNodeExchangeOfferingsCommandInput | ModifyAquaConfigurationCommandInput | ModifyAuthenticationProfileCommandInput | ModifyClusterCommandInput | ModifyClusterDbRevisionCommandInput | ModifyClusterIamRolesCommandInput | ModifyClusterMaintenanceCommandInput | ModifyClusterParameterGroupCommandInput | ModifyClusterSnapshotCommandInput | ModifyClusterSnapshotScheduleCommandInput | ModifyClusterSubnetGroupCommandInput | ModifyEndpointAccessCommandInput | ModifyEventSubscriptionCommandInput | ModifyScheduledActionCommandInput | ModifySnapshotCopyRetentionPeriodCommandInput | ModifySnapshotScheduleCommandInput | ModifyUsageLimitCommandInput | PauseClusterCommandInput | PurchaseReservedNodeOfferingCommandInput | RebootClusterCommandInput | RejectDataShareCommandInput | ResetClusterParameterGroupCommandInput | ResizeClusterCommandInput | RestoreFromClusterSnapshotCommandInput | RestoreTableFromClusterSnapshotCommandInput | ResumeClusterCommandInput | RevokeClusterSecurityGroupIngressCommandInput | RevokeEndpointAccessCommandInput | RevokeSnapshotAccessCommandInput | RotateEncryptionKeyCommandInput | UpdatePartnerStatusCommandInput;
128
- export declare type ServiceOutputTypes = AcceptReservedNodeExchangeCommandOutput | AddPartnerCommandOutput | AssociateDataShareConsumerCommandOutput | AuthorizeClusterSecurityGroupIngressCommandOutput | AuthorizeDataShareCommandOutput | AuthorizeEndpointAccessCommandOutput | AuthorizeSnapshotAccessCommandOutput | BatchDeleteClusterSnapshotsCommandOutput | BatchModifyClusterSnapshotsCommandOutput | CancelResizeCommandOutput | CopyClusterSnapshotCommandOutput | CreateAuthenticationProfileCommandOutput | CreateClusterCommandOutput | CreateClusterParameterGroupCommandOutput | CreateClusterSecurityGroupCommandOutput | CreateClusterSnapshotCommandOutput | CreateClusterSubnetGroupCommandOutput | CreateEndpointAccessCommandOutput | CreateEventSubscriptionCommandOutput | CreateHsmClientCertificateCommandOutput | CreateHsmConfigurationCommandOutput | CreateScheduledActionCommandOutput | CreateSnapshotCopyGrantCommandOutput | CreateSnapshotScheduleCommandOutput | CreateTagsCommandOutput | CreateUsageLimitCommandOutput | DeauthorizeDataShareCommandOutput | DeleteAuthenticationProfileCommandOutput | DeleteClusterCommandOutput | DeleteClusterParameterGroupCommandOutput | DeleteClusterSecurityGroupCommandOutput | DeleteClusterSnapshotCommandOutput | DeleteClusterSubnetGroupCommandOutput | DeleteEndpointAccessCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteHsmClientCertificateCommandOutput | DeleteHsmConfigurationCommandOutput | DeletePartnerCommandOutput | DeleteScheduledActionCommandOutput | DeleteSnapshotCopyGrantCommandOutput | DeleteSnapshotScheduleCommandOutput | DeleteTagsCommandOutput | DeleteUsageLimitCommandOutput | DescribeAccountAttributesCommandOutput | DescribeAuthenticationProfilesCommandOutput | DescribeClusterDbRevisionsCommandOutput | DescribeClusterParameterGroupsCommandOutput | DescribeClusterParametersCommandOutput | DescribeClusterSecurityGroupsCommandOutput | DescribeClusterSnapshotsCommandOutput | DescribeClusterSubnetGroupsCommandOutput | DescribeClusterTracksCommandOutput | DescribeClusterVersionsCommandOutput | DescribeClustersCommandOutput | DescribeDataSharesCommandOutput | DescribeDataSharesForConsumerCommandOutput | DescribeDataSharesForProducerCommandOutput | DescribeDefaultClusterParametersCommandOutput | DescribeEndpointAccessCommandOutput | DescribeEndpointAuthorizationCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeHsmClientCertificatesCommandOutput | DescribeHsmConfigurationsCommandOutput | DescribeLoggingStatusCommandOutput | DescribeNodeConfigurationOptionsCommandOutput | DescribeOrderableClusterOptionsCommandOutput | DescribePartnersCommandOutput | DescribeReservedNodeExchangeStatusCommandOutput | DescribeReservedNodeOfferingsCommandOutput | DescribeReservedNodesCommandOutput | DescribeResizeCommandOutput | DescribeScheduledActionsCommandOutput | DescribeSnapshotCopyGrantsCommandOutput | DescribeSnapshotSchedulesCommandOutput | DescribeStorageCommandOutput | DescribeTableRestoreStatusCommandOutput | DescribeTagsCommandOutput | DescribeUsageLimitsCommandOutput | DisableLoggingCommandOutput | DisableSnapshotCopyCommandOutput | DisassociateDataShareConsumerCommandOutput | EnableLoggingCommandOutput | EnableSnapshotCopyCommandOutput | GetClusterCredentialsCommandOutput | GetReservedNodeExchangeConfigurationOptionsCommandOutput | GetReservedNodeExchangeOfferingsCommandOutput | ModifyAquaConfigurationCommandOutput | ModifyAuthenticationProfileCommandOutput | ModifyClusterCommandOutput | ModifyClusterDbRevisionCommandOutput | ModifyClusterIamRolesCommandOutput | ModifyClusterMaintenanceCommandOutput | ModifyClusterParameterGroupCommandOutput | ModifyClusterSnapshotCommandOutput | ModifyClusterSnapshotScheduleCommandOutput | ModifyClusterSubnetGroupCommandOutput | ModifyEndpointAccessCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyScheduledActionCommandOutput | ModifySnapshotCopyRetentionPeriodCommandOutput | ModifySnapshotScheduleCommandOutput | ModifyUsageLimitCommandOutput | PauseClusterCommandOutput | PurchaseReservedNodeOfferingCommandOutput | RebootClusterCommandOutput | RejectDataShareCommandOutput | ResetClusterParameterGroupCommandOutput | ResizeClusterCommandOutput | RestoreFromClusterSnapshotCommandOutput | RestoreTableFromClusterSnapshotCommandOutput | ResumeClusterCommandOutput | RevokeClusterSecurityGroupIngressCommandOutput | RevokeEndpointAccessCommandOutput | RevokeSnapshotAccessCommandOutput | RotateEncryptionKeyCommandOutput | UpdatePartnerStatusCommandOutput;
128
+ export declare type ServiceInputTypes = AcceptReservedNodeExchangeCommandInput | AddPartnerCommandInput | AssociateDataShareConsumerCommandInput | AuthorizeClusterSecurityGroupIngressCommandInput | AuthorizeDataShareCommandInput | AuthorizeEndpointAccessCommandInput | AuthorizeSnapshotAccessCommandInput | BatchDeleteClusterSnapshotsCommandInput | BatchModifyClusterSnapshotsCommandInput | CancelResizeCommandInput | CopyClusterSnapshotCommandInput | CreateAuthenticationProfileCommandInput | CreateClusterCommandInput | CreateClusterParameterGroupCommandInput | CreateClusterSecurityGroupCommandInput | CreateClusterSnapshotCommandInput | CreateClusterSubnetGroupCommandInput | CreateEndpointAccessCommandInput | CreateEventSubscriptionCommandInput | CreateHsmClientCertificateCommandInput | CreateHsmConfigurationCommandInput | CreateScheduledActionCommandInput | CreateSnapshotCopyGrantCommandInput | CreateSnapshotScheduleCommandInput | CreateTagsCommandInput | CreateUsageLimitCommandInput | DeauthorizeDataShareCommandInput | DeleteAuthenticationProfileCommandInput | DeleteClusterCommandInput | DeleteClusterParameterGroupCommandInput | DeleteClusterSecurityGroupCommandInput | DeleteClusterSnapshotCommandInput | DeleteClusterSubnetGroupCommandInput | DeleteEndpointAccessCommandInput | DeleteEventSubscriptionCommandInput | DeleteHsmClientCertificateCommandInput | DeleteHsmConfigurationCommandInput | DeletePartnerCommandInput | DeleteScheduledActionCommandInput | DeleteSnapshotCopyGrantCommandInput | DeleteSnapshotScheduleCommandInput | DeleteTagsCommandInput | DeleteUsageLimitCommandInput | DescribeAccountAttributesCommandInput | DescribeAuthenticationProfilesCommandInput | DescribeClusterDbRevisionsCommandInput | DescribeClusterParameterGroupsCommandInput | DescribeClusterParametersCommandInput | DescribeClusterSecurityGroupsCommandInput | DescribeClusterSnapshotsCommandInput | DescribeClusterSubnetGroupsCommandInput | DescribeClusterTracksCommandInput | DescribeClusterVersionsCommandInput | DescribeClustersCommandInput | DescribeDataSharesCommandInput | DescribeDataSharesForConsumerCommandInput | DescribeDataSharesForProducerCommandInput | DescribeDefaultClusterParametersCommandInput | DescribeEndpointAccessCommandInput | DescribeEndpointAuthorizationCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeHsmClientCertificatesCommandInput | DescribeHsmConfigurationsCommandInput | DescribeLoggingStatusCommandInput | DescribeNodeConfigurationOptionsCommandInput | DescribeOrderableClusterOptionsCommandInput | DescribePartnersCommandInput | DescribeReservedNodeExchangeStatusCommandInput | DescribeReservedNodeOfferingsCommandInput | DescribeReservedNodesCommandInput | DescribeResizeCommandInput | DescribeScheduledActionsCommandInput | DescribeSnapshotCopyGrantsCommandInput | DescribeSnapshotSchedulesCommandInput | DescribeStorageCommandInput | DescribeTableRestoreStatusCommandInput | DescribeTagsCommandInput | DescribeUsageLimitsCommandInput | DisableLoggingCommandInput | DisableSnapshotCopyCommandInput | DisassociateDataShareConsumerCommandInput | EnableLoggingCommandInput | EnableSnapshotCopyCommandInput | GetClusterCredentialsCommandInput | GetClusterCredentialsWithIAMCommandInput | GetReservedNodeExchangeConfigurationOptionsCommandInput | GetReservedNodeExchangeOfferingsCommandInput | ModifyAquaConfigurationCommandInput | ModifyAuthenticationProfileCommandInput | ModifyClusterCommandInput | ModifyClusterDbRevisionCommandInput | ModifyClusterIamRolesCommandInput | ModifyClusterMaintenanceCommandInput | ModifyClusterParameterGroupCommandInput | ModifyClusterSnapshotCommandInput | ModifyClusterSnapshotScheduleCommandInput | ModifyClusterSubnetGroupCommandInput | ModifyEndpointAccessCommandInput | ModifyEventSubscriptionCommandInput | ModifyScheduledActionCommandInput | ModifySnapshotCopyRetentionPeriodCommandInput | ModifySnapshotScheduleCommandInput | ModifyUsageLimitCommandInput | PauseClusterCommandInput | PurchaseReservedNodeOfferingCommandInput | RebootClusterCommandInput | RejectDataShareCommandInput | ResetClusterParameterGroupCommandInput | ResizeClusterCommandInput | RestoreFromClusterSnapshotCommandInput | RestoreTableFromClusterSnapshotCommandInput | ResumeClusterCommandInput | RevokeClusterSecurityGroupIngressCommandInput | RevokeEndpointAccessCommandInput | RevokeSnapshotAccessCommandInput | RotateEncryptionKeyCommandInput | UpdatePartnerStatusCommandInput;
129
+ export declare type ServiceOutputTypes = AcceptReservedNodeExchangeCommandOutput | AddPartnerCommandOutput | AssociateDataShareConsumerCommandOutput | AuthorizeClusterSecurityGroupIngressCommandOutput | AuthorizeDataShareCommandOutput | AuthorizeEndpointAccessCommandOutput | AuthorizeSnapshotAccessCommandOutput | BatchDeleteClusterSnapshotsCommandOutput | BatchModifyClusterSnapshotsCommandOutput | CancelResizeCommandOutput | CopyClusterSnapshotCommandOutput | CreateAuthenticationProfileCommandOutput | CreateClusterCommandOutput | CreateClusterParameterGroupCommandOutput | CreateClusterSecurityGroupCommandOutput | CreateClusterSnapshotCommandOutput | CreateClusterSubnetGroupCommandOutput | CreateEndpointAccessCommandOutput | CreateEventSubscriptionCommandOutput | CreateHsmClientCertificateCommandOutput | CreateHsmConfigurationCommandOutput | CreateScheduledActionCommandOutput | CreateSnapshotCopyGrantCommandOutput | CreateSnapshotScheduleCommandOutput | CreateTagsCommandOutput | CreateUsageLimitCommandOutput | DeauthorizeDataShareCommandOutput | DeleteAuthenticationProfileCommandOutput | DeleteClusterCommandOutput | DeleteClusterParameterGroupCommandOutput | DeleteClusterSecurityGroupCommandOutput | DeleteClusterSnapshotCommandOutput | DeleteClusterSubnetGroupCommandOutput | DeleteEndpointAccessCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteHsmClientCertificateCommandOutput | DeleteHsmConfigurationCommandOutput | DeletePartnerCommandOutput | DeleteScheduledActionCommandOutput | DeleteSnapshotCopyGrantCommandOutput | DeleteSnapshotScheduleCommandOutput | DeleteTagsCommandOutput | DeleteUsageLimitCommandOutput | DescribeAccountAttributesCommandOutput | DescribeAuthenticationProfilesCommandOutput | DescribeClusterDbRevisionsCommandOutput | DescribeClusterParameterGroupsCommandOutput | DescribeClusterParametersCommandOutput | DescribeClusterSecurityGroupsCommandOutput | DescribeClusterSnapshotsCommandOutput | DescribeClusterSubnetGroupsCommandOutput | DescribeClusterTracksCommandOutput | DescribeClusterVersionsCommandOutput | DescribeClustersCommandOutput | DescribeDataSharesCommandOutput | DescribeDataSharesForConsumerCommandOutput | DescribeDataSharesForProducerCommandOutput | DescribeDefaultClusterParametersCommandOutput | DescribeEndpointAccessCommandOutput | DescribeEndpointAuthorizationCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeHsmClientCertificatesCommandOutput | DescribeHsmConfigurationsCommandOutput | DescribeLoggingStatusCommandOutput | DescribeNodeConfigurationOptionsCommandOutput | DescribeOrderableClusterOptionsCommandOutput | DescribePartnersCommandOutput | DescribeReservedNodeExchangeStatusCommandOutput | DescribeReservedNodeOfferingsCommandOutput | DescribeReservedNodesCommandOutput | DescribeResizeCommandOutput | DescribeScheduledActionsCommandOutput | DescribeSnapshotCopyGrantsCommandOutput | DescribeSnapshotSchedulesCommandOutput | DescribeStorageCommandOutput | DescribeTableRestoreStatusCommandOutput | DescribeTagsCommandOutput | DescribeUsageLimitsCommandOutput | DisableLoggingCommandOutput | DisableSnapshotCopyCommandOutput | DisassociateDataShareConsumerCommandOutput | EnableLoggingCommandOutput | EnableSnapshotCopyCommandOutput | GetClusterCredentialsCommandOutput | GetClusterCredentialsWithIAMCommandOutput | GetReservedNodeExchangeConfigurationOptionsCommandOutput | GetReservedNodeExchangeOfferingsCommandOutput | ModifyAquaConfigurationCommandOutput | ModifyAuthenticationProfileCommandOutput | ModifyClusterCommandOutput | ModifyClusterDbRevisionCommandOutput | ModifyClusterIamRolesCommandOutput | ModifyClusterMaintenanceCommandOutput | ModifyClusterParameterGroupCommandOutput | ModifyClusterSnapshotCommandOutput | ModifyClusterSnapshotScheduleCommandOutput | ModifyClusterSubnetGroupCommandOutput | ModifyEndpointAccessCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyScheduledActionCommandOutput | ModifySnapshotCopyRetentionPeriodCommandOutput | ModifySnapshotScheduleCommandOutput | ModifyUsageLimitCommandOutput | PauseClusterCommandOutput | PurchaseReservedNodeOfferingCommandOutput | RebootClusterCommandOutput | RejectDataShareCommandOutput | ResetClusterParameterGroupCommandOutput | ResizeClusterCommandOutput | RestoreFromClusterSnapshotCommandOutput | RestoreTableFromClusterSnapshotCommandOutput | ResumeClusterCommandOutput | RevokeClusterSecurityGroupIngressCommandOutput | RevokeEndpointAccessCommandOutput | RevokeSnapshotAccessCommandOutput | RotateEncryptionKeyCommandOutput | UpdatePartnerStatusCommandOutput;
129
130
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
130
131
  /**
131
132
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeHsmConfigurationsMessage } from "../models/models_0";
4
- import { HsmConfigurationMessage } from "../models/models_1";
3
+ import { DescribeHsmConfigurationsMessage, HsmConfigurationMessage } from "../models/models_1";
5
4
  import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
5
  export interface DescribeHsmConfigurationsCommandInput extends DescribeHsmConfigurationsMessage {
7
6
  }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ClusterExtendedCredentials } from "../models/models_0";
4
+ import { GetClusterCredentialsWithIAMMessage } from "../models/models_1";
5
+ import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
+ export interface GetClusterCredentialsWithIAMCommandInput extends GetClusterCredentialsWithIAMMessage {
7
+ }
8
+ export interface GetClusterCredentialsWithIAMCommandOutput extends ClusterExtendedCredentials, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Returns a database user name and temporary password with temporary authorization to
12
+ * log in to an Amazon Redshift database.
13
+ * The database user is mapped 1:1 to the source Identity and Access Management (IAM) identity.
14
+ * For more information about IAM identities, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id.html">IAM Identities (users, user groups, and roles)</a> in the
15
+ * Amazon Web Services Identity and Access Management User Guide.</p>
16
+ * <p>The Identity and Access Management (IAM) identity that runs
17
+ * this operation must have an IAM policy attached that allows access to all
18
+ * necessary actions and resources.
19
+ * For more information about permissions, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-identity-based.html">Using identity-based policies (IAM policies)</a> in the
20
+ * Amazon Redshift Cluster Management Guide. </p>
21
+ * @example
22
+ * Use a bare-bones client and the command you need to make an API call.
23
+ * ```javascript
24
+ * import { RedshiftClient, GetClusterCredentialsWithIAMCommand } from "@aws-sdk/client-redshift"; // ES Modules import
25
+ * // const { RedshiftClient, GetClusterCredentialsWithIAMCommand } = require("@aws-sdk/client-redshift"); // CommonJS import
26
+ * const client = new RedshiftClient(config);
27
+ * const command = new GetClusterCredentialsWithIAMCommand(input);
28
+ * const response = await client.send(command);
29
+ * ```
30
+ *
31
+ * @see {@link GetClusterCredentialsWithIAMCommandInput} for command's `input` shape.
32
+ * @see {@link GetClusterCredentialsWithIAMCommandOutput} for command's `response` shape.
33
+ * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape.
34
+ *
35
+ */
36
+ export declare class GetClusterCredentialsWithIAMCommand extends $Command<GetClusterCredentialsWithIAMCommandInput, GetClusterCredentialsWithIAMCommandOutput, RedshiftClientResolvedConfig> {
37
+ readonly input: GetClusterCredentialsWithIAMCommandInput;
38
+ constructor(input: GetClusterCredentialsWithIAMCommandInput);
39
+ /**
40
+ * @internal
41
+ */
42
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetClusterCredentialsWithIAMCommandInput, GetClusterCredentialsWithIAMCommandOutput>;
43
+ private serialize;
44
+ private deserialize;
45
+ }
@@ -84,6 +84,7 @@ export * from "./DisassociateDataShareConsumerCommand";
84
84
  export * from "./EnableLoggingCommand";
85
85
  export * from "./EnableSnapshotCopyCommand";
86
86
  export * from "./GetClusterCredentialsCommand";
87
+ export * from "./GetClusterCredentialsWithIAMCommand";
87
88
  export * from "./GetReservedNodeExchangeConfigurationOptionsCommand";
88
89
  export * from "./GetReservedNodeExchangeOfferingsCommand";
89
90
  export * from "./ModifyAquaConfigurationCommand";
@@ -2655,6 +2655,30 @@ export declare namespace ClusterDbRevisionsMessage {
2655
2655
  */
2656
2656
  const filterSensitiveLog: (obj: ClusterDbRevisionsMessage) => any;
2657
2657
  }
2658
+ export interface ClusterExtendedCredentials {
2659
+ /**
2660
+ * <p>A database user name that you provide when you connect to a database. The database user is mapped 1:1 to the source IAM identity. </p>
2661
+ */
2662
+ DbUser?: string;
2663
+ /**
2664
+ * <p>A temporary password that you provide when you connect to a database.</p>
2665
+ */
2666
+ DbPassword?: string;
2667
+ /**
2668
+ * <p>The time (UTC) when the temporary password expires. After this timestamp, a log in with the temporary password fails.</p>
2669
+ */
2670
+ Expiration?: Date;
2671
+ /**
2672
+ * <p>Reserved for future use.</p>
2673
+ */
2674
+ NextRefreshTime?: Date;
2675
+ }
2676
+ export declare namespace ClusterExtendedCredentials {
2677
+ /**
2678
+ * @internal
2679
+ */
2680
+ const filterSensitiveLog: (obj: ClusterExtendedCredentials) => any;
2681
+ }
2658
2682
  /**
2659
2683
  * <p>Cluster is already on the latest database revision.</p>
2660
2684
  */
@@ -3410,8 +3434,8 @@ export interface CreateClusterMessage {
3410
3434
  * <p>Must contain one number.</p>
3411
3435
  * </li>
3412
3436
  * <li>
3413
- * <p>Can be any printable ASCII character (ASCII code 33-126) except '
3414
- * (single quote), " (double quote), \, /, or @.</p>
3437
+ * <p>Can be any printable ASCII character (ASCII code 33-126) except <code>'</code>
3438
+ * (single quote), <code>"</code> (double quote), <code>\</code>, <code>/</code>, or <code>@</code>.</p>
3415
3439
  * </li>
3416
3440
  * </ul>
3417
3441
  */
@@ -7204,57 +7228,3 @@ export declare namespace HsmClientCertificateMessage {
7204
7228
  */
7205
7229
  const filterSensitiveLog: (obj: HsmClientCertificateMessage) => any;
7206
7230
  }
7207
- /**
7208
- * <p></p>
7209
- */
7210
- export interface DescribeHsmConfigurationsMessage {
7211
- /**
7212
- * <p>The identifier of a specific Amazon Redshift HSM configuration to be described. If no
7213
- * identifier is specified, information is returned for all HSM configurations owned by
7214
- * your Amazon Web Services account.</p>
7215
- */
7216
- HsmConfigurationIdentifier?: string;
7217
- /**
7218
- * <p>The maximum number of response records to return in each call. If the number of
7219
- * remaining response records exceeds the specified <code>MaxRecords</code> value, a value
7220
- * is returned in a <code>marker</code> field of the response. You can retrieve the next
7221
- * set of records by retrying the command with the returned marker value. </p>
7222
- * <p>Default: <code>100</code>
7223
- * </p>
7224
- * <p>Constraints: minimum 20, maximum 100.</p>
7225
- */
7226
- MaxRecords?: number;
7227
- /**
7228
- * <p>An optional parameter that specifies the starting point to return a set of response
7229
- * records. When the results of a <a>DescribeHsmConfigurations</a> request
7230
- * exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
7231
- * <code>Marker</code> field of the response. You can retrieve the next set of response
7232
- * records by providing the returned marker value in the <code>Marker</code> parameter and
7233
- * retrying the request. </p>
7234
- */
7235
- Marker?: string;
7236
- /**
7237
- * <p>A tag key or keys for which you want to return all matching HSM configurations that
7238
- * are associated with the specified key or keys. For example, suppose that you have HSM
7239
- * configurations that are tagged with keys called <code>owner</code> and
7240
- * <code>environment</code>. If you specify both of these tag keys in the request,
7241
- * Amazon Redshift returns a response with the HSM configurations that have either or both of
7242
- * these tag keys associated with them.</p>
7243
- */
7244
- TagKeys?: string[];
7245
- /**
7246
- * <p>A tag value or values for which you want to return all matching HSM configurations
7247
- * that are associated with the specified tag value or values. For example, suppose that
7248
- * you have HSM configurations that are tagged with values called <code>admin</code> and
7249
- * <code>test</code>. If you specify both of these tag values in the request, Amazon Redshift
7250
- * returns a response with the HSM configurations that have either or both of these tag
7251
- * values associated with them.</p>
7252
- */
7253
- TagValues?: string[];
7254
- }
7255
- export declare namespace DescribeHsmConfigurationsMessage {
7256
- /**
7257
- * @internal
7258
- */
7259
- const filterSensitiveLog: (obj: DescribeHsmConfigurationsMessage) => any;
7260
- }
@@ -1,6 +1,60 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { ActionType, AquaConfiguration, AquaConfigurationStatus, AvailabilityZone, Cluster, ClusterSecurityGroup, ClusterSubnetGroup, EventSubscription, HsmConfiguration, Parameter, RecurringCharge, ReservedNode, ReservedNodeExchangeStatus, ReservedNodeOfferingType, ScheduledAction, ScheduledActionType, Snapshot, SnapshotCopyGrant, SnapshotSchedule, Tag, UsageLimit, UsageLimitBreachAction, UsageLimitFeatureType } from "./models_0";
3
3
  import { RedshiftServiceException as __BaseException } from "./RedshiftServiceException";
4
+ /**
5
+ * <p></p>
6
+ */
7
+ export interface DescribeHsmConfigurationsMessage {
8
+ /**
9
+ * <p>The identifier of a specific Amazon Redshift HSM configuration to be described. If no
10
+ * identifier is specified, information is returned for all HSM configurations owned by
11
+ * your Amazon Web Services account.</p>
12
+ */
13
+ HsmConfigurationIdentifier?: string;
14
+ /**
15
+ * <p>The maximum number of response records to return in each call. If the number of
16
+ * remaining response records exceeds the specified <code>MaxRecords</code> value, a value
17
+ * is returned in a <code>marker</code> field of the response. You can retrieve the next
18
+ * set of records by retrying the command with the returned marker value. </p>
19
+ * <p>Default: <code>100</code>
20
+ * </p>
21
+ * <p>Constraints: minimum 20, maximum 100.</p>
22
+ */
23
+ MaxRecords?: number;
24
+ /**
25
+ * <p>An optional parameter that specifies the starting point to return a set of response
26
+ * records. When the results of a <a>DescribeHsmConfigurations</a> request
27
+ * exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
28
+ * <code>Marker</code> field of the response. You can retrieve the next set of response
29
+ * records by providing the returned marker value in the <code>Marker</code> parameter and
30
+ * retrying the request. </p>
31
+ */
32
+ Marker?: string;
33
+ /**
34
+ * <p>A tag key or keys for which you want to return all matching HSM configurations that
35
+ * are associated with the specified key or keys. For example, suppose that you have HSM
36
+ * configurations that are tagged with keys called <code>owner</code> and
37
+ * <code>environment</code>. If you specify both of these tag keys in the request,
38
+ * Amazon Redshift returns a response with the HSM configurations that have either or both of
39
+ * these tag keys associated with them.</p>
40
+ */
41
+ TagKeys?: string[];
42
+ /**
43
+ * <p>A tag value or values for which you want to return all matching HSM configurations
44
+ * that are associated with the specified tag value or values. For example, suppose that
45
+ * you have HSM configurations that are tagged with values called <code>admin</code> and
46
+ * <code>test</code>. If you specify both of these tag values in the request, Amazon Redshift
47
+ * returns a response with the HSM configurations that have either or both of these tag
48
+ * values associated with them.</p>
49
+ */
50
+ TagValues?: string[];
51
+ }
52
+ export declare namespace DescribeHsmConfigurationsMessage {
53
+ /**
54
+ * @internal
55
+ */
56
+ const filterSensitiveLog: (obj: DescribeHsmConfigurationsMessage) => any;
57
+ }
4
58
  /**
5
59
  * <p></p>
6
60
  */
@@ -1632,7 +1686,7 @@ export interface GetClusterCredentialsMessage {
1632
1686
  */
1633
1687
  DbName?: string;
1634
1688
  /**
1635
- * <p>The unique identifier of the cluster that contains the database for which your are
1689
+ * <p>The unique identifier of the cluster that contains the database for which you are
1636
1690
  * requesting credentials. This parameter is case sensitive.</p>
1637
1691
  */
1638
1692
  ClusterIdentifier: string | undefined;
@@ -1681,6 +1735,30 @@ export declare namespace GetClusterCredentialsMessage {
1681
1735
  */
1682
1736
  const filterSensitiveLog: (obj: GetClusterCredentialsMessage) => any;
1683
1737
  }
1738
+ export interface GetClusterCredentialsWithIAMMessage {
1739
+ /**
1740
+ * <p>The name of the database for which you are requesting credentials.
1741
+ * If the database name is specified, the IAM policy must allow access to the resource <code>dbname</code> for the specified database name.
1742
+ * If the database name is not specified, access to all databases is allowed.</p>
1743
+ */
1744
+ DbName?: string;
1745
+ /**
1746
+ * <p>The unique identifier of the cluster that contains the database for which you are
1747
+ * requesting credentials. </p>
1748
+ */
1749
+ ClusterIdentifier: string | undefined;
1750
+ /**
1751
+ * <p>The number of seconds until the returned temporary password expires.</p>
1752
+ * <p>Range: 900-3600. Default: 900.</p>
1753
+ */
1754
+ DurationSeconds?: number;
1755
+ }
1756
+ export declare namespace GetClusterCredentialsWithIAMMessage {
1757
+ /**
1758
+ * @internal
1759
+ */
1760
+ const filterSensitiveLog: (obj: GetClusterCredentialsWithIAMMessage) => any;
1761
+ }
1684
1762
  export declare enum ReservedNodeExchangeActionType {
1685
1763
  RESIZE_CLUSTER = "resize-cluster",
1686
1764
  RESTORE_CLUSTER = "restore-cluster"
@@ -2015,8 +2093,8 @@ export interface ModifyClusterMessage {
2015
2093
  * <p>Must contain one number.</p>
2016
2094
  * </li>
2017
2095
  * <li>
2018
- * <p>Can be any printable ASCII character (ASCII code 33-126) except '
2019
- * (single quote), " (double quote), \, /, or @.</p>
2096
+ * <p>Can be any printable ASCII character (ASCII code 33-126) except <code>'</code>
2097
+ * (single quote), <code>"</code> (double quote), <code>\</code>, <code>/</code>, or <code>@</code>.</p>
2020
2098
  * </li>
2021
2099
  * </ul>
2022
2100
  */
@@ -86,6 +86,7 @@ import { DisassociateDataShareConsumerCommandInput, DisassociateDataShareConsume
86
86
  import { EnableLoggingCommandInput, EnableLoggingCommandOutput } from "../commands/EnableLoggingCommand";
87
87
  import { EnableSnapshotCopyCommandInput, EnableSnapshotCopyCommandOutput } from "../commands/EnableSnapshotCopyCommand";
88
88
  import { GetClusterCredentialsCommandInput, GetClusterCredentialsCommandOutput } from "../commands/GetClusterCredentialsCommand";
89
+ import { GetClusterCredentialsWithIAMCommandInput, GetClusterCredentialsWithIAMCommandOutput } from "../commands/GetClusterCredentialsWithIAMCommand";
89
90
  import { GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput } from "../commands/GetReservedNodeExchangeConfigurationOptionsCommand";
90
91
  import { GetReservedNodeExchangeOfferingsCommandInput, GetReservedNodeExchangeOfferingsCommandOutput } from "../commands/GetReservedNodeExchangeOfferingsCommand";
91
92
  import { ModifyAquaConfigurationCommandInput, ModifyAquaConfigurationCommandOutput } from "../commands/ModifyAquaConfigurationCommand";
@@ -204,6 +205,7 @@ export declare const serializeAws_queryDisassociateDataShareConsumerCommand: (in
204
205
  export declare const serializeAws_queryEnableLoggingCommand: (input: EnableLoggingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
205
206
  export declare const serializeAws_queryEnableSnapshotCopyCommand: (input: EnableSnapshotCopyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
206
207
  export declare const serializeAws_queryGetClusterCredentialsCommand: (input: GetClusterCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
208
+ export declare const serializeAws_queryGetClusterCredentialsWithIAMCommand: (input: GetClusterCredentialsWithIAMCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
207
209
  export declare const serializeAws_queryGetReservedNodeExchangeConfigurationOptionsCommand: (input: GetReservedNodeExchangeConfigurationOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
208
210
  export declare const serializeAws_queryGetReservedNodeExchangeOfferingsCommand: (input: GetReservedNodeExchangeOfferingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
209
211
  export declare const serializeAws_queryModifyAquaConfigurationCommand: (input: ModifyAquaConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -322,6 +324,7 @@ export declare const deserializeAws_queryDisassociateDataShareConsumerCommand: (
322
324
  export declare const deserializeAws_queryEnableLoggingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableLoggingCommandOutput>;
323
325
  export declare const deserializeAws_queryEnableSnapshotCopyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableSnapshotCopyCommandOutput>;
324
326
  export declare const deserializeAws_queryGetClusterCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetClusterCredentialsCommandOutput>;
327
+ export declare const deserializeAws_queryGetClusterCredentialsWithIAMCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetClusterCredentialsWithIAMCommandOutput>;
325
328
  export declare const deserializeAws_queryGetReservedNodeExchangeConfigurationOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetReservedNodeExchangeConfigurationOptionsCommandOutput>;
326
329
  export declare const deserializeAws_queryGetReservedNodeExchangeOfferingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetReservedNodeExchangeOfferingsCommandOutput>;
327
330
  export declare const deserializeAws_queryModifyAquaConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyAquaConfigurationCommandOutput>;
@@ -85,6 +85,7 @@ import { DisassociateDataShareConsumerCommandInput, DisassociateDataShareConsume
85
85
  import { EnableLoggingCommandInput, EnableLoggingCommandOutput } from "./commands/EnableLoggingCommand";
86
86
  import { EnableSnapshotCopyCommandInput, EnableSnapshotCopyCommandOutput } from "./commands/EnableSnapshotCopyCommand";
87
87
  import { GetClusterCredentialsCommandInput, GetClusterCredentialsCommandOutput } from "./commands/GetClusterCredentialsCommand";
88
+ import { GetClusterCredentialsWithIAMCommandInput, GetClusterCredentialsWithIAMCommandOutput } from "./commands/GetClusterCredentialsWithIAMCommand";
88
89
  import { GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput } from "./commands/GetReservedNodeExchangeConfigurationOptionsCommand";
89
90
  import { GetReservedNodeExchangeOfferingsCommandInput, GetReservedNodeExchangeOfferingsCommandOutput } from "./commands/GetReservedNodeExchangeOfferingsCommand";
90
91
  import { ModifyAquaConfigurationCommandInput, ModifyAquaConfigurationCommandOutput } from "./commands/ModifyAquaConfigurationCommand";
@@ -465,6 +466,10 @@ export declare class Redshift extends RedshiftClient {
465
466
  getClusterCredentials(args: GetClusterCredentialsCommandInput, cb: (err: any, data?: GetClusterCredentialsCommandOutput) => void): void;
466
467
  getClusterCredentials(args: GetClusterCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClusterCredentialsCommandOutput) => void): void;
467
468
 
469
+ getClusterCredentialsWithIAM(args: GetClusterCredentialsWithIAMCommandInput, options?: __HttpHandlerOptions): Promise<GetClusterCredentialsWithIAMCommandOutput>;
470
+ getClusterCredentialsWithIAM(args: GetClusterCredentialsWithIAMCommandInput, cb: (err: any, data?: GetClusterCredentialsWithIAMCommandOutput) => void): void;
471
+ getClusterCredentialsWithIAM(args: GetClusterCredentialsWithIAMCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClusterCredentialsWithIAMCommandOutput) => void): void;
472
+
468
473
  getReservedNodeExchangeConfigurationOptions(args: GetReservedNodeExchangeConfigurationOptionsCommandInput, options?: __HttpHandlerOptions): Promise<GetReservedNodeExchangeConfigurationOptionsCommandOutput>;
469
474
  getReservedNodeExchangeConfigurationOptions(args: GetReservedNodeExchangeConfigurationOptionsCommandInput, cb: (err: any, data?: GetReservedNodeExchangeConfigurationOptionsCommandOutput) => void): void;
470
475
  getReservedNodeExchangeConfigurationOptions(args: GetReservedNodeExchangeConfigurationOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReservedNodeExchangeConfigurationOptionsCommandOutput) => void): void;
@@ -92,6 +92,7 @@ import { DisassociateDataShareConsumerCommandInput, DisassociateDataShareConsume
92
92
  import { EnableLoggingCommandInput, EnableLoggingCommandOutput } from "./commands/EnableLoggingCommand";
93
93
  import { EnableSnapshotCopyCommandInput, EnableSnapshotCopyCommandOutput } from "./commands/EnableSnapshotCopyCommand";
94
94
  import { GetClusterCredentialsCommandInput, GetClusterCredentialsCommandOutput } from "./commands/GetClusterCredentialsCommand";
95
+ import { GetClusterCredentialsWithIAMCommandInput, GetClusterCredentialsWithIAMCommandOutput } from "./commands/GetClusterCredentialsWithIAMCommand";
95
96
  import { GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput } from "./commands/GetReservedNodeExchangeConfigurationOptionsCommand";
96
97
  import { GetReservedNodeExchangeOfferingsCommandInput, GetReservedNodeExchangeOfferingsCommandOutput } from "./commands/GetReservedNodeExchangeOfferingsCommand";
97
98
  import { ModifyAquaConfigurationCommandInput, ModifyAquaConfigurationCommandOutput } from "./commands/ModifyAquaConfigurationCommand";
@@ -124,8 +125,8 @@ import { RevokeEndpointAccessCommandInput, RevokeEndpointAccessCommandOutput } f
124
125
  import { RevokeSnapshotAccessCommandInput, RevokeSnapshotAccessCommandOutput } from "./commands/RevokeSnapshotAccessCommand";
125
126
  import { RotateEncryptionKeyCommandInput, RotateEncryptionKeyCommandOutput } from "./commands/RotateEncryptionKeyCommand";
126
127
  import { UpdatePartnerStatusCommandInput, UpdatePartnerStatusCommandOutput } from "./commands/UpdatePartnerStatusCommand";
127
- export declare type ServiceInputTypes = AcceptReservedNodeExchangeCommandInput | AddPartnerCommandInput | AssociateDataShareConsumerCommandInput | AuthorizeClusterSecurityGroupIngressCommandInput | AuthorizeDataShareCommandInput | AuthorizeEndpointAccessCommandInput | AuthorizeSnapshotAccessCommandInput | BatchDeleteClusterSnapshotsCommandInput | BatchModifyClusterSnapshotsCommandInput | CancelResizeCommandInput | CopyClusterSnapshotCommandInput | CreateAuthenticationProfileCommandInput | CreateClusterCommandInput | CreateClusterParameterGroupCommandInput | CreateClusterSecurityGroupCommandInput | CreateClusterSnapshotCommandInput | CreateClusterSubnetGroupCommandInput | CreateEndpointAccessCommandInput | CreateEventSubscriptionCommandInput | CreateHsmClientCertificateCommandInput | CreateHsmConfigurationCommandInput | CreateScheduledActionCommandInput | CreateSnapshotCopyGrantCommandInput | CreateSnapshotScheduleCommandInput | CreateTagsCommandInput | CreateUsageLimitCommandInput | DeauthorizeDataShareCommandInput | DeleteAuthenticationProfileCommandInput | DeleteClusterCommandInput | DeleteClusterParameterGroupCommandInput | DeleteClusterSecurityGroupCommandInput | DeleteClusterSnapshotCommandInput | DeleteClusterSubnetGroupCommandInput | DeleteEndpointAccessCommandInput | DeleteEventSubscriptionCommandInput | DeleteHsmClientCertificateCommandInput | DeleteHsmConfigurationCommandInput | DeletePartnerCommandInput | DeleteScheduledActionCommandInput | DeleteSnapshotCopyGrantCommandInput | DeleteSnapshotScheduleCommandInput | DeleteTagsCommandInput | DeleteUsageLimitCommandInput | DescribeAccountAttributesCommandInput | DescribeAuthenticationProfilesCommandInput | DescribeClusterDbRevisionsCommandInput | DescribeClusterParameterGroupsCommandInput | DescribeClusterParametersCommandInput | DescribeClusterSecurityGroupsCommandInput | DescribeClusterSnapshotsCommandInput | DescribeClusterSubnetGroupsCommandInput | DescribeClusterTracksCommandInput | DescribeClusterVersionsCommandInput | DescribeClustersCommandInput | DescribeDataSharesCommandInput | DescribeDataSharesForConsumerCommandInput | DescribeDataSharesForProducerCommandInput | DescribeDefaultClusterParametersCommandInput | DescribeEndpointAccessCommandInput | DescribeEndpointAuthorizationCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeHsmClientCertificatesCommandInput | DescribeHsmConfigurationsCommandInput | DescribeLoggingStatusCommandInput | DescribeNodeConfigurationOptionsCommandInput | DescribeOrderableClusterOptionsCommandInput | DescribePartnersCommandInput | DescribeReservedNodeExchangeStatusCommandInput | DescribeReservedNodeOfferingsCommandInput | DescribeReservedNodesCommandInput | DescribeResizeCommandInput | DescribeScheduledActionsCommandInput | DescribeSnapshotCopyGrantsCommandInput | DescribeSnapshotSchedulesCommandInput | DescribeStorageCommandInput | DescribeTableRestoreStatusCommandInput | DescribeTagsCommandInput | DescribeUsageLimitsCommandInput | DisableLoggingCommandInput | DisableSnapshotCopyCommandInput | DisassociateDataShareConsumerCommandInput | EnableLoggingCommandInput | EnableSnapshotCopyCommandInput | GetClusterCredentialsCommandInput | GetReservedNodeExchangeConfigurationOptionsCommandInput | GetReservedNodeExchangeOfferingsCommandInput | ModifyAquaConfigurationCommandInput | ModifyAuthenticationProfileCommandInput | ModifyClusterCommandInput | ModifyClusterDbRevisionCommandInput | ModifyClusterIamRolesCommandInput | ModifyClusterMaintenanceCommandInput | ModifyClusterParameterGroupCommandInput | ModifyClusterSnapshotCommandInput | ModifyClusterSnapshotScheduleCommandInput | ModifyClusterSubnetGroupCommandInput | ModifyEndpointAccessCommandInput | ModifyEventSubscriptionCommandInput | ModifyScheduledActionCommandInput | ModifySnapshotCopyRetentionPeriodCommandInput | ModifySnapshotScheduleCommandInput | ModifyUsageLimitCommandInput | PauseClusterCommandInput | PurchaseReservedNodeOfferingCommandInput | RebootClusterCommandInput | RejectDataShareCommandInput | ResetClusterParameterGroupCommandInput | ResizeClusterCommandInput | RestoreFromClusterSnapshotCommandInput | RestoreTableFromClusterSnapshotCommandInput | ResumeClusterCommandInput | RevokeClusterSecurityGroupIngressCommandInput | RevokeEndpointAccessCommandInput | RevokeSnapshotAccessCommandInput | RotateEncryptionKeyCommandInput | UpdatePartnerStatusCommandInput;
128
- export declare type ServiceOutputTypes = AcceptReservedNodeExchangeCommandOutput | AddPartnerCommandOutput | AssociateDataShareConsumerCommandOutput | AuthorizeClusterSecurityGroupIngressCommandOutput | AuthorizeDataShareCommandOutput | AuthorizeEndpointAccessCommandOutput | AuthorizeSnapshotAccessCommandOutput | BatchDeleteClusterSnapshotsCommandOutput | BatchModifyClusterSnapshotsCommandOutput | CancelResizeCommandOutput | CopyClusterSnapshotCommandOutput | CreateAuthenticationProfileCommandOutput | CreateClusterCommandOutput | CreateClusterParameterGroupCommandOutput | CreateClusterSecurityGroupCommandOutput | CreateClusterSnapshotCommandOutput | CreateClusterSubnetGroupCommandOutput | CreateEndpointAccessCommandOutput | CreateEventSubscriptionCommandOutput | CreateHsmClientCertificateCommandOutput | CreateHsmConfigurationCommandOutput | CreateScheduledActionCommandOutput | CreateSnapshotCopyGrantCommandOutput | CreateSnapshotScheduleCommandOutput | CreateTagsCommandOutput | CreateUsageLimitCommandOutput | DeauthorizeDataShareCommandOutput | DeleteAuthenticationProfileCommandOutput | DeleteClusterCommandOutput | DeleteClusterParameterGroupCommandOutput | DeleteClusterSecurityGroupCommandOutput | DeleteClusterSnapshotCommandOutput | DeleteClusterSubnetGroupCommandOutput | DeleteEndpointAccessCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteHsmClientCertificateCommandOutput | DeleteHsmConfigurationCommandOutput | DeletePartnerCommandOutput | DeleteScheduledActionCommandOutput | DeleteSnapshotCopyGrantCommandOutput | DeleteSnapshotScheduleCommandOutput | DeleteTagsCommandOutput | DeleteUsageLimitCommandOutput | DescribeAccountAttributesCommandOutput | DescribeAuthenticationProfilesCommandOutput | DescribeClusterDbRevisionsCommandOutput | DescribeClusterParameterGroupsCommandOutput | DescribeClusterParametersCommandOutput | DescribeClusterSecurityGroupsCommandOutput | DescribeClusterSnapshotsCommandOutput | DescribeClusterSubnetGroupsCommandOutput | DescribeClusterTracksCommandOutput | DescribeClusterVersionsCommandOutput | DescribeClustersCommandOutput | DescribeDataSharesCommandOutput | DescribeDataSharesForConsumerCommandOutput | DescribeDataSharesForProducerCommandOutput | DescribeDefaultClusterParametersCommandOutput | DescribeEndpointAccessCommandOutput | DescribeEndpointAuthorizationCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeHsmClientCertificatesCommandOutput | DescribeHsmConfigurationsCommandOutput | DescribeLoggingStatusCommandOutput | DescribeNodeConfigurationOptionsCommandOutput | DescribeOrderableClusterOptionsCommandOutput | DescribePartnersCommandOutput | DescribeReservedNodeExchangeStatusCommandOutput | DescribeReservedNodeOfferingsCommandOutput | DescribeReservedNodesCommandOutput | DescribeResizeCommandOutput | DescribeScheduledActionsCommandOutput | DescribeSnapshotCopyGrantsCommandOutput | DescribeSnapshotSchedulesCommandOutput | DescribeStorageCommandOutput | DescribeTableRestoreStatusCommandOutput | DescribeTagsCommandOutput | DescribeUsageLimitsCommandOutput | DisableLoggingCommandOutput | DisableSnapshotCopyCommandOutput | DisassociateDataShareConsumerCommandOutput | EnableLoggingCommandOutput | EnableSnapshotCopyCommandOutput | GetClusterCredentialsCommandOutput | GetReservedNodeExchangeConfigurationOptionsCommandOutput | GetReservedNodeExchangeOfferingsCommandOutput | ModifyAquaConfigurationCommandOutput | ModifyAuthenticationProfileCommandOutput | ModifyClusterCommandOutput | ModifyClusterDbRevisionCommandOutput | ModifyClusterIamRolesCommandOutput | ModifyClusterMaintenanceCommandOutput | ModifyClusterParameterGroupCommandOutput | ModifyClusterSnapshotCommandOutput | ModifyClusterSnapshotScheduleCommandOutput | ModifyClusterSubnetGroupCommandOutput | ModifyEndpointAccessCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyScheduledActionCommandOutput | ModifySnapshotCopyRetentionPeriodCommandOutput | ModifySnapshotScheduleCommandOutput | ModifyUsageLimitCommandOutput | PauseClusterCommandOutput | PurchaseReservedNodeOfferingCommandOutput | RebootClusterCommandOutput | RejectDataShareCommandOutput | ResetClusterParameterGroupCommandOutput | ResizeClusterCommandOutput | RestoreFromClusterSnapshotCommandOutput | RestoreTableFromClusterSnapshotCommandOutput | ResumeClusterCommandOutput | RevokeClusterSecurityGroupIngressCommandOutput | RevokeEndpointAccessCommandOutput | RevokeSnapshotAccessCommandOutput | RotateEncryptionKeyCommandOutput | UpdatePartnerStatusCommandOutput;
128
+ export declare type ServiceInputTypes = AcceptReservedNodeExchangeCommandInput | AddPartnerCommandInput | AssociateDataShareConsumerCommandInput | AuthorizeClusterSecurityGroupIngressCommandInput | AuthorizeDataShareCommandInput | AuthorizeEndpointAccessCommandInput | AuthorizeSnapshotAccessCommandInput | BatchDeleteClusterSnapshotsCommandInput | BatchModifyClusterSnapshotsCommandInput | CancelResizeCommandInput | CopyClusterSnapshotCommandInput | CreateAuthenticationProfileCommandInput | CreateClusterCommandInput | CreateClusterParameterGroupCommandInput | CreateClusterSecurityGroupCommandInput | CreateClusterSnapshotCommandInput | CreateClusterSubnetGroupCommandInput | CreateEndpointAccessCommandInput | CreateEventSubscriptionCommandInput | CreateHsmClientCertificateCommandInput | CreateHsmConfigurationCommandInput | CreateScheduledActionCommandInput | CreateSnapshotCopyGrantCommandInput | CreateSnapshotScheduleCommandInput | CreateTagsCommandInput | CreateUsageLimitCommandInput | DeauthorizeDataShareCommandInput | DeleteAuthenticationProfileCommandInput | DeleteClusterCommandInput | DeleteClusterParameterGroupCommandInput | DeleteClusterSecurityGroupCommandInput | DeleteClusterSnapshotCommandInput | DeleteClusterSubnetGroupCommandInput | DeleteEndpointAccessCommandInput | DeleteEventSubscriptionCommandInput | DeleteHsmClientCertificateCommandInput | DeleteHsmConfigurationCommandInput | DeletePartnerCommandInput | DeleteScheduledActionCommandInput | DeleteSnapshotCopyGrantCommandInput | DeleteSnapshotScheduleCommandInput | DeleteTagsCommandInput | DeleteUsageLimitCommandInput | DescribeAccountAttributesCommandInput | DescribeAuthenticationProfilesCommandInput | DescribeClusterDbRevisionsCommandInput | DescribeClusterParameterGroupsCommandInput | DescribeClusterParametersCommandInput | DescribeClusterSecurityGroupsCommandInput | DescribeClusterSnapshotsCommandInput | DescribeClusterSubnetGroupsCommandInput | DescribeClusterTracksCommandInput | DescribeClusterVersionsCommandInput | DescribeClustersCommandInput | DescribeDataSharesCommandInput | DescribeDataSharesForConsumerCommandInput | DescribeDataSharesForProducerCommandInput | DescribeDefaultClusterParametersCommandInput | DescribeEndpointAccessCommandInput | DescribeEndpointAuthorizationCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeHsmClientCertificatesCommandInput | DescribeHsmConfigurationsCommandInput | DescribeLoggingStatusCommandInput | DescribeNodeConfigurationOptionsCommandInput | DescribeOrderableClusterOptionsCommandInput | DescribePartnersCommandInput | DescribeReservedNodeExchangeStatusCommandInput | DescribeReservedNodeOfferingsCommandInput | DescribeReservedNodesCommandInput | DescribeResizeCommandInput | DescribeScheduledActionsCommandInput | DescribeSnapshotCopyGrantsCommandInput | DescribeSnapshotSchedulesCommandInput | DescribeStorageCommandInput | DescribeTableRestoreStatusCommandInput | DescribeTagsCommandInput | DescribeUsageLimitsCommandInput | DisableLoggingCommandInput | DisableSnapshotCopyCommandInput | DisassociateDataShareConsumerCommandInput | EnableLoggingCommandInput | EnableSnapshotCopyCommandInput | GetClusterCredentialsCommandInput | GetClusterCredentialsWithIAMCommandInput | GetReservedNodeExchangeConfigurationOptionsCommandInput | GetReservedNodeExchangeOfferingsCommandInput | ModifyAquaConfigurationCommandInput | ModifyAuthenticationProfileCommandInput | ModifyClusterCommandInput | ModifyClusterDbRevisionCommandInput | ModifyClusterIamRolesCommandInput | ModifyClusterMaintenanceCommandInput | ModifyClusterParameterGroupCommandInput | ModifyClusterSnapshotCommandInput | ModifyClusterSnapshotScheduleCommandInput | ModifyClusterSubnetGroupCommandInput | ModifyEndpointAccessCommandInput | ModifyEventSubscriptionCommandInput | ModifyScheduledActionCommandInput | ModifySnapshotCopyRetentionPeriodCommandInput | ModifySnapshotScheduleCommandInput | ModifyUsageLimitCommandInput | PauseClusterCommandInput | PurchaseReservedNodeOfferingCommandInput | RebootClusterCommandInput | RejectDataShareCommandInput | ResetClusterParameterGroupCommandInput | ResizeClusterCommandInput | RestoreFromClusterSnapshotCommandInput | RestoreTableFromClusterSnapshotCommandInput | ResumeClusterCommandInput | RevokeClusterSecurityGroupIngressCommandInput | RevokeEndpointAccessCommandInput | RevokeSnapshotAccessCommandInput | RotateEncryptionKeyCommandInput | UpdatePartnerStatusCommandInput;
129
+ export declare type ServiceOutputTypes = AcceptReservedNodeExchangeCommandOutput | AddPartnerCommandOutput | AssociateDataShareConsumerCommandOutput | AuthorizeClusterSecurityGroupIngressCommandOutput | AuthorizeDataShareCommandOutput | AuthorizeEndpointAccessCommandOutput | AuthorizeSnapshotAccessCommandOutput | BatchDeleteClusterSnapshotsCommandOutput | BatchModifyClusterSnapshotsCommandOutput | CancelResizeCommandOutput | CopyClusterSnapshotCommandOutput | CreateAuthenticationProfileCommandOutput | CreateClusterCommandOutput | CreateClusterParameterGroupCommandOutput | CreateClusterSecurityGroupCommandOutput | CreateClusterSnapshotCommandOutput | CreateClusterSubnetGroupCommandOutput | CreateEndpointAccessCommandOutput | CreateEventSubscriptionCommandOutput | CreateHsmClientCertificateCommandOutput | CreateHsmConfigurationCommandOutput | CreateScheduledActionCommandOutput | CreateSnapshotCopyGrantCommandOutput | CreateSnapshotScheduleCommandOutput | CreateTagsCommandOutput | CreateUsageLimitCommandOutput | DeauthorizeDataShareCommandOutput | DeleteAuthenticationProfileCommandOutput | DeleteClusterCommandOutput | DeleteClusterParameterGroupCommandOutput | DeleteClusterSecurityGroupCommandOutput | DeleteClusterSnapshotCommandOutput | DeleteClusterSubnetGroupCommandOutput | DeleteEndpointAccessCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteHsmClientCertificateCommandOutput | DeleteHsmConfigurationCommandOutput | DeletePartnerCommandOutput | DeleteScheduledActionCommandOutput | DeleteSnapshotCopyGrantCommandOutput | DeleteSnapshotScheduleCommandOutput | DeleteTagsCommandOutput | DeleteUsageLimitCommandOutput | DescribeAccountAttributesCommandOutput | DescribeAuthenticationProfilesCommandOutput | DescribeClusterDbRevisionsCommandOutput | DescribeClusterParameterGroupsCommandOutput | DescribeClusterParametersCommandOutput | DescribeClusterSecurityGroupsCommandOutput | DescribeClusterSnapshotsCommandOutput | DescribeClusterSubnetGroupsCommandOutput | DescribeClusterTracksCommandOutput | DescribeClusterVersionsCommandOutput | DescribeClustersCommandOutput | DescribeDataSharesCommandOutput | DescribeDataSharesForConsumerCommandOutput | DescribeDataSharesForProducerCommandOutput | DescribeDefaultClusterParametersCommandOutput | DescribeEndpointAccessCommandOutput | DescribeEndpointAuthorizationCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeHsmClientCertificatesCommandOutput | DescribeHsmConfigurationsCommandOutput | DescribeLoggingStatusCommandOutput | DescribeNodeConfigurationOptionsCommandOutput | DescribeOrderableClusterOptionsCommandOutput | DescribePartnersCommandOutput | DescribeReservedNodeExchangeStatusCommandOutput | DescribeReservedNodeOfferingsCommandOutput | DescribeReservedNodesCommandOutput | DescribeResizeCommandOutput | DescribeScheduledActionsCommandOutput | DescribeSnapshotCopyGrantsCommandOutput | DescribeSnapshotSchedulesCommandOutput | DescribeStorageCommandOutput | DescribeTableRestoreStatusCommandOutput | DescribeTagsCommandOutput | DescribeUsageLimitsCommandOutput | DisableLoggingCommandOutput | DisableSnapshotCopyCommandOutput | DisassociateDataShareConsumerCommandOutput | EnableLoggingCommandOutput | EnableSnapshotCopyCommandOutput | GetClusterCredentialsCommandOutput | GetClusterCredentialsWithIAMCommandOutput | GetReservedNodeExchangeConfigurationOptionsCommandOutput | GetReservedNodeExchangeOfferingsCommandOutput | ModifyAquaConfigurationCommandOutput | ModifyAuthenticationProfileCommandOutput | ModifyClusterCommandOutput | ModifyClusterDbRevisionCommandOutput | ModifyClusterIamRolesCommandOutput | ModifyClusterMaintenanceCommandOutput | ModifyClusterParameterGroupCommandOutput | ModifyClusterSnapshotCommandOutput | ModifyClusterSnapshotScheduleCommandOutput | ModifyClusterSubnetGroupCommandOutput | ModifyEndpointAccessCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyScheduledActionCommandOutput | ModifySnapshotCopyRetentionPeriodCommandOutput | ModifySnapshotScheduleCommandOutput | ModifyUsageLimitCommandOutput | PauseClusterCommandOutput | PurchaseReservedNodeOfferingCommandOutput | RebootClusterCommandOutput | RejectDataShareCommandOutput | ResetClusterParameterGroupCommandOutput | ResizeClusterCommandOutput | RestoreFromClusterSnapshotCommandOutput | RestoreTableFromClusterSnapshotCommandOutput | ResumeClusterCommandOutput | RevokeClusterSecurityGroupIngressCommandOutput | RevokeEndpointAccessCommandOutput | RevokeSnapshotAccessCommandOutput | RotateEncryptionKeyCommandOutput | UpdatePartnerStatusCommandOutput;
129
130
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
130
131
 
131
132
  requestHandler?: __HttpHandler;
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeHsmConfigurationsMessage } from "../models/models_0";
4
- import { HsmConfigurationMessage } from "../models/models_1";
3
+ import { DescribeHsmConfigurationsMessage, HsmConfigurationMessage } from "../models/models_1";
5
4
  import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
5
  export interface DescribeHsmConfigurationsCommandInput extends DescribeHsmConfigurationsMessage {
7
6
  }
@@ -0,0 +1,18 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ClusterExtendedCredentials } from "../models/models_0";
4
+ import { GetClusterCredentialsWithIAMMessage } from "../models/models_1";
5
+ import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
6
+ export interface GetClusterCredentialsWithIAMCommandInput extends GetClusterCredentialsWithIAMMessage {
7
+ }
8
+ export interface GetClusterCredentialsWithIAMCommandOutput extends ClusterExtendedCredentials, __MetadataBearer {
9
+ }
10
+
11
+ export declare class GetClusterCredentialsWithIAMCommand extends $Command<GetClusterCredentialsWithIAMCommandInput, GetClusterCredentialsWithIAMCommandOutput, RedshiftClientResolvedConfig> {
12
+ readonly input: GetClusterCredentialsWithIAMCommandInput;
13
+ constructor(input: GetClusterCredentialsWithIAMCommandInput);
14
+
15
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetClusterCredentialsWithIAMCommandInput, GetClusterCredentialsWithIAMCommandOutput>;
16
+ private serialize;
17
+ private deserialize;
18
+ }
@@ -84,6 +84,7 @@ export * from "./DisassociateDataShareConsumerCommand";
84
84
  export * from "./EnableLoggingCommand";
85
85
  export * from "./EnableSnapshotCopyCommand";
86
86
  export * from "./GetClusterCredentialsCommand";
87
+ export * from "./GetClusterCredentialsWithIAMCommand";
87
88
  export * from "./GetReservedNodeExchangeConfigurationOptionsCommand";
88
89
  export * from "./GetReservedNodeExchangeOfferingsCommand";
89
90
  export * from "./ModifyAquaConfigurationCommand";
@@ -1279,6 +1279,20 @@ export declare namespace ClusterDbRevisionsMessage {
1279
1279
 
1280
1280
  const filterSensitiveLog: (obj: ClusterDbRevisionsMessage) => any;
1281
1281
  }
1282
+ export interface ClusterExtendedCredentials {
1283
+
1284
+ DbUser?: string;
1285
+
1286
+ DbPassword?: string;
1287
+
1288
+ Expiration?: Date;
1289
+
1290
+ NextRefreshTime?: Date;
1291
+ }
1292
+ export declare namespace ClusterExtendedCredentials {
1293
+
1294
+ const filterSensitiveLog: (obj: ClusterExtendedCredentials) => any;
1295
+ }
1282
1296
 
1283
1297
  export declare class ClusterOnLatestRevisionFault extends __BaseException {
1284
1298
  readonly name: "ClusterOnLatestRevisionFault";
@@ -3334,20 +3348,3 @@ export declare namespace HsmClientCertificateMessage {
3334
3348
 
3335
3349
  const filterSensitiveLog: (obj: HsmClientCertificateMessage) => any;
3336
3350
  }
3337
-
3338
- export interface DescribeHsmConfigurationsMessage {
3339
-
3340
- HsmConfigurationIdentifier?: string;
3341
-
3342
- MaxRecords?: number;
3343
-
3344
- Marker?: string;
3345
-
3346
- TagKeys?: string[];
3347
-
3348
- TagValues?: string[];
3349
- }
3350
- export declare namespace DescribeHsmConfigurationsMessage {
3351
-
3352
- const filterSensitiveLog: (obj: DescribeHsmConfigurationsMessage) => any;
3353
- }
@@ -2,6 +2,23 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
2
2
  import { ActionType, AquaConfiguration, AquaConfigurationStatus, AvailabilityZone, Cluster, ClusterSecurityGroup, ClusterSubnetGroup, EventSubscription, HsmConfiguration, Parameter, RecurringCharge, ReservedNode, ReservedNodeExchangeStatus, ReservedNodeOfferingType, ScheduledAction, ScheduledActionType, Snapshot, SnapshotCopyGrant, SnapshotSchedule, Tag, UsageLimit, UsageLimitBreachAction, UsageLimitFeatureType } from "./models_0";
3
3
  import { RedshiftServiceException as __BaseException } from "./RedshiftServiceException";
4
4
 
5
+ export interface DescribeHsmConfigurationsMessage {
6
+
7
+ HsmConfigurationIdentifier?: string;
8
+
9
+ MaxRecords?: number;
10
+
11
+ Marker?: string;
12
+
13
+ TagKeys?: string[];
14
+
15
+ TagValues?: string[];
16
+ }
17
+ export declare namespace DescribeHsmConfigurationsMessage {
18
+
19
+ const filterSensitiveLog: (obj: DescribeHsmConfigurationsMessage) => any;
20
+ }
21
+
5
22
  export interface HsmConfigurationMessage {
6
23
 
7
24
  Marker?: string;
@@ -733,6 +750,18 @@ export declare namespace GetClusterCredentialsMessage {
733
750
 
734
751
  const filterSensitiveLog: (obj: GetClusterCredentialsMessage) => any;
735
752
  }
753
+ export interface GetClusterCredentialsWithIAMMessage {
754
+
755
+ DbName?: string;
756
+
757
+ ClusterIdentifier: string | undefined;
758
+
759
+ DurationSeconds?: number;
760
+ }
761
+ export declare namespace GetClusterCredentialsWithIAMMessage {
762
+
763
+ const filterSensitiveLog: (obj: GetClusterCredentialsWithIAMMessage) => any;
764
+ }
736
765
  export declare enum ReservedNodeExchangeActionType {
737
766
  RESIZE_CLUSTER = "resize-cluster",
738
767
  RESTORE_CLUSTER = "restore-cluster"