@aws-sdk/client-redshift 3.1091.0 → 3.1093.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 (47) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +151 -1
  3. package/dist-es/Redshift.js +10 -0
  4. package/dist-es/commands/CreateQev2IdcApplicationCommand.js +4 -0
  5. package/dist-es/commands/DeleteQev2IdcApplicationCommand.js +4 -0
  6. package/dist-es/commands/DescribeQev2IdcApplicationsCommand.js +4 -0
  7. package/dist-es/commands/ModifyQev2IdcApplicationCommand.js +4 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/errors.js +24 -0
  10. package/dist-es/pagination/DescribeQev2IdcApplicationsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/schemas/schemas_0.js +87 -1
  13. package/dist-types/Redshift.d.ts +36 -0
  14. package/dist-types/RedshiftClient.d.ts +6 -2
  15. package/dist-types/commands/CreateQev2IdcApplicationCommand.d.ts +105 -0
  16. package/dist-types/commands/DeleteQev2IdcApplicationCommand.d.ts +82 -0
  17. package/dist-types/commands/DescribeQev2IdcApplicationsCommand.d.ts +102 -0
  18. package/dist-types/commands/ModifyCustomDomainAssociationCommand.d.ts +1 -1
  19. package/dist-types/commands/ModifyEndpointAccessCommand.d.ts +2 -1
  20. package/dist-types/commands/ModifyEventSubscriptionCommand.d.ts +1 -1
  21. package/dist-types/commands/ModifyIntegrationCommand.d.ts +2 -1
  22. package/dist-types/commands/ModifyQev2IdcApplicationCommand.d.ts +98 -0
  23. package/dist-types/commands/index.d.ts +4 -0
  24. package/dist-types/models/errors.d.ts +24 -0
  25. package/dist-types/models/models_0.d.ts +133 -147
  26. package/dist-types/models/models_1.d.ts +173 -1
  27. package/dist-types/pagination/DescribeQev2IdcApplicationsPaginator.d.ts +7 -0
  28. package/dist-types/pagination/index.d.ts +1 -0
  29. package/dist-types/schemas/schemas_0.d.ts +14 -0
  30. package/dist-types/ts3.4/Redshift.d.ts +76 -0
  31. package/dist-types/ts3.4/RedshiftClient.d.ts +24 -0
  32. package/dist-types/ts3.4/commands/CreateQev2IdcApplicationCommand.d.ts +42 -0
  33. package/dist-types/ts3.4/commands/DeleteQev2IdcApplicationCommand.d.ts +38 -0
  34. package/dist-types/ts3.4/commands/DescribeQev2IdcApplicationsCommand.d.ts +42 -0
  35. package/dist-types/ts3.4/commands/ModifyCustomDomainAssociationCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/ModifyEndpointAccessCommand.d.ts +2 -1
  37. package/dist-types/ts3.4/commands/ModifyEventSubscriptionCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +2 -1
  39. package/dist-types/ts3.4/commands/ModifyQev2IdcApplicationCommand.d.ts +42 -0
  40. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  41. package/dist-types/ts3.4/models/errors.d.ts +10 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +30 -32
  43. package/dist-types/ts3.4/models/models_1.d.ts +41 -0
  44. package/dist-types/ts3.4/pagination/DescribeQev2IdcApplicationsPaginator.d.ts +11 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  46. package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -0
  47. package/package.json +3 -3
@@ -0,0 +1,102 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { DescribeQev2IdcApplicationsMessage, DescribeQev2IdcApplicationsResult } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link DescribeQev2IdcApplicationsCommand}.
11
+ */
12
+ export interface DescribeQev2IdcApplicationsCommandInput extends DescribeQev2IdcApplicationsMessage {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link DescribeQev2IdcApplicationsCommand}.
18
+ */
19
+ export interface DescribeQev2IdcApplicationsCommandOutput extends DescribeQev2IdcApplicationsResult, __MetadataBearer {
20
+ }
21
+ declare const DescribeQev2IdcApplicationsCommand_base: {
22
+ new (input: DescribeQev2IdcApplicationsCommandInput): import("@smithy/core/client").CommandImpl<DescribeQev2IdcApplicationsCommandInput, DescribeQev2IdcApplicationsCommandOutput, import("..").RedshiftClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [DescribeQev2IdcApplicationsCommandInput]): import("@smithy/core/client").CommandImpl<DescribeQev2IdcApplicationsCommandInput, DescribeQev2IdcApplicationsCommandOutput, import("..").RedshiftClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Lists the Amazon Redshift Query Editor (QEV2) IAM Identity Center applications. To retrieve additional results, use the MaxRecords and Marker parameters.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { RedshiftClient, DescribeQev2IdcApplicationsCommand } from "@aws-sdk/client-redshift"; // ES Modules import
32
+ * // const { RedshiftClient, DescribeQev2IdcApplicationsCommand } = require("@aws-sdk/client-redshift"); // CommonJS import
33
+ * // import type { RedshiftClientConfig } from "@aws-sdk/client-redshift";
34
+ * const config = {}; // type is RedshiftClientConfig
35
+ * const client = new RedshiftClient(config);
36
+ * const input = { // DescribeQev2IdcApplicationsMessage
37
+ * Qev2IdcApplicationArn: "STRING_VALUE",
38
+ * MaxRecords: Number("int"),
39
+ * Marker: "STRING_VALUE",
40
+ * };
41
+ * const command = new DescribeQev2IdcApplicationsCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // DescribeQev2IdcApplicationsResult
44
+ * // Qev2IdcApplications: [ // Qev2IdcApplicationList
45
+ * // { // Qev2IdcApplication
46
+ * // IdcInstanceArn: "STRING_VALUE",
47
+ * // Qev2IdcApplicationName: "STRING_VALUE",
48
+ * // Qev2IdcApplicationArn: "STRING_VALUE",
49
+ * // IdcManagedApplicationArn: "STRING_VALUE",
50
+ * // IdcOnboardStatus: "STRING_VALUE",
51
+ * // IdcDisplayName: "STRING_VALUE",
52
+ * // Tags: [ // TagList
53
+ * // { // Tag
54
+ * // Key: "STRING_VALUE",
55
+ * // Value: "STRING_VALUE",
56
+ * // },
57
+ * // ],
58
+ * // },
59
+ * // ],
60
+ * // Marker: "STRING_VALUE",
61
+ * // };
62
+ *
63
+ * ```
64
+ *
65
+ * @param DescribeQev2IdcApplicationsCommandInput - {@link DescribeQev2IdcApplicationsCommandInput}
66
+ * @returns {@link DescribeQev2IdcApplicationsCommandOutput}
67
+ * @see {@link DescribeQev2IdcApplicationsCommandInput} for command's `input` shape.
68
+ * @see {@link DescribeQev2IdcApplicationsCommandOutput} for command's `response` shape.
69
+ * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape.
70
+ *
71
+ * @throws {@link DependentServiceAccessDeniedFault} (client fault)
72
+ * <p>A dependent service denied access for the integration.</p>
73
+ *
74
+ * @throws {@link DependentServiceUnavailableFault} (client fault)
75
+ * <p>Your request cannot be completed because a dependent internal service is
76
+ * temporarily unavailable. Wait 30 to 60 seconds and try again.</p>
77
+ *
78
+ * @throws {@link Qev2IdcApplicationNotExistsFault} (client fault)
79
+ * <p>The specified Amazon Redshift Query Editor (QEV2) IAM Identity Center application doesn't exist. Verify that the application ARN is correct and that the application exists in this Region.</p>
80
+ *
81
+ * @throws {@link UnsupportedOperationFault} (client fault)
82
+ * <p>The requested operation isn't supported.</p>
83
+ *
84
+ * @throws {@link RedshiftServiceException}
85
+ * <p>Base exception class for all service exceptions from Redshift service.</p>
86
+ *
87
+ *
88
+ * @public
89
+ */
90
+ export declare class DescribeQev2IdcApplicationsCommand extends DescribeQev2IdcApplicationsCommand_base {
91
+ /** @internal type navigation helper, not in runtime. */
92
+ protected static __types: {
93
+ api: {
94
+ input: DescribeQev2IdcApplicationsMessage;
95
+ output: DescribeQev2IdcApplicationsResult;
96
+ };
97
+ sdk: {
98
+ input: DescribeQev2IdcApplicationsCommandInput;
99
+ output: DescribeQev2IdcApplicationsCommandOutput;
100
+ };
101
+ };
102
+ }
@@ -1,5 +1,5 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { ModifyCustomDomainAssociationMessage, ModifyCustomDomainAssociationResult } from "../models/models_0";
2
+ import type { ModifyCustomDomainAssociationMessage, ModifyCustomDomainAssociationResult } from "../models/models_1";
3
3
  /**
4
4
  * @public
5
5
  */
@@ -1,5 +1,6 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { EndpointAccess, ModifyEndpointAccessMessage } from "../models/models_0";
2
+ import type { EndpointAccess } from "../models/models_0";
3
+ import type { ModifyEndpointAccessMessage } from "../models/models_1";
3
4
  /**
4
5
  * @public
5
6
  */
@@ -1,5 +1,5 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_0";
2
+ import type { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_1";
3
3
  /**
4
4
  * @public
5
5
  */
@@ -1,5 +1,6 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { Integration, ModifyIntegrationMessage } from "../models/models_0";
2
+ import type { Integration } from "../models/models_0";
3
+ import type { ModifyIntegrationMessage } from "../models/models_1";
3
4
  /**
4
5
  * @public
5
6
  */
@@ -0,0 +1,98 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { ModifyQev2IdcApplicationMessage, ModifyQev2IdcApplicationResult } from "../models/models_1";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link ModifyQev2IdcApplicationCommand}.
11
+ */
12
+ export interface ModifyQev2IdcApplicationCommandInput extends ModifyQev2IdcApplicationMessage {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link ModifyQev2IdcApplicationCommand}.
18
+ */
19
+ export interface ModifyQev2IdcApplicationCommandOutput extends ModifyQev2IdcApplicationResult, __MetadataBearer {
20
+ }
21
+ declare const ModifyQev2IdcApplicationCommand_base: {
22
+ new (input: ModifyQev2IdcApplicationCommandInput): import("@smithy/core/client").CommandImpl<ModifyQev2IdcApplicationCommandInput, ModifyQev2IdcApplicationCommandOutput, import("..").RedshiftClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ModifyQev2IdcApplicationCommandInput): import("@smithy/core/client").CommandImpl<ModifyQev2IdcApplicationCommandInput, ModifyQev2IdcApplicationCommandOutput, import("..").RedshiftClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Modifies an Amazon Redshift Query Editor (QEV2) IAM Identity Center application.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { RedshiftClient, ModifyQev2IdcApplicationCommand } from "@aws-sdk/client-redshift"; // ES Modules import
32
+ * // const { RedshiftClient, ModifyQev2IdcApplicationCommand } = require("@aws-sdk/client-redshift"); // CommonJS import
33
+ * // import type { RedshiftClientConfig } from "@aws-sdk/client-redshift";
34
+ * const config = {}; // type is RedshiftClientConfig
35
+ * const client = new RedshiftClient(config);
36
+ * const input = { // ModifyQev2IdcApplicationMessage
37
+ * Qev2IdcApplicationArn: "STRING_VALUE", // required
38
+ * IdcDisplayName: "STRING_VALUE",
39
+ * };
40
+ * const command = new ModifyQev2IdcApplicationCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // ModifyQev2IdcApplicationResult
43
+ * // Qev2IdcApplication: { // Qev2IdcApplication
44
+ * // IdcInstanceArn: "STRING_VALUE",
45
+ * // Qev2IdcApplicationName: "STRING_VALUE",
46
+ * // Qev2IdcApplicationArn: "STRING_VALUE",
47
+ * // IdcManagedApplicationArn: "STRING_VALUE",
48
+ * // IdcOnboardStatus: "STRING_VALUE",
49
+ * // IdcDisplayName: "STRING_VALUE",
50
+ * // Tags: [ // TagList
51
+ * // { // Tag
52
+ * // Key: "STRING_VALUE",
53
+ * // Value: "STRING_VALUE",
54
+ * // },
55
+ * // ],
56
+ * // },
57
+ * // };
58
+ *
59
+ * ```
60
+ *
61
+ * @param ModifyQev2IdcApplicationCommandInput - {@link ModifyQev2IdcApplicationCommandInput}
62
+ * @returns {@link ModifyQev2IdcApplicationCommandOutput}
63
+ * @see {@link ModifyQev2IdcApplicationCommandInput} for command's `input` shape.
64
+ * @see {@link ModifyQev2IdcApplicationCommandOutput} for command's `response` shape.
65
+ * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape.
66
+ *
67
+ * @throws {@link DependentServiceAccessDeniedFault} (client fault)
68
+ * <p>A dependent service denied access for the integration.</p>
69
+ *
70
+ * @throws {@link DependentServiceUnavailableFault} (client fault)
71
+ * <p>Your request cannot be completed because a dependent internal service is
72
+ * temporarily unavailable. Wait 30 to 60 seconds and try again.</p>
73
+ *
74
+ * @throws {@link Qev2IdcApplicationNotExistsFault} (client fault)
75
+ * <p>The specified Amazon Redshift Query Editor (QEV2) IAM Identity Center application doesn't exist. Verify that the application ARN is correct and that the application exists in this Region.</p>
76
+ *
77
+ * @throws {@link UnsupportedOperationFault} (client fault)
78
+ * <p>The requested operation isn't supported.</p>
79
+ *
80
+ * @throws {@link RedshiftServiceException}
81
+ * <p>Base exception class for all service exceptions from Redshift service.</p>
82
+ *
83
+ *
84
+ * @public
85
+ */
86
+ export declare class ModifyQev2IdcApplicationCommand extends ModifyQev2IdcApplicationCommand_base {
87
+ /** @internal type navigation helper, not in runtime. */
88
+ protected static __types: {
89
+ api: {
90
+ input: ModifyQev2IdcApplicationMessage;
91
+ output: ModifyQev2IdcApplicationResult;
92
+ };
93
+ sdk: {
94
+ input: ModifyQev2IdcApplicationCommandInput;
95
+ output: ModifyQev2IdcApplicationCommandOutput;
96
+ };
97
+ };
98
+ }
@@ -21,6 +21,7 @@ export * from "./CreateEventSubscriptionCommand";
21
21
  export * from "./CreateHsmClientCertificateCommand";
22
22
  export * from "./CreateHsmConfigurationCommand";
23
23
  export * from "./CreateIntegrationCommand";
24
+ export * from "./CreateQev2IdcApplicationCommand";
24
25
  export * from "./CreateRedshiftIdcApplicationCommand";
25
26
  export * from "./CreateScheduledActionCommand";
26
27
  export * from "./CreateSnapshotCopyGrantCommand";
@@ -41,6 +42,7 @@ export * from "./DeleteHsmClientCertificateCommand";
41
42
  export * from "./DeleteHsmConfigurationCommand";
42
43
  export * from "./DeleteIntegrationCommand";
43
44
  export * from "./DeletePartnerCommand";
45
+ export * from "./DeleteQev2IdcApplicationCommand";
44
46
  export * from "./DeleteRedshiftIdcApplicationCommand";
45
47
  export * from "./DeleteResourcePolicyCommand";
46
48
  export * from "./DeleteScheduledActionCommand";
@@ -78,6 +80,7 @@ export * from "./DescribeLoggingStatusCommand";
78
80
  export * from "./DescribeNodeConfigurationOptionsCommand";
79
81
  export * from "./DescribeOrderableClusterOptionsCommand";
80
82
  export * from "./DescribePartnersCommand";
83
+ export * from "./DescribeQev2IdcApplicationsCommand";
81
84
  export * from "./DescribeRedshiftIdcApplicationsCommand";
82
85
  export * from "./DescribeReservedNodeExchangeStatusCommand";
83
86
  export * from "./DescribeReservedNodeOfferingsCommand";
@@ -118,6 +121,7 @@ export * from "./ModifyEndpointAccessCommand";
118
121
  export * from "./ModifyEventSubscriptionCommand";
119
122
  export * from "./ModifyIntegrationCommand";
120
123
  export * from "./ModifyLakehouseConfigurationCommand";
124
+ export * from "./ModifyQev2IdcApplicationCommand";
121
125
  export * from "./ModifyRedshiftIdcApplicationCommand";
122
126
  export * from "./ModifyScheduledActionCommand";
123
127
  export * from "./ModifySnapshotCopyRetentionPeriodCommand";
@@ -1159,6 +1159,18 @@ export declare class IntegrationTargetNotFoundFault extends __BaseException {
1159
1159
  */
1160
1160
  constructor(opts: __ExceptionOptionType<IntegrationTargetNotFoundFault, __BaseException>);
1161
1161
  }
1162
+ /**
1163
+ * <p>The Amazon Redshift Query Editor (QEV2) IAM Identity Center application already exists. Use a different application name or describe existing applications to find the ARN.</p>
1164
+ * @public
1165
+ */
1166
+ export declare class Qev2IdcApplicationAlreadyExistsFault extends __BaseException {
1167
+ readonly name: "Qev2IdcApplicationAlreadyExistsFault";
1168
+ readonly $fault: "client";
1169
+ /**
1170
+ * @internal
1171
+ */
1172
+ constructor(opts: __ExceptionOptionType<Qev2IdcApplicationAlreadyExistsFault, __BaseException>);
1173
+ }
1162
1174
  /**
1163
1175
  * <p>The application you attempted to add already exists.</p>
1164
1176
  * @public
@@ -1479,6 +1491,18 @@ export declare class IntegrationNotFoundFault extends __BaseException {
1479
1491
  */
1480
1492
  constructor(opts: __ExceptionOptionType<IntegrationNotFoundFault, __BaseException>);
1481
1493
  }
1494
+ /**
1495
+ * <p>The specified Amazon Redshift Query Editor (QEV2) IAM Identity Center application doesn't exist. Verify that the application ARN is correct and that the application exists in this Region.</p>
1496
+ * @public
1497
+ */
1498
+ export declare class Qev2IdcApplicationNotExistsFault extends __BaseException {
1499
+ readonly name: "Qev2IdcApplicationNotExistsFault";
1500
+ readonly $fault: "client";
1501
+ /**
1502
+ * @internal
1503
+ */
1504
+ constructor(opts: __ExceptionOptionType<Qev2IdcApplicationNotExistsFault, __BaseException>);
1505
+ }
1482
1506
  /**
1483
1507
  * <p>The scheduled action cannot be found. </p>
1484
1508
  * @public
@@ -4090,6 +4090,82 @@ export interface Integration {
4090
4090
  */
4091
4091
  Tags?: Tag[] | undefined;
4092
4092
  }
4093
+ /**
4094
+ * @public
4095
+ */
4096
+ export interface CreateQev2IdcApplicationMessage {
4097
+ /**
4098
+ * <p>The Amazon Resource Name (ARN) of the IAM Identity Center instance used to create the Amazon Redshift Query Editor (QEV2) managed application.</p>
4099
+ * @public
4100
+ */
4101
+ IdcInstanceArn: string | undefined;
4102
+ /**
4103
+ * <p>The name of the Amazon Redshift Query Editor (QEV2) application in IAM Identity Center.</p>
4104
+ * @public
4105
+ */
4106
+ Qev2IdcApplicationName: string | undefined;
4107
+ /**
4108
+ * <p>The display name for the Amazon Redshift Query Editor (QEV2) IAM Identity Center application. It appears in the console.</p>
4109
+ * @public
4110
+ */
4111
+ IdcDisplayName: string | undefined;
4112
+ /**
4113
+ * <p>A list of tags to associate with the application. Tags are key-value pairs that you can use to organize and identify your resources.</p>
4114
+ * @public
4115
+ */
4116
+ Tags?: Tag[] | undefined;
4117
+ }
4118
+ /**
4119
+ * <p>Contains configuration and status information for an Amazon Redshift Query Editor (QEV2) application that is registered with IAM Identity Center.</p>
4120
+ * @public
4121
+ */
4122
+ export interface Qev2IdcApplication {
4123
+ /**
4124
+ * <p>The Amazon Resource Name (ARN) for the IAM Identity Center instance that the Amazon Redshift Query Editor (QEV2) application integrates with.</p>
4125
+ * @public
4126
+ */
4127
+ IdcInstanceArn?: string | undefined;
4128
+ /**
4129
+ * <p>The name of the Amazon Redshift Query Editor (QEV2) application in IAM Identity Center.</p>
4130
+ * @public
4131
+ */
4132
+ Qev2IdcApplicationName?: string | undefined;
4133
+ /**
4134
+ * <p>The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor (QEV2) application that integrates with IAM Identity Center.</p>
4135
+ * @public
4136
+ */
4137
+ Qev2IdcApplicationArn?: string | undefined;
4138
+ /**
4139
+ * <p>The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor (QEV2) IAM Identity Center managed application.</p>
4140
+ * @public
4141
+ */
4142
+ IdcManagedApplicationArn?: string | undefined;
4143
+ /**
4144
+ * <p>The onboarding status for the Amazon Redshift Query Editor (QEV2) IAM Identity Center application.</p>
4145
+ * @public
4146
+ */
4147
+ IdcOnboardStatus?: string | undefined;
4148
+ /**
4149
+ * <p>The display name for the Amazon Redshift Query Editor (QEV2) IAM Identity Center application. It appears in the console.</p>
4150
+ * @public
4151
+ */
4152
+ IdcDisplayName?: string | undefined;
4153
+ /**
4154
+ * <p>A list of tags associated with the application. Tags are key-value pairs that you can use to organize and identify your resources.</p>
4155
+ * @public
4156
+ */
4157
+ Tags?: Tag[] | undefined;
4158
+ }
4159
+ /**
4160
+ * @public
4161
+ */
4162
+ export interface CreateQev2IdcApplicationResult {
4163
+ /**
4164
+ * <p>Contains configuration and status information for an Amazon Redshift Query Editor (QEV2) application that is registered with IAM Identity Center.</p>
4165
+ * @public
4166
+ */
4167
+ Qev2IdcApplication?: Qev2IdcApplication | undefined;
4168
+ }
4093
4169
  /**
4094
4170
  * <p>The Lake Formation scope.</p>
4095
4171
  * @public
@@ -5205,6 +5281,16 @@ export interface DeleteIntegrationMessage {
5205
5281
  */
5206
5282
  IntegrationArn: string | undefined;
5207
5283
  }
5284
+ /**
5285
+ * @public
5286
+ */
5287
+ export interface DeleteQev2IdcApplicationMessage {
5288
+ /**
5289
+ * <p>The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor (QEV2) IAM Identity Center application to delete.</p>
5290
+ * @public
5291
+ */
5292
+ Qev2IdcApplicationArn: string | undefined;
5293
+ }
5208
5294
  /**
5209
5295
  * @public
5210
5296
  */
@@ -7336,6 +7422,53 @@ export interface DescribePartnersOutputMessage {
7336
7422
  */
7337
7423
  PartnerIntegrationInfoList?: PartnerIntegrationInfo[] | undefined;
7338
7424
  }
7425
+ /**
7426
+ * @public
7427
+ */
7428
+ export interface DescribeQev2IdcApplicationsMessage {
7429
+ /**
7430
+ * <p>The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor (QEV2) application that integrates with IAM Identity Center.</p>
7431
+ * @public
7432
+ */
7433
+ Qev2IdcApplicationArn?: string | undefined;
7434
+ /**
7435
+ * <p>The maximum number of response records to return in each call. If the number of remaining response records
7436
+ * exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve
7437
+ * the next set of records by retrying the command with the returned marker value.</p>
7438
+ * @public
7439
+ */
7440
+ MaxRecords?: number | undefined;
7441
+ /**
7442
+ * <p>A value that indicates the starting point for the next set of response records in a subsequent request. If a
7443
+ * value is returned in a response, you can retrieve the next set
7444
+ * of records by providing this returned marker value in the Marker parameter
7445
+ * and retrying the command. If the Marker field is empty, all response
7446
+ * records have been retrieved for the request.
7447
+ * </p>
7448
+ * @public
7449
+ */
7450
+ Marker?: string | undefined;
7451
+ }
7452
+ /**
7453
+ * @public
7454
+ */
7455
+ export interface DescribeQev2IdcApplicationsResult {
7456
+ /**
7457
+ * <p>The list of Amazon Redshift Query Editor (QEV2) IAM Identity Center applications.</p>
7458
+ * @public
7459
+ */
7460
+ Qev2IdcApplications?: Qev2IdcApplication[] | undefined;
7461
+ /**
7462
+ * <p>A value that indicates the starting point for the next set of response records in a subsequent
7463
+ * request. If a value is returned in a response, you can retrieve the next set
7464
+ * of records by providing this returned marker value in the Marker parameter
7465
+ * and retrying the command. If the Marker field is empty, all response
7466
+ * records have been retrieved for the request.
7467
+ * </p>
7468
+ * @public
7469
+ */
7470
+ Marker?: string | undefined;
7471
+ }
7339
7472
  /**
7340
7473
  * @public
7341
7474
  */
@@ -9571,150 +9704,3 @@ export interface ModifyClusterSubnetGroupResult {
9571
9704
  */
9572
9705
  ClusterSubnetGroup?: ClusterSubnetGroup | undefined;
9573
9706
  }
9574
- /**
9575
- * @public
9576
- */
9577
- export interface ModifyCustomDomainAssociationMessage {
9578
- /**
9579
- * <p>The custom domain name for a changed custom domain association.</p>
9580
- * @public
9581
- */
9582
- CustomDomainName: string | undefined;
9583
- /**
9584
- * <p>The certificate Amazon Resource Name (ARN) for the changed custom domain association.</p>
9585
- * @public
9586
- */
9587
- CustomDomainCertificateArn: string | undefined;
9588
- /**
9589
- * <p>The identifier of the cluster to change a custom domain association for.</p>
9590
- * @public
9591
- */
9592
- ClusterIdentifier: string | undefined;
9593
- }
9594
- /**
9595
- * @public
9596
- */
9597
- export interface ModifyCustomDomainAssociationResult {
9598
- /**
9599
- * <p>The custom domain name associated with the result for the changed custom domain association.</p>
9600
- * @public
9601
- */
9602
- CustomDomainName?: string | undefined;
9603
- /**
9604
- * <p>The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.</p>
9605
- * @public
9606
- */
9607
- CustomDomainCertificateArn?: string | undefined;
9608
- /**
9609
- * <p>The identifier of the cluster associated with the result for the changed custom domain association.</p>
9610
- * @public
9611
- */
9612
- ClusterIdentifier?: string | undefined;
9613
- /**
9614
- * <p>The certificate expiration time associated with the result for the changed custom domain association.</p>
9615
- * @public
9616
- */
9617
- CustomDomainCertExpiryTime?: string | undefined;
9618
- }
9619
- /**
9620
- * @public
9621
- */
9622
- export interface ModifyEndpointAccessMessage {
9623
- /**
9624
- * <p>The endpoint to be modified.</p>
9625
- * @public
9626
- */
9627
- EndpointName: string | undefined;
9628
- /**
9629
- * <p>The complete list of VPC security groups associated with the endpoint after the endpoint is modified.</p>
9630
- * @public
9631
- */
9632
- VpcSecurityGroupIds?: string[] | undefined;
9633
- }
9634
- /**
9635
- * <p></p>
9636
- * @public
9637
- */
9638
- export interface ModifyEventSubscriptionMessage {
9639
- /**
9640
- * <p>The name of the modified Amazon Redshift event notification subscription.</p>
9641
- * @public
9642
- */
9643
- SubscriptionName: string | undefined;
9644
- /**
9645
- * <p>The Amazon Resource Name (ARN) of the SNS topic to be used by the event
9646
- * notification subscription.</p>
9647
- * @public
9648
- */
9649
- SnsTopicArn?: string | undefined;
9650
- /**
9651
- * <p>The type of source that will be generating the events. For example, if you want to
9652
- * be notified of events generated by a cluster, you would set this parameter to cluster.
9653
- * If this value is not specified, events are returned for all Amazon Redshift objects in your
9654
- * Amazon Web Services account. You must specify a source type in order to specify source IDs.</p>
9655
- * <p>Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.</p>
9656
- * @public
9657
- */
9658
- SourceType?: string | undefined;
9659
- /**
9660
- * <p>A list of one or more identifiers of Amazon Redshift source objects. All of the objects
9661
- * must be of the same type as was specified in the source type parameter. The event
9662
- * subscription will return only events generated by the specified objects. If not
9663
- * specified, then events are returned for all objects within the source type
9664
- * specified.</p>
9665
- * <p>Example: my-cluster-1, my-cluster-2</p>
9666
- * <p>Example: my-snapshot-20131010</p>
9667
- * @public
9668
- */
9669
- SourceIds?: string[] | undefined;
9670
- /**
9671
- * <p>Specifies the Amazon Redshift event categories to be published by the event notification
9672
- * subscription.</p>
9673
- * <p>Values: configuration, management, monitoring, security, pending</p>
9674
- * @public
9675
- */
9676
- EventCategories?: string[] | undefined;
9677
- /**
9678
- * <p>Specifies the Amazon Redshift event severity to be published by the event notification
9679
- * subscription.</p>
9680
- * <p>Values: ERROR, INFO</p>
9681
- * @public
9682
- */
9683
- Severity?: string | undefined;
9684
- /**
9685
- * <p>A Boolean value indicating if the subscription is enabled. <code>true</code>
9686
- * indicates the subscription is enabled </p>
9687
- * @public
9688
- */
9689
- Enabled?: boolean | undefined;
9690
- }
9691
- /**
9692
- * @public
9693
- */
9694
- export interface ModifyEventSubscriptionResult {
9695
- /**
9696
- * <p>Describes event subscriptions.</p>
9697
- * @public
9698
- */
9699
- EventSubscription?: EventSubscription | undefined;
9700
- }
9701
- /**
9702
- * @public
9703
- */
9704
- export interface ModifyIntegrationMessage {
9705
- /**
9706
- * <p>The unique identifier of the integration to modify.</p>
9707
- * @public
9708
- */
9709
- IntegrationArn: string | undefined;
9710
- /**
9711
- * <p>A new description for the integration.</p>
9712
- * @public
9713
- */
9714
- Description?: string | undefined;
9715
- /**
9716
- * <p>A new name for the integration.</p>
9717
- * @public
9718
- */
9719
- IntegrationName?: string | undefined;
9720
- }