@aws-sdk/client-redshift 3.452.0 → 3.458.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.
- package/README.md +160 -128
- package/dist-cjs/Redshift.js +8 -0
- package/dist-cjs/commands/CreateRedshiftIdcApplicationCommand.js +51 -0
- package/dist-cjs/commands/DeleteRedshiftIdcApplicationCommand.js +51 -0
- package/dist-cjs/commands/DescribeRedshiftIdcApplicationsCommand.js +51 -0
- package/dist-cjs/commands/ModifyRedshiftIdcApplicationCommand.js +51 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +74 -2
- package/dist-cjs/pagination/DescribeRedshiftIdcApplicationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_query.js +657 -6
- package/dist-es/Redshift.js +8 -0
- package/dist-es/commands/CreateRedshiftIdcApplicationCommand.js +47 -0
- package/dist-es/commands/DeleteRedshiftIdcApplicationCommand.js +47 -0
- package/dist-es/commands/DescribeRedshiftIdcApplicationsCommand.js +47 -0
- package/dist-es/commands/ModifyRedshiftIdcApplicationCommand.js +47 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +68 -0
- package/dist-es/pagination/DescribeRedshiftIdcApplicationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +645 -2
- package/dist-types/Redshift.d.ts +28 -0
- package/dist-types/RedshiftClient.d.ts +6 -2
- package/dist-types/commands/AssociateDataShareConsumerCommand.d.ts +3 -0
- package/dist-types/commands/AuthorizeDataShareCommand.d.ts +3 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +4 -0
- package/dist-types/commands/CreateRedshiftIdcApplicationCommand.d.ts +140 -0
- package/dist-types/commands/DeauthorizeDataShareCommand.d.ts +2 -0
- package/dist-types/commands/DeleteRedshiftIdcApplicationCommand.d.ts +84 -0
- package/dist-types/commands/DescribeClusterVersionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeCustomDomainAssociationsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDataSharesCommand.d.ts +3 -1
- package/dist-types/commands/DescribeDataSharesForConsumerCommand.d.ts +3 -1
- package/dist-types/commands/DescribeDataSharesForProducerCommand.d.ts +3 -1
- package/dist-types/commands/DescribeDefaultClusterParametersCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointAccessCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointAuthorizationCommand.d.ts +1 -2
- package/dist-types/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +119 -0
- package/dist-types/commands/DisassociateDataShareConsumerCommand.d.ts +2 -0
- package/dist-types/commands/ModifyRedshiftIdcApplicationCommand.d.ts +136 -0
- package/dist-types/commands/RejectDataShareCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +291 -361
- package/dist-types/models/models_1.d.ts +456 -1
- package/dist-types/pagination/DescribeRedshiftIdcApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_query.d.ts +36 -0
- package/dist-types/ts3.4/Redshift.d.ts +68 -0
- package/dist-types/ts3.4/RedshiftClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateRedshiftIdcApplicationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteRedshiftIdcApplicationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterVersionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeCustomDomainAssociationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeDataSharesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDataSharesForConsumerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDataSharesForProducerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDefaultClusterParametersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeEndpointAccessCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeEndpointAuthorizationCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ModifyRedshiftIdcApplicationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +121 -68
- package/dist-types/ts3.4/models/models_1.d.ts +96 -0
- package/dist-types/ts3.4/pagination/DescribeRedshiftIdcApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +48 -0
- package/package.json +3 -3
|
@@ -474,6 +474,11 @@ export interface AssociateDataShareConsumerMessage {
|
|
|
474
474
|
* <p>From a datashare consumer account, associates a datashare with all existing and future namespaces in the specified Amazon Web Services Region.</p>
|
|
475
475
|
*/
|
|
476
476
|
ConsumerRegion?: string;
|
|
477
|
+
/**
|
|
478
|
+
* @public
|
|
479
|
+
* <p>If set to true, allows write operations for a datashare.</p>
|
|
480
|
+
*/
|
|
481
|
+
AllowWrites?: boolean;
|
|
477
482
|
}
|
|
478
483
|
/**
|
|
479
484
|
* @public
|
|
@@ -523,6 +528,16 @@ export interface DataShareAssociation {
|
|
|
523
528
|
* <p>The status change data of the datashare that is associated.</p>
|
|
524
529
|
*/
|
|
525
530
|
StatusChangeDate?: Date;
|
|
531
|
+
/**
|
|
532
|
+
* @public
|
|
533
|
+
* <p>Specifies whether write operations were allowed during data share authorization.</p>
|
|
534
|
+
*/
|
|
535
|
+
ProducerAllowedWrites?: boolean;
|
|
536
|
+
/**
|
|
537
|
+
* @public
|
|
538
|
+
* <p>Specifies whether write operations were allowed during data share association.</p>
|
|
539
|
+
*/
|
|
540
|
+
ConsumerAcceptedWrites?: boolean;
|
|
526
541
|
}
|
|
527
542
|
/**
|
|
528
543
|
* @public
|
|
@@ -928,6 +943,28 @@ export interface AuthorizeDataShareMessage {
|
|
|
928
943
|
* <p>The identifier of the data consumer that is authorized to access the datashare. This identifier is an Amazon Web Services account ID or a keyword, such as ADX.</p>
|
|
929
944
|
*/
|
|
930
945
|
ConsumerIdentifier: string | undefined;
|
|
946
|
+
/**
|
|
947
|
+
* @public
|
|
948
|
+
* <p>If set to true, allows write operations for a datashare.</p>
|
|
949
|
+
*/
|
|
950
|
+
AllowWrites?: boolean;
|
|
951
|
+
}
|
|
952
|
+
/**
|
|
953
|
+
* @public
|
|
954
|
+
* <p>The authorized token issuer for the Amazon Redshift IAM Identity Center application.</p>
|
|
955
|
+
*/
|
|
956
|
+
export interface AuthorizedTokenIssuer {
|
|
957
|
+
/**
|
|
958
|
+
* @public
|
|
959
|
+
* <p>The ARN for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.</p>
|
|
960
|
+
*/
|
|
961
|
+
TrustedTokenIssuerArn?: string;
|
|
962
|
+
/**
|
|
963
|
+
* @public
|
|
964
|
+
* <p>The list of audiences for the authorized token issuer for integrating Amazon Redshift
|
|
965
|
+
* with IDC Identity Center.</p>
|
|
966
|
+
*/
|
|
967
|
+
AuthorizedAudiencesList?: string[];
|
|
931
968
|
}
|
|
932
969
|
/**
|
|
933
970
|
* @public
|
|
@@ -3948,6 +3985,11 @@ export interface CreateClusterMessage {
|
|
|
3948
3985
|
* <p>If true, Amazon Redshift will deploy the cluster in two Availability Zones (AZ).</p>
|
|
3949
3986
|
*/
|
|
3950
3987
|
MultiAZ?: boolean;
|
|
3988
|
+
/**
|
|
3989
|
+
* @public
|
|
3990
|
+
* <p>The Amazon resource name (ARN) of the Amazon Redshift IAM Identity Center application.</p>
|
|
3991
|
+
*/
|
|
3992
|
+
RedshiftIdcApplicationArn?: string;
|
|
3951
3993
|
}
|
|
3952
3994
|
/**
|
|
3953
3995
|
* @public
|
|
@@ -4111,6 +4153,18 @@ export declare class NumberOfNodesQuotaExceededFault extends __BaseException {
|
|
|
4111
4153
|
*/
|
|
4112
4154
|
constructor(opts: __ExceptionOptionType<NumberOfNodesQuotaExceededFault, __BaseException>);
|
|
4113
4155
|
}
|
|
4156
|
+
/**
|
|
4157
|
+
* @public
|
|
4158
|
+
* <p>The application you attempted to find doesn't exist.</p>
|
|
4159
|
+
*/
|
|
4160
|
+
export declare class RedshiftIdcApplicationNotExistsFault extends __BaseException {
|
|
4161
|
+
readonly name: "RedshiftIdcApplicationNotExistsFault";
|
|
4162
|
+
readonly $fault: "client";
|
|
4163
|
+
/**
|
|
4164
|
+
* @internal
|
|
4165
|
+
*/
|
|
4166
|
+
constructor(opts: __ExceptionOptionType<RedshiftIdcApplicationNotExistsFault, __BaseException>);
|
|
4167
|
+
}
|
|
4114
4168
|
/**
|
|
4115
4169
|
* @public
|
|
4116
4170
|
* <p>We could not find the specified snapshot schedule. </p>
|
|
@@ -5034,6 +5088,233 @@ export declare class HsmConfigurationQuotaExceededFault extends __BaseException
|
|
|
5034
5088
|
*/
|
|
5035
5089
|
constructor(opts: __ExceptionOptionType<HsmConfigurationQuotaExceededFault, __BaseException>);
|
|
5036
5090
|
}
|
|
5091
|
+
/**
|
|
5092
|
+
* @public
|
|
5093
|
+
* @enum
|
|
5094
|
+
*/
|
|
5095
|
+
export declare const ServiceAuthorization: {
|
|
5096
|
+
readonly DISABLED: "Disabled";
|
|
5097
|
+
readonly ENABLED: "Enabled";
|
|
5098
|
+
};
|
|
5099
|
+
/**
|
|
5100
|
+
* @public
|
|
5101
|
+
*/
|
|
5102
|
+
export type ServiceAuthorization = (typeof ServiceAuthorization)[keyof typeof ServiceAuthorization];
|
|
5103
|
+
/**
|
|
5104
|
+
* @public
|
|
5105
|
+
* <p>The Lake Formation scope.</p>
|
|
5106
|
+
*/
|
|
5107
|
+
export interface LakeFormationQuery {
|
|
5108
|
+
/**
|
|
5109
|
+
* @public
|
|
5110
|
+
* <p>Determines whether the query scope is enabled or disabled.</p>
|
|
5111
|
+
*/
|
|
5112
|
+
Authorization: ServiceAuthorization | undefined;
|
|
5113
|
+
}
|
|
5114
|
+
/**
|
|
5115
|
+
* @public
|
|
5116
|
+
* <p>A list of scopes set up for Lake Formation integration.</p>
|
|
5117
|
+
*/
|
|
5118
|
+
export type LakeFormationScopeUnion = LakeFormationScopeUnion.LakeFormationQueryMember | LakeFormationScopeUnion.$UnknownMember;
|
|
5119
|
+
/**
|
|
5120
|
+
* @public
|
|
5121
|
+
*/
|
|
5122
|
+
export declare namespace LakeFormationScopeUnion {
|
|
5123
|
+
/**
|
|
5124
|
+
* @public
|
|
5125
|
+
* <p>The Lake Formation scope.</p>
|
|
5126
|
+
*/
|
|
5127
|
+
interface LakeFormationQueryMember {
|
|
5128
|
+
LakeFormationQuery: LakeFormationQuery;
|
|
5129
|
+
$unknown?: never;
|
|
5130
|
+
}
|
|
5131
|
+
/**
|
|
5132
|
+
* @public
|
|
5133
|
+
*/
|
|
5134
|
+
interface $UnknownMember {
|
|
5135
|
+
LakeFormationQuery?: never;
|
|
5136
|
+
$unknown: [string, any];
|
|
5137
|
+
}
|
|
5138
|
+
interface Visitor<T> {
|
|
5139
|
+
LakeFormationQuery: (value: LakeFormationQuery) => T;
|
|
5140
|
+
_: (name: string, value: any) => T;
|
|
5141
|
+
}
|
|
5142
|
+
const visit: <T>(value: LakeFormationScopeUnion, visitor: Visitor<T>) => T;
|
|
5143
|
+
}
|
|
5144
|
+
/**
|
|
5145
|
+
* @public
|
|
5146
|
+
* <p>A list of service integrations.</p>
|
|
5147
|
+
*/
|
|
5148
|
+
export type ServiceIntegrationsUnion = ServiceIntegrationsUnion.LakeFormationMember | ServiceIntegrationsUnion.$UnknownMember;
|
|
5149
|
+
/**
|
|
5150
|
+
* @public
|
|
5151
|
+
*/
|
|
5152
|
+
export declare namespace ServiceIntegrationsUnion {
|
|
5153
|
+
/**
|
|
5154
|
+
* @public
|
|
5155
|
+
* <p>A list of scopes set up for Lake Formation integration.</p>
|
|
5156
|
+
*/
|
|
5157
|
+
interface LakeFormationMember {
|
|
5158
|
+
LakeFormation: LakeFormationScopeUnion[];
|
|
5159
|
+
$unknown?: never;
|
|
5160
|
+
}
|
|
5161
|
+
/**
|
|
5162
|
+
* @public
|
|
5163
|
+
*/
|
|
5164
|
+
interface $UnknownMember {
|
|
5165
|
+
LakeFormation?: never;
|
|
5166
|
+
$unknown: [string, any];
|
|
5167
|
+
}
|
|
5168
|
+
interface Visitor<T> {
|
|
5169
|
+
LakeFormation: (value: LakeFormationScopeUnion[]) => T;
|
|
5170
|
+
_: (name: string, value: any) => T;
|
|
5171
|
+
}
|
|
5172
|
+
const visit: <T>(value: ServiceIntegrationsUnion, visitor: Visitor<T>) => T;
|
|
5173
|
+
}
|
|
5174
|
+
/**
|
|
5175
|
+
* @public
|
|
5176
|
+
*/
|
|
5177
|
+
export interface CreateRedshiftIdcApplicationMessage {
|
|
5178
|
+
/**
|
|
5179
|
+
* @public
|
|
5180
|
+
* <p>The Amazon resource name (ARN) of the IAM Identity Center instance where Amazon Redshift creates a new managed application.</p>
|
|
5181
|
+
*/
|
|
5182
|
+
IdcInstanceArn: string | undefined;
|
|
5183
|
+
/**
|
|
5184
|
+
* @public
|
|
5185
|
+
* <p>The name of the Redshift application in IAM Identity Center.</p>
|
|
5186
|
+
*/
|
|
5187
|
+
RedshiftIdcApplicationName: string | undefined;
|
|
5188
|
+
/**
|
|
5189
|
+
* @public
|
|
5190
|
+
* <p>The namespace for the Amazon Redshift IAM Identity Center application instance. It determines which managed application
|
|
5191
|
+
* verifies the connection token.</p>
|
|
5192
|
+
*/
|
|
5193
|
+
IdentityNamespace?: string;
|
|
5194
|
+
/**
|
|
5195
|
+
* @public
|
|
5196
|
+
* <p>The display name for the Amazon Redshift IAM Identity Center application instance. It appears in the console.</p>
|
|
5197
|
+
*/
|
|
5198
|
+
IdcDisplayName: string | undefined;
|
|
5199
|
+
/**
|
|
5200
|
+
* @public
|
|
5201
|
+
* <p>The IAM role ARN for the Amazon Redshift IAM Identity Center application instance. It has the required permissions
|
|
5202
|
+
* to be assumed and invoke the IDC Identity Center API.</p>
|
|
5203
|
+
*/
|
|
5204
|
+
IamRoleArn: string | undefined;
|
|
5205
|
+
/**
|
|
5206
|
+
* @public
|
|
5207
|
+
* <p>The token issuer list for the Amazon Redshift IAM Identity Center application instance.</p>
|
|
5208
|
+
*/
|
|
5209
|
+
AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
|
|
5210
|
+
/**
|
|
5211
|
+
* @public
|
|
5212
|
+
* <p>A collection of service integrations for the Redshift IAM Identity Center application.</p>
|
|
5213
|
+
*/
|
|
5214
|
+
ServiceIntegrations?: ServiceIntegrationsUnion[];
|
|
5215
|
+
}
|
|
5216
|
+
/**
|
|
5217
|
+
* @public
|
|
5218
|
+
* <p>Contains properties for the Redshift IDC application.</p>
|
|
5219
|
+
*/
|
|
5220
|
+
export interface RedshiftIdcApplication {
|
|
5221
|
+
/**
|
|
5222
|
+
* @public
|
|
5223
|
+
* <p>The ARN for the IAM Identity Center instance that Redshift integrates with.</p>
|
|
5224
|
+
*/
|
|
5225
|
+
IdcInstanceArn?: string;
|
|
5226
|
+
/**
|
|
5227
|
+
* @public
|
|
5228
|
+
* <p>The name of the Redshift application in IAM Identity Center.</p>
|
|
5229
|
+
*/
|
|
5230
|
+
RedshiftIdcApplicationName?: string;
|
|
5231
|
+
/**
|
|
5232
|
+
* @public
|
|
5233
|
+
* <p>The ARN for the Redshift application that integrates with IAM Identity Center.</p>
|
|
5234
|
+
*/
|
|
5235
|
+
RedshiftIdcApplicationArn?: string;
|
|
5236
|
+
/**
|
|
5237
|
+
* @public
|
|
5238
|
+
* <p>The identity namespace for the Amazon Redshift IAM Identity Center application. It determines which managed application verifies the connection token.</p>
|
|
5239
|
+
*/
|
|
5240
|
+
IdentityNamespace?: string;
|
|
5241
|
+
/**
|
|
5242
|
+
* @public
|
|
5243
|
+
* <p>The display name for the Amazon Redshift IAM Identity Center application. It appears on the console.</p>
|
|
5244
|
+
*/
|
|
5245
|
+
IdcDisplayName?: string;
|
|
5246
|
+
/**
|
|
5247
|
+
* @public
|
|
5248
|
+
* <p>The ARN for the Amazon Redshift IAM Identity Center application. It has the required permissions to be assumed and invoke the IDC Identity Center API.</p>
|
|
5249
|
+
*/
|
|
5250
|
+
IamRoleArn?: string;
|
|
5251
|
+
/**
|
|
5252
|
+
* @public
|
|
5253
|
+
* <p>The ARN for the Amazon Redshift IAM Identity Center application.</p>
|
|
5254
|
+
*/
|
|
5255
|
+
IdcManagedApplicationArn?: string;
|
|
5256
|
+
/**
|
|
5257
|
+
* @public
|
|
5258
|
+
* <p>The onboarding status for the Amazon Redshift IAM Identity Center application.</p>
|
|
5259
|
+
*/
|
|
5260
|
+
IdcOnboardStatus?: string;
|
|
5261
|
+
/**
|
|
5262
|
+
* @public
|
|
5263
|
+
* <p>The authorized token issuer list for the Amazon Redshift IAM Identity Center application.</p>
|
|
5264
|
+
*/
|
|
5265
|
+
AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
|
|
5266
|
+
/**
|
|
5267
|
+
* @public
|
|
5268
|
+
* <p>A list of service integrations for the Redshift IAM Identity Center application.</p>
|
|
5269
|
+
*/
|
|
5270
|
+
ServiceIntegrations?: ServiceIntegrationsUnion[];
|
|
5271
|
+
}
|
|
5272
|
+
/**
|
|
5273
|
+
* @public
|
|
5274
|
+
*/
|
|
5275
|
+
export interface CreateRedshiftIdcApplicationResult {
|
|
5276
|
+
/**
|
|
5277
|
+
* @public
|
|
5278
|
+
* <p>Contains properties for the Redshift IDC application.</p>
|
|
5279
|
+
*/
|
|
5280
|
+
RedshiftIdcApplication?: RedshiftIdcApplication;
|
|
5281
|
+
}
|
|
5282
|
+
/**
|
|
5283
|
+
* @public
|
|
5284
|
+
* <p>A dependent service denied access for the integration.</p>
|
|
5285
|
+
*/
|
|
5286
|
+
export declare class DependentServiceAccessDeniedFault extends __BaseException {
|
|
5287
|
+
readonly name: "DependentServiceAccessDeniedFault";
|
|
5288
|
+
readonly $fault: "client";
|
|
5289
|
+
/**
|
|
5290
|
+
* @internal
|
|
5291
|
+
*/
|
|
5292
|
+
constructor(opts: __ExceptionOptionType<DependentServiceAccessDeniedFault, __BaseException>);
|
|
5293
|
+
}
|
|
5294
|
+
/**
|
|
5295
|
+
* @public
|
|
5296
|
+
* <p>The application you attempted to add already exists.</p>
|
|
5297
|
+
*/
|
|
5298
|
+
export declare class RedshiftIdcApplicationAlreadyExistsFault extends __BaseException {
|
|
5299
|
+
readonly name: "RedshiftIdcApplicationAlreadyExistsFault";
|
|
5300
|
+
readonly $fault: "client";
|
|
5301
|
+
/**
|
|
5302
|
+
* @internal
|
|
5303
|
+
*/
|
|
5304
|
+
constructor(opts: __ExceptionOptionType<RedshiftIdcApplicationAlreadyExistsFault, __BaseException>);
|
|
5305
|
+
}
|
|
5306
|
+
/**
|
|
5307
|
+
* @public
|
|
5308
|
+
* <p>The maximum number of Redshift IAM Identity Center applications was exceeded.</p>
|
|
5309
|
+
*/
|
|
5310
|
+
export declare class RedshiftIdcApplicationQuotaExceededFault extends __BaseException {
|
|
5311
|
+
readonly name: "RedshiftIdcApplicationQuotaExceededFault";
|
|
5312
|
+
readonly $fault: "client";
|
|
5313
|
+
/**
|
|
5314
|
+
* @internal
|
|
5315
|
+
*/
|
|
5316
|
+
constructor(opts: __ExceptionOptionType<RedshiftIdcApplicationQuotaExceededFault, __BaseException>);
|
|
5317
|
+
}
|
|
5037
5318
|
/**
|
|
5038
5319
|
* @public
|
|
5039
5320
|
* <p>Describes a pause cluster operation. For example, a scheduled action to run the <code>PauseCluster</code> API operation. </p>
|
|
@@ -6178,6 +6459,16 @@ export declare class InvalidHsmConfigurationStateFault extends __BaseException {
|
|
|
6178
6459
|
*/
|
|
6179
6460
|
constructor(opts: __ExceptionOptionType<InvalidHsmConfigurationStateFault, __BaseException>);
|
|
6180
6461
|
}
|
|
6462
|
+
/**
|
|
6463
|
+
* @public
|
|
6464
|
+
*/
|
|
6465
|
+
export interface DeleteRedshiftIdcApplicationMessage {
|
|
6466
|
+
/**
|
|
6467
|
+
* @public
|
|
6468
|
+
* <p>The ARN for a deleted Amazon Redshift IAM Identity Center application.</p>
|
|
6469
|
+
*/
|
|
6470
|
+
RedshiftIdcApplicationArn: string | undefined;
|
|
6471
|
+
}
|
|
6181
6472
|
/**
|
|
6182
6473
|
* @public
|
|
6183
6474
|
*/
|
|
@@ -6928,367 +7219,6 @@ export interface TrackListMessage {
|
|
|
6928
7219
|
*/
|
|
6929
7220
|
Marker?: string;
|
|
6930
7221
|
}
|
|
6931
|
-
/**
|
|
6932
|
-
* @public
|
|
6933
|
-
* <p></p>
|
|
6934
|
-
*/
|
|
6935
|
-
export interface DescribeClusterVersionsMessage {
|
|
6936
|
-
/**
|
|
6937
|
-
* @public
|
|
6938
|
-
* <p>The specific cluster version to return.</p>
|
|
6939
|
-
* <p>Example: <code>1.0</code>
|
|
6940
|
-
* </p>
|
|
6941
|
-
*/
|
|
6942
|
-
ClusterVersion?: string;
|
|
6943
|
-
/**
|
|
6944
|
-
* @public
|
|
6945
|
-
* <p>The name of a specific cluster parameter group family to return details
|
|
6946
|
-
* for.</p>
|
|
6947
|
-
* <p>Constraints:</p>
|
|
6948
|
-
* <ul>
|
|
6949
|
-
* <li>
|
|
6950
|
-
* <p>Must be 1 to 255 alphanumeric characters</p>
|
|
6951
|
-
* </li>
|
|
6952
|
-
* <li>
|
|
6953
|
-
* <p>First character must be a letter</p>
|
|
6954
|
-
* </li>
|
|
6955
|
-
* <li>
|
|
6956
|
-
* <p>Cannot end with a hyphen or contain two consecutive hyphens</p>
|
|
6957
|
-
* </li>
|
|
6958
|
-
* </ul>
|
|
6959
|
-
*/
|
|
6960
|
-
ClusterParameterGroupFamily?: string;
|
|
6961
|
-
/**
|
|
6962
|
-
* @public
|
|
6963
|
-
* <p>The maximum number of response records to return in each call. If the number of
|
|
6964
|
-
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
6965
|
-
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
6966
|
-
* set of records by retrying the command with the returned marker value. </p>
|
|
6967
|
-
* <p>Default: <code>100</code>
|
|
6968
|
-
* </p>
|
|
6969
|
-
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
6970
|
-
*/
|
|
6971
|
-
MaxRecords?: number;
|
|
6972
|
-
/**
|
|
6973
|
-
* @public
|
|
6974
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
6975
|
-
* records. When the results of a <a>DescribeClusterVersions</a> request exceed
|
|
6976
|
-
* the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
6977
|
-
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
6978
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
6979
|
-
* retrying the request. </p>
|
|
6980
|
-
*/
|
|
6981
|
-
Marker?: string;
|
|
6982
|
-
}
|
|
6983
|
-
/**
|
|
6984
|
-
* @public
|
|
6985
|
-
*/
|
|
6986
|
-
export interface DescribeCustomDomainAssociationsMessage {
|
|
6987
|
-
/**
|
|
6988
|
-
* @public
|
|
6989
|
-
* <p>The custom domain name for the custom domain association.</p>
|
|
6990
|
-
*/
|
|
6991
|
-
CustomDomainName?: string;
|
|
6992
|
-
/**
|
|
6993
|
-
* @public
|
|
6994
|
-
* <p>The certificate Amazon Resource Name (ARN) for the custom domain association.</p>
|
|
6995
|
-
*/
|
|
6996
|
-
CustomDomainCertificateArn?: string;
|
|
6997
|
-
/**
|
|
6998
|
-
* @public
|
|
6999
|
-
* <p>The maximum records setting for the associated custom domain.</p>
|
|
7000
|
-
*/
|
|
7001
|
-
MaxRecords?: number;
|
|
7002
|
-
/**
|
|
7003
|
-
* @public
|
|
7004
|
-
* <p>The marker for the custom domain association.</p>
|
|
7005
|
-
*/
|
|
7006
|
-
Marker?: string;
|
|
7007
|
-
}
|
|
7008
|
-
/**
|
|
7009
|
-
* @public
|
|
7010
|
-
*/
|
|
7011
|
-
export interface DescribeDataSharesMessage {
|
|
7012
|
-
/**
|
|
7013
|
-
* @public
|
|
7014
|
-
* <p>The identifier of the datashare to describe details of.</p>
|
|
7015
|
-
*/
|
|
7016
|
-
DataShareArn?: string;
|
|
7017
|
-
/**
|
|
7018
|
-
* @public
|
|
7019
|
-
* <p>The maximum number of response records to return in each call. If the number of
|
|
7020
|
-
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
7021
|
-
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
7022
|
-
* set of records by retrying the command with the returned marker value. </p>
|
|
7023
|
-
*/
|
|
7024
|
-
MaxRecords?: number;
|
|
7025
|
-
/**
|
|
7026
|
-
* @public
|
|
7027
|
-
* <p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeDataShares</a> request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>
|
|
7028
|
-
*/
|
|
7029
|
-
Marker?: string;
|
|
7030
|
-
}
|
|
7031
|
-
/**
|
|
7032
|
-
* @public
|
|
7033
|
-
*/
|
|
7034
|
-
export interface DescribeDataSharesResult {
|
|
7035
|
-
/**
|
|
7036
|
-
* @public
|
|
7037
|
-
* <p>The results returned from describing datashares.</p>
|
|
7038
|
-
*/
|
|
7039
|
-
DataShares?: DataShare[];
|
|
7040
|
-
/**
|
|
7041
|
-
* @public
|
|
7042
|
-
* <p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeDataShares</a> request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>
|
|
7043
|
-
*/
|
|
7044
|
-
Marker?: string;
|
|
7045
|
-
}
|
|
7046
|
-
/**
|
|
7047
|
-
* @public
|
|
7048
|
-
*/
|
|
7049
|
-
export interface DescribeDataSharesForConsumerMessage {
|
|
7050
|
-
/**
|
|
7051
|
-
* @public
|
|
7052
|
-
* <p>The Amazon Resource Name (ARN) of the consumer that returns in the list of datashares.</p>
|
|
7053
|
-
*/
|
|
7054
|
-
ConsumerArn?: string;
|
|
7055
|
-
/**
|
|
7056
|
-
* @public
|
|
7057
|
-
* <p>An identifier giving the status of a datashare in the consumer cluster. If this field is specified, Amazon
|
|
7058
|
-
* Redshift returns the list of datashares that have the specified status.</p>
|
|
7059
|
-
*/
|
|
7060
|
-
Status?: DataShareStatusForConsumer;
|
|
7061
|
-
/**
|
|
7062
|
-
* @public
|
|
7063
|
-
* <p>The maximum number of response records to return in each call. If the number of
|
|
7064
|
-
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
7065
|
-
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
7066
|
-
* set of records by retrying the command with the returned marker value. </p>
|
|
7067
|
-
*/
|
|
7068
|
-
MaxRecords?: number;
|
|
7069
|
-
/**
|
|
7070
|
-
* @public
|
|
7071
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
7072
|
-
* records. When the results of a <a>DescribeDataSharesForConsumer</a> request
|
|
7073
|
-
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
7074
|
-
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
7075
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
7076
|
-
* retrying the request. </p>
|
|
7077
|
-
*/
|
|
7078
|
-
Marker?: string;
|
|
7079
|
-
}
|
|
7080
|
-
/**
|
|
7081
|
-
* @public
|
|
7082
|
-
*/
|
|
7083
|
-
export interface DescribeDataSharesForConsumerResult {
|
|
7084
|
-
/**
|
|
7085
|
-
* @public
|
|
7086
|
-
* <p>Shows the results of datashares available for consumers.</p>
|
|
7087
|
-
*/
|
|
7088
|
-
DataShares?: DataShare[];
|
|
7089
|
-
/**
|
|
7090
|
-
* @public
|
|
7091
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
7092
|
-
* records. When the results of a <a>DescribeDataSharesForConsumer</a> request
|
|
7093
|
-
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
7094
|
-
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
7095
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
7096
|
-
* retrying the request. </p>
|
|
7097
|
-
*/
|
|
7098
|
-
Marker?: string;
|
|
7099
|
-
}
|
|
7100
|
-
/**
|
|
7101
|
-
* @public
|
|
7102
|
-
*/
|
|
7103
|
-
export interface DescribeDataSharesForProducerMessage {
|
|
7104
|
-
/**
|
|
7105
|
-
* @public
|
|
7106
|
-
* <p>The Amazon Resource Name (ARN) of the producer that returns in the list of datashares.</p>
|
|
7107
|
-
*/
|
|
7108
|
-
ProducerArn?: string;
|
|
7109
|
-
/**
|
|
7110
|
-
* @public
|
|
7111
|
-
* <p>An identifier giving the status of a datashare in the producer. If this field is specified, Amazon
|
|
7112
|
-
* Redshift returns the list of datashares that have the specified status.</p>
|
|
7113
|
-
*/
|
|
7114
|
-
Status?: DataShareStatusForProducer;
|
|
7115
|
-
/**
|
|
7116
|
-
* @public
|
|
7117
|
-
* <p>The maximum number of response records to return in each call. If the number of
|
|
7118
|
-
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
7119
|
-
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
7120
|
-
* set of records by retrying the command with the returned marker value. </p>
|
|
7121
|
-
*/
|
|
7122
|
-
MaxRecords?: number;
|
|
7123
|
-
/**
|
|
7124
|
-
* @public
|
|
7125
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
7126
|
-
* records. When the results of a <a>DescribeDataSharesForProducer</a> request
|
|
7127
|
-
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
7128
|
-
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
7129
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
7130
|
-
* retrying the request. </p>
|
|
7131
|
-
*/
|
|
7132
|
-
Marker?: string;
|
|
7133
|
-
}
|
|
7134
|
-
/**
|
|
7135
|
-
* @public
|
|
7136
|
-
*/
|
|
7137
|
-
export interface DescribeDataSharesForProducerResult {
|
|
7138
|
-
/**
|
|
7139
|
-
* @public
|
|
7140
|
-
* <p>Shows the results of datashares available for producers.</p>
|
|
7141
|
-
*/
|
|
7142
|
-
DataShares?: DataShare[];
|
|
7143
|
-
/**
|
|
7144
|
-
* @public
|
|
7145
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
7146
|
-
* records. When the results of a <a>DescribeDataSharesForProducer</a> request
|
|
7147
|
-
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
7148
|
-
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
7149
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
7150
|
-
* retrying the request. </p>
|
|
7151
|
-
*/
|
|
7152
|
-
Marker?: string;
|
|
7153
|
-
}
|
|
7154
|
-
/**
|
|
7155
|
-
* @public
|
|
7156
|
-
* <p></p>
|
|
7157
|
-
*/
|
|
7158
|
-
export interface DescribeDefaultClusterParametersMessage {
|
|
7159
|
-
/**
|
|
7160
|
-
* @public
|
|
7161
|
-
* <p>The name of the cluster parameter group family.</p>
|
|
7162
|
-
*/
|
|
7163
|
-
ParameterGroupFamily: string | undefined;
|
|
7164
|
-
/**
|
|
7165
|
-
* @public
|
|
7166
|
-
* <p>The maximum number of response records to return in each call. If the number of
|
|
7167
|
-
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
7168
|
-
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
7169
|
-
* set of records by retrying the command with the returned marker value. </p>
|
|
7170
|
-
* <p>Default: <code>100</code>
|
|
7171
|
-
* </p>
|
|
7172
|
-
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
7173
|
-
*/
|
|
7174
|
-
MaxRecords?: number;
|
|
7175
|
-
/**
|
|
7176
|
-
* @public
|
|
7177
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
7178
|
-
* records. When the results of a <a>DescribeDefaultClusterParameters</a>
|
|
7179
|
-
* request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in
|
|
7180
|
-
* the <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
7181
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
7182
|
-
* retrying the request. </p>
|
|
7183
|
-
*/
|
|
7184
|
-
Marker?: string;
|
|
7185
|
-
}
|
|
7186
|
-
/**
|
|
7187
|
-
* @public
|
|
7188
|
-
*/
|
|
7189
|
-
export interface DescribeDefaultClusterParametersResult {
|
|
7190
|
-
/**
|
|
7191
|
-
* @public
|
|
7192
|
-
* <p>Describes the default cluster parameters for a parameter group family.</p>
|
|
7193
|
-
*/
|
|
7194
|
-
DefaultClusterParameters?: DefaultClusterParameters;
|
|
7195
|
-
}
|
|
7196
|
-
/**
|
|
7197
|
-
* @public
|
|
7198
|
-
*/
|
|
7199
|
-
export interface DescribeEndpointAccessMessage {
|
|
7200
|
-
/**
|
|
7201
|
-
* @public
|
|
7202
|
-
* <p>The cluster identifier associated with the described endpoint.</p>
|
|
7203
|
-
*/
|
|
7204
|
-
ClusterIdentifier?: string;
|
|
7205
|
-
/**
|
|
7206
|
-
* @public
|
|
7207
|
-
* <p>The Amazon Web Services account ID of the owner of the cluster.</p>
|
|
7208
|
-
*/
|
|
7209
|
-
ResourceOwner?: string;
|
|
7210
|
-
/**
|
|
7211
|
-
* @public
|
|
7212
|
-
* <p>The name of the endpoint to be described.</p>
|
|
7213
|
-
*/
|
|
7214
|
-
EndpointName?: string;
|
|
7215
|
-
/**
|
|
7216
|
-
* @public
|
|
7217
|
-
* <p>The virtual private cloud (VPC) identifier with access to the cluster.</p>
|
|
7218
|
-
*/
|
|
7219
|
-
VpcId?: string;
|
|
7220
|
-
/**
|
|
7221
|
-
* @public
|
|
7222
|
-
* <p>The maximum number of records to include in the response. If more records exist
|
|
7223
|
-
* than the specified <code>MaxRecords</code> value, a pagination token called a <code>Marker</code> is
|
|
7224
|
-
* included in the response so that the remaining results can be retrieved.</p>
|
|
7225
|
-
*/
|
|
7226
|
-
MaxRecords?: number;
|
|
7227
|
-
/**
|
|
7228
|
-
* @public
|
|
7229
|
-
* <p>An optional pagination token provided by a previous
|
|
7230
|
-
* <code>DescribeEndpointAccess</code> request. If this parameter is specified, the
|
|
7231
|
-
* response includes only records beyond the marker, up to the value specified by the
|
|
7232
|
-
* <code>MaxRecords</code> parameter.</p>
|
|
7233
|
-
*/
|
|
7234
|
-
Marker?: string;
|
|
7235
|
-
}
|
|
7236
|
-
/**
|
|
7237
|
-
* @public
|
|
7238
|
-
*/
|
|
7239
|
-
export interface EndpointAccessList {
|
|
7240
|
-
/**
|
|
7241
|
-
* @public
|
|
7242
|
-
* <p>The list of endpoints with access to the cluster.</p>
|
|
7243
|
-
*/
|
|
7244
|
-
EndpointAccessList?: EndpointAccess[];
|
|
7245
|
-
/**
|
|
7246
|
-
* @public
|
|
7247
|
-
* <p>An optional pagination token provided by a previous
|
|
7248
|
-
* <code>DescribeEndpointAccess</code> request. If this parameter is specified, the
|
|
7249
|
-
* response includes only records beyond the marker, up to the value specified by the
|
|
7250
|
-
* <code>MaxRecords</code> parameter.</p>
|
|
7251
|
-
*/
|
|
7252
|
-
Marker?: string;
|
|
7253
|
-
}
|
|
7254
|
-
/**
|
|
7255
|
-
* @public
|
|
7256
|
-
*/
|
|
7257
|
-
export interface DescribeEndpointAuthorizationMessage {
|
|
7258
|
-
/**
|
|
7259
|
-
* @public
|
|
7260
|
-
* <p>The cluster identifier of the cluster to access.</p>
|
|
7261
|
-
*/
|
|
7262
|
-
ClusterIdentifier?: string;
|
|
7263
|
-
/**
|
|
7264
|
-
* @public
|
|
7265
|
-
* <p>The Amazon Web Services account ID of either the cluster owner (grantor) or grantee.
|
|
7266
|
-
* If <code>Grantee</code> parameter is true, then the <code>Account</code> value is of the grantor.</p>
|
|
7267
|
-
*/
|
|
7268
|
-
Account?: string;
|
|
7269
|
-
/**
|
|
7270
|
-
* @public
|
|
7271
|
-
* <p>Indicates whether to check authorization from a grantor or grantee point of view.
|
|
7272
|
-
* If true, Amazon Redshift returns endpoint authorizations that you've been granted.
|
|
7273
|
-
* If false (default), checks authorization from a grantor point of view.</p>
|
|
7274
|
-
*/
|
|
7275
|
-
Grantee?: boolean;
|
|
7276
|
-
/**
|
|
7277
|
-
* @public
|
|
7278
|
-
* <p>The maximum number of records to include in the response. If more records exist
|
|
7279
|
-
* than the specified <code>MaxRecords</code> value, a pagination token called a <code>Marker</code> is
|
|
7280
|
-
* included in the response so that the remaining results can be retrieved.</p>
|
|
7281
|
-
*/
|
|
7282
|
-
MaxRecords?: number;
|
|
7283
|
-
/**
|
|
7284
|
-
* @public
|
|
7285
|
-
* <p>An optional pagination token provided by a previous
|
|
7286
|
-
* <code>DescribeEndpointAuthorization</code> request. If this parameter is specified, the
|
|
7287
|
-
* response includes only records beyond the marker, up to the value specified by the
|
|
7288
|
-
* <code>MaxRecords</code> parameter.</p>
|
|
7289
|
-
*/
|
|
7290
|
-
Marker?: string;
|
|
7291
|
-
}
|
|
7292
7222
|
/**
|
|
7293
7223
|
* @internal
|
|
7294
7224
|
*/
|