@aws-sdk/client-redshift 3.670.0 → 3.672.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 +32 -0
- package/dist-cjs/index.js +685 -67
- package/dist-es/Redshift.js +8 -0
- package/dist-es/commands/CreateIntegrationCommand.js +22 -0
- package/dist-es/commands/DeleteIntegrationCommand.js +22 -0
- package/dist-es/commands/DescribeIntegrationsCommand.js +22 -0
- package/dist-es/commands/ModifyIntegrationCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +93 -9
- package/dist-es/models/models_1.js +14 -20
- package/dist-es/pagination/DescribeIntegrationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +458 -31
- package/dist-types/Redshift.d.ts +29 -0
- package/dist-types/RedshiftClient.d.ts +6 -2
- package/dist-types/commands/CreateIntegrationCommand.d.ts +135 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +107 -0
- package/dist-types/commands/DescribeClusterSecurityGroupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterSubnetGroupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterTracksCommand.d.ts +1 -1
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +114 -0
- package/dist-types/commands/ModifyIntegrationCommand.d.ts +113 -0
- package/dist-types/commands/ResizeClusterCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +241 -407
- package/dist-types/models/models_1.d.ts +508 -41
- package/dist-types/pagination/DescribeIntegrationsPaginator.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 +69 -0
- package/dist-types/ts3.4/RedshiftClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/DescribeClusterSecurityGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeClusterSubnetGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClusterTracksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -71
- package/dist-types/ts3.4/models/models_1.d.ts +100 -21
- package/dist-types/ts3.4/pagination/DescribeIntegrationsPaginator.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 +1 -1
|
@@ -3680,8 +3680,8 @@ export interface CreateClusterMessage {
|
|
|
3680
3680
|
* go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes"> Working with
|
|
3681
3681
|
* Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>
|
|
3682
3682
|
* <p>Valid Values:
|
|
3683
|
-
*
|
|
3684
|
-
*
|
|
3683
|
+
* <code>dc2.large</code> | <code>dc2.8xlarge</code> |
|
|
3684
|
+
* <code>ra3.large</code> | <code>ra3.xlplus</code> | <code>ra3.4xlarge</code> | <code>ra3.16xlarge</code>
|
|
3685
3685
|
* </p>
|
|
3686
3686
|
* @public
|
|
3687
3687
|
*/
|
|
@@ -5111,6 +5111,211 @@ export declare class HsmConfigurationQuotaExceededFault extends __BaseException
|
|
|
5111
5111
|
*/
|
|
5112
5112
|
constructor(opts: __ExceptionOptionType<HsmConfigurationQuotaExceededFault, __BaseException>);
|
|
5113
5113
|
}
|
|
5114
|
+
/**
|
|
5115
|
+
* @public
|
|
5116
|
+
*/
|
|
5117
|
+
export interface CreateIntegrationMessage {
|
|
5118
|
+
/**
|
|
5119
|
+
* <p>The Amazon Resource Name (ARN) of the database to use as the source for replication.</p>
|
|
5120
|
+
* @public
|
|
5121
|
+
*/
|
|
5122
|
+
SourceArn: string | undefined;
|
|
5123
|
+
/**
|
|
5124
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.</p>
|
|
5125
|
+
* @public
|
|
5126
|
+
*/
|
|
5127
|
+
TargetArn: string | undefined;
|
|
5128
|
+
/**
|
|
5129
|
+
* <p>The name of the integration.</p>
|
|
5130
|
+
* @public
|
|
5131
|
+
*/
|
|
5132
|
+
IntegrationName: string | undefined;
|
|
5133
|
+
/**
|
|
5134
|
+
* <p>An Key Management Service (KMS) key identifier for the key to use to
|
|
5135
|
+
* encrypt the integration. If you don't specify an encryption key, the default
|
|
5136
|
+
* Amazon Web Services owned key is used.</p>
|
|
5137
|
+
* @public
|
|
5138
|
+
*/
|
|
5139
|
+
KMSKeyId?: string;
|
|
5140
|
+
/**
|
|
5141
|
+
* <p>A list of tags.</p>
|
|
5142
|
+
* @public
|
|
5143
|
+
*/
|
|
5144
|
+
TagList?: Tag[];
|
|
5145
|
+
/**
|
|
5146
|
+
* <p>An optional set of non-secret key–value pairs that contains additional contextual
|
|
5147
|
+
* information about the data. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context">Encryption
|
|
5148
|
+
* context</a> in the <i>Amazon Web Services Key Management Service Developer
|
|
5149
|
+
* Guide</i>.</p>
|
|
5150
|
+
* <p>You can only include this parameter if you specify the <code>KMSKeyId</code> parameter.</p>
|
|
5151
|
+
* @public
|
|
5152
|
+
*/
|
|
5153
|
+
AdditionalEncryptionContext?: Record<string, string>;
|
|
5154
|
+
/**
|
|
5155
|
+
* <p>A description of the integration.</p>
|
|
5156
|
+
* @public
|
|
5157
|
+
*/
|
|
5158
|
+
Description?: string;
|
|
5159
|
+
}
|
|
5160
|
+
/**
|
|
5161
|
+
* <p>The error of an inbound integration.</p>
|
|
5162
|
+
* @public
|
|
5163
|
+
*/
|
|
5164
|
+
export interface IntegrationError {
|
|
5165
|
+
/**
|
|
5166
|
+
* <p>The error code of an inbound integration error.</p>
|
|
5167
|
+
* @public
|
|
5168
|
+
*/
|
|
5169
|
+
ErrorCode: string | undefined;
|
|
5170
|
+
/**
|
|
5171
|
+
* <p>The error message of an inbound integration error.</p>
|
|
5172
|
+
* @public
|
|
5173
|
+
*/
|
|
5174
|
+
ErrorMessage?: string;
|
|
5175
|
+
}
|
|
5176
|
+
/**
|
|
5177
|
+
* @public
|
|
5178
|
+
* @enum
|
|
5179
|
+
*/
|
|
5180
|
+
export declare const ZeroETLIntegrationStatus: {
|
|
5181
|
+
readonly ACTIVE: "active";
|
|
5182
|
+
readonly CREATING: "creating";
|
|
5183
|
+
readonly DELETING: "deleting";
|
|
5184
|
+
readonly FAILED: "failed";
|
|
5185
|
+
readonly MODIFYING: "modifying";
|
|
5186
|
+
readonly NEEDS_ATTENTION: "needs_attention";
|
|
5187
|
+
readonly SYNCING: "syncing";
|
|
5188
|
+
};
|
|
5189
|
+
/**
|
|
5190
|
+
* @public
|
|
5191
|
+
*/
|
|
5192
|
+
export type ZeroETLIntegrationStatus = (typeof ZeroETLIntegrationStatus)[keyof typeof ZeroETLIntegrationStatus];
|
|
5193
|
+
/**
|
|
5194
|
+
* @public
|
|
5195
|
+
*/
|
|
5196
|
+
export interface Integration {
|
|
5197
|
+
/**
|
|
5198
|
+
* <p>The Amazon Resource Name (ARN) of the integration.</p>
|
|
5199
|
+
* @public
|
|
5200
|
+
*/
|
|
5201
|
+
IntegrationArn?: string;
|
|
5202
|
+
/**
|
|
5203
|
+
* <p>The name of the integration.</p>
|
|
5204
|
+
* @public
|
|
5205
|
+
*/
|
|
5206
|
+
IntegrationName?: string;
|
|
5207
|
+
/**
|
|
5208
|
+
* <p>The Amazon Resource Name (ARN) of the database used as the source for
|
|
5209
|
+
* replication.</p>
|
|
5210
|
+
* @public
|
|
5211
|
+
*/
|
|
5212
|
+
SourceArn?: string;
|
|
5213
|
+
/**
|
|
5214
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.</p>
|
|
5215
|
+
* @public
|
|
5216
|
+
*/
|
|
5217
|
+
TargetArn?: string;
|
|
5218
|
+
/**
|
|
5219
|
+
* <p>The current status of the integration.</p>
|
|
5220
|
+
* @public
|
|
5221
|
+
*/
|
|
5222
|
+
Status?: ZeroETLIntegrationStatus;
|
|
5223
|
+
/**
|
|
5224
|
+
* <p>Any errors associated with the integration.</p>
|
|
5225
|
+
* @public
|
|
5226
|
+
*/
|
|
5227
|
+
Errors?: IntegrationError[];
|
|
5228
|
+
/**
|
|
5229
|
+
* <p>The time (UTC) when the integration was created.</p>
|
|
5230
|
+
* @public
|
|
5231
|
+
*/
|
|
5232
|
+
CreateTime?: Date;
|
|
5233
|
+
/**
|
|
5234
|
+
* <p>The description of the integration.</p>
|
|
5235
|
+
* @public
|
|
5236
|
+
*/
|
|
5237
|
+
Description?: string;
|
|
5238
|
+
/**
|
|
5239
|
+
* <p>The Key Management Service (KMS) key identifier for the key used to
|
|
5240
|
+
* encrypt the integration.</p>
|
|
5241
|
+
* @public
|
|
5242
|
+
*/
|
|
5243
|
+
KMSKeyId?: string;
|
|
5244
|
+
/**
|
|
5245
|
+
* <p>The encryption context for the integration. For more information,
|
|
5246
|
+
* see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context">Encryption context</a> in the <i>Amazon Web Services Key Management Service Developer
|
|
5247
|
+
* Guide</i>.</p>
|
|
5248
|
+
* @public
|
|
5249
|
+
*/
|
|
5250
|
+
AdditionalEncryptionContext?: Record<string, string>;
|
|
5251
|
+
/**
|
|
5252
|
+
* <p>The list of tags associated with the integration.</p>
|
|
5253
|
+
* @public
|
|
5254
|
+
*/
|
|
5255
|
+
Tags?: Tag[];
|
|
5256
|
+
}
|
|
5257
|
+
/**
|
|
5258
|
+
* <p>The integration you are trying to create already exists.</p>
|
|
5259
|
+
* @public
|
|
5260
|
+
*/
|
|
5261
|
+
export declare class IntegrationAlreadyExistsFault extends __BaseException {
|
|
5262
|
+
readonly name: "IntegrationAlreadyExistsFault";
|
|
5263
|
+
readonly $fault: "client";
|
|
5264
|
+
/**
|
|
5265
|
+
* @internal
|
|
5266
|
+
*/
|
|
5267
|
+
constructor(opts: __ExceptionOptionType<IntegrationAlreadyExistsFault, __BaseException>);
|
|
5268
|
+
}
|
|
5269
|
+
/**
|
|
5270
|
+
* <p>A conflicting conditional operation is currently in progress against this resource.
|
|
5271
|
+
* This typically occurs when there are multiple requests being made to the same resource at the same time,
|
|
5272
|
+
* and these requests conflict with each other.</p>
|
|
5273
|
+
* @public
|
|
5274
|
+
*/
|
|
5275
|
+
export declare class IntegrationConflictOperationFault extends __BaseException {
|
|
5276
|
+
readonly name: "IntegrationConflictOperationFault";
|
|
5277
|
+
readonly $fault: "client";
|
|
5278
|
+
/**
|
|
5279
|
+
* @internal
|
|
5280
|
+
*/
|
|
5281
|
+
constructor(opts: __ExceptionOptionType<IntegrationConflictOperationFault, __BaseException>);
|
|
5282
|
+
}
|
|
5283
|
+
/**
|
|
5284
|
+
* <p>You can't create any more zero-ETL integrations because the quota has been reached.</p>
|
|
5285
|
+
* @public
|
|
5286
|
+
*/
|
|
5287
|
+
export declare class IntegrationQuotaExceededFault extends __BaseException {
|
|
5288
|
+
readonly name: "IntegrationQuotaExceededFault";
|
|
5289
|
+
readonly $fault: "client";
|
|
5290
|
+
/**
|
|
5291
|
+
* @internal
|
|
5292
|
+
*/
|
|
5293
|
+
constructor(opts: __ExceptionOptionType<IntegrationQuotaExceededFault, __BaseException>);
|
|
5294
|
+
}
|
|
5295
|
+
/**
|
|
5296
|
+
* <p>The specified integration source can't be found.</p>
|
|
5297
|
+
* @public
|
|
5298
|
+
*/
|
|
5299
|
+
export declare class IntegrationSourceNotFoundFault extends __BaseException {
|
|
5300
|
+
readonly name: "IntegrationSourceNotFoundFault";
|
|
5301
|
+
readonly $fault: "client";
|
|
5302
|
+
/**
|
|
5303
|
+
* @internal
|
|
5304
|
+
*/
|
|
5305
|
+
constructor(opts: __ExceptionOptionType<IntegrationSourceNotFoundFault, __BaseException>);
|
|
5306
|
+
}
|
|
5307
|
+
/**
|
|
5308
|
+
* <p>The specified integration target can't be found.</p>
|
|
5309
|
+
* @public
|
|
5310
|
+
*/
|
|
5311
|
+
export declare class IntegrationTargetNotFoundFault extends __BaseException {
|
|
5312
|
+
readonly name: "IntegrationTargetNotFoundFault";
|
|
5313
|
+
readonly $fault: "client";
|
|
5314
|
+
/**
|
|
5315
|
+
* @internal
|
|
5316
|
+
*/
|
|
5317
|
+
constructor(opts: __ExceptionOptionType<IntegrationTargetNotFoundFault, __BaseException>);
|
|
5318
|
+
}
|
|
5114
5319
|
/**
|
|
5115
5320
|
* @public
|
|
5116
5321
|
* @enum
|
|
@@ -6482,6 +6687,40 @@ export declare class InvalidHsmConfigurationStateFault extends __BaseException {
|
|
|
6482
6687
|
*/
|
|
6483
6688
|
constructor(opts: __ExceptionOptionType<InvalidHsmConfigurationStateFault, __BaseException>);
|
|
6484
6689
|
}
|
|
6690
|
+
/**
|
|
6691
|
+
* @public
|
|
6692
|
+
*/
|
|
6693
|
+
export interface DeleteIntegrationMessage {
|
|
6694
|
+
/**
|
|
6695
|
+
* <p>The unique identifier of the integration to delete.</p>
|
|
6696
|
+
* @public
|
|
6697
|
+
*/
|
|
6698
|
+
IntegrationArn: string | undefined;
|
|
6699
|
+
}
|
|
6700
|
+
/**
|
|
6701
|
+
* <p>The integration is in an invalid state and can't perform the requested operation.</p>
|
|
6702
|
+
* @public
|
|
6703
|
+
*/
|
|
6704
|
+
export declare class IntegrationConflictStateFault extends __BaseException {
|
|
6705
|
+
readonly name: "IntegrationConflictStateFault";
|
|
6706
|
+
readonly $fault: "client";
|
|
6707
|
+
/**
|
|
6708
|
+
* @internal
|
|
6709
|
+
*/
|
|
6710
|
+
constructor(opts: __ExceptionOptionType<IntegrationConflictStateFault, __BaseException>);
|
|
6711
|
+
}
|
|
6712
|
+
/**
|
|
6713
|
+
* <p>The integration can't be found.</p>
|
|
6714
|
+
* @public
|
|
6715
|
+
*/
|
|
6716
|
+
export declare class IntegrationNotFoundFault extends __BaseException {
|
|
6717
|
+
readonly name: "IntegrationNotFoundFault";
|
|
6718
|
+
readonly $fault: "client";
|
|
6719
|
+
/**
|
|
6720
|
+
* @internal
|
|
6721
|
+
*/
|
|
6722
|
+
constructor(opts: __ExceptionOptionType<IntegrationNotFoundFault, __BaseException>);
|
|
6723
|
+
}
|
|
6485
6724
|
/**
|
|
6486
6725
|
* @public
|
|
6487
6726
|
*/
|
|
@@ -6837,411 +7076,6 @@ export interface DescribeClustersMessage {
|
|
|
6837
7076
|
*/
|
|
6838
7077
|
TagValues?: string[];
|
|
6839
7078
|
}
|
|
6840
|
-
/**
|
|
6841
|
-
* <p></p>
|
|
6842
|
-
* @public
|
|
6843
|
-
*/
|
|
6844
|
-
export interface DescribeClusterSecurityGroupsMessage {
|
|
6845
|
-
/**
|
|
6846
|
-
* <p>The name of a cluster security group for which you are requesting details. You must
|
|
6847
|
-
* specify either the <b>Marker</b> parameter or a <b>ClusterSecurityGroupName</b> parameter, but not both. </p>
|
|
6848
|
-
* <p> Example: <code>securitygroup1</code>
|
|
6849
|
-
* </p>
|
|
6850
|
-
* @public
|
|
6851
|
-
*/
|
|
6852
|
-
ClusterSecurityGroupName?: string;
|
|
6853
|
-
/**
|
|
6854
|
-
* <p>The maximum number of response records to return in each call. If the number of
|
|
6855
|
-
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
6856
|
-
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
6857
|
-
* set of records by retrying the command with the returned marker value. </p>
|
|
6858
|
-
* <p>Default: <code>100</code>
|
|
6859
|
-
* </p>
|
|
6860
|
-
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
6861
|
-
* @public
|
|
6862
|
-
*/
|
|
6863
|
-
MaxRecords?: number;
|
|
6864
|
-
/**
|
|
6865
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
6866
|
-
* records. When the results of a <a>DescribeClusterSecurityGroups</a> request
|
|
6867
|
-
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
6868
|
-
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
6869
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
6870
|
-
* retrying the request. </p>
|
|
6871
|
-
* <p>Constraints: You must specify either the <b>ClusterSecurityGroupName</b> parameter or the <b>Marker</b> parameter, but not both. </p>
|
|
6872
|
-
* @public
|
|
6873
|
-
*/
|
|
6874
|
-
Marker?: string;
|
|
6875
|
-
/**
|
|
6876
|
-
* <p>A tag key or keys for which you want to return all matching cluster security groups
|
|
6877
|
-
* that are associated with the specified key or keys. For example, suppose that you have
|
|
6878
|
-
* security groups that are tagged with keys called <code>owner</code> and
|
|
6879
|
-
* <code>environment</code>. If you specify both of these tag keys in the request,
|
|
6880
|
-
* Amazon Redshift returns a response with the security groups that have either or both of these
|
|
6881
|
-
* tag keys associated with them.</p>
|
|
6882
|
-
* @public
|
|
6883
|
-
*/
|
|
6884
|
-
TagKeys?: string[];
|
|
6885
|
-
/**
|
|
6886
|
-
* <p>A tag value or values for which you want to return all matching cluster security
|
|
6887
|
-
* groups that are associated with the specified tag value or values. For example, suppose
|
|
6888
|
-
* that you have security groups that are tagged with values called <code>admin</code> and
|
|
6889
|
-
* <code>test</code>. If you specify both of these tag values in the request, Amazon Redshift
|
|
6890
|
-
* returns a response with the security groups that have either or both of these tag values
|
|
6891
|
-
* associated with them.</p>
|
|
6892
|
-
* @public
|
|
6893
|
-
*/
|
|
6894
|
-
TagValues?: string[];
|
|
6895
|
-
}
|
|
6896
|
-
/**
|
|
6897
|
-
* @public
|
|
6898
|
-
* @enum
|
|
6899
|
-
*/
|
|
6900
|
-
export declare const SnapshotAttributeToSortBy: {
|
|
6901
|
-
readonly CREATE_TIME: "CREATE_TIME";
|
|
6902
|
-
readonly SOURCE_TYPE: "SOURCE_TYPE";
|
|
6903
|
-
readonly TOTAL_SIZE: "TOTAL_SIZE";
|
|
6904
|
-
};
|
|
6905
|
-
/**
|
|
6906
|
-
* @public
|
|
6907
|
-
*/
|
|
6908
|
-
export type SnapshotAttributeToSortBy = (typeof SnapshotAttributeToSortBy)[keyof typeof SnapshotAttributeToSortBy];
|
|
6909
|
-
/**
|
|
6910
|
-
* @public
|
|
6911
|
-
* @enum
|
|
6912
|
-
*/
|
|
6913
|
-
export declare const SortByOrder: {
|
|
6914
|
-
readonly ASCENDING: "ASC";
|
|
6915
|
-
readonly DESCENDING: "DESC";
|
|
6916
|
-
};
|
|
6917
|
-
/**
|
|
6918
|
-
* @public
|
|
6919
|
-
*/
|
|
6920
|
-
export type SortByOrder = (typeof SortByOrder)[keyof typeof SortByOrder];
|
|
6921
|
-
/**
|
|
6922
|
-
* <p>Describes a sorting entity</p>
|
|
6923
|
-
* @public
|
|
6924
|
-
*/
|
|
6925
|
-
export interface SnapshotSortingEntity {
|
|
6926
|
-
/**
|
|
6927
|
-
* <p>The category for sorting the snapshots.</p>
|
|
6928
|
-
* @public
|
|
6929
|
-
*/
|
|
6930
|
-
Attribute: SnapshotAttributeToSortBy | undefined;
|
|
6931
|
-
/**
|
|
6932
|
-
* <p>The order for listing the attributes.</p>
|
|
6933
|
-
* @public
|
|
6934
|
-
*/
|
|
6935
|
-
SortOrder?: SortByOrder;
|
|
6936
|
-
}
|
|
6937
|
-
/**
|
|
6938
|
-
* <p></p>
|
|
6939
|
-
* @public
|
|
6940
|
-
*/
|
|
6941
|
-
export interface DescribeClusterSnapshotsMessage {
|
|
6942
|
-
/**
|
|
6943
|
-
* <p>The identifier of the cluster which generated the requested snapshots.</p>
|
|
6944
|
-
* @public
|
|
6945
|
-
*/
|
|
6946
|
-
ClusterIdentifier?: string;
|
|
6947
|
-
/**
|
|
6948
|
-
* <p>The snapshot identifier of the snapshot about which to return
|
|
6949
|
-
* information.</p>
|
|
6950
|
-
* @public
|
|
6951
|
-
*/
|
|
6952
|
-
SnapshotIdentifier?: string;
|
|
6953
|
-
/**
|
|
6954
|
-
* <p>The Amazon Resource Name (ARN) of the snapshot associated with the message to describe cluster snapshots.</p>
|
|
6955
|
-
* @public
|
|
6956
|
-
*/
|
|
6957
|
-
SnapshotArn?: string;
|
|
6958
|
-
/**
|
|
6959
|
-
* <p>The type of snapshots for which you are requesting information. By default,
|
|
6960
|
-
* snapshots of all types are returned.</p>
|
|
6961
|
-
* <p>Valid Values: <code>automated</code> | <code>manual</code>
|
|
6962
|
-
* </p>
|
|
6963
|
-
* @public
|
|
6964
|
-
*/
|
|
6965
|
-
SnapshotType?: string;
|
|
6966
|
-
/**
|
|
6967
|
-
* <p>A value that requests only snapshots created at or after the specified time. The
|
|
6968
|
-
* time value is specified in ISO 8601 format. For more information about ISO 8601, go to
|
|
6969
|
-
* the <a href="http://en.wikipedia.org/wiki/ISO_8601">ISO8601 Wikipedia page.</a>
|
|
6970
|
-
* </p>
|
|
6971
|
-
* <p>Example: <code>2012-07-16T18:00:00Z</code>
|
|
6972
|
-
* </p>
|
|
6973
|
-
* @public
|
|
6974
|
-
*/
|
|
6975
|
-
StartTime?: Date;
|
|
6976
|
-
/**
|
|
6977
|
-
* <p>A time value that requests only snapshots created at or before the specified time.
|
|
6978
|
-
* The time value is specified in ISO 8601 format. For more information about ISO 8601, go
|
|
6979
|
-
* to the <a href="http://en.wikipedia.org/wiki/ISO_8601">ISO8601 Wikipedia
|
|
6980
|
-
* page.</a>
|
|
6981
|
-
* </p>
|
|
6982
|
-
* <p>Example: <code>2012-07-16T18:00:00Z</code>
|
|
6983
|
-
* </p>
|
|
6984
|
-
* @public
|
|
6985
|
-
*/
|
|
6986
|
-
EndTime?: Date;
|
|
6987
|
-
/**
|
|
6988
|
-
* <p>The maximum number of response records to return in each call. If the number of
|
|
6989
|
-
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
6990
|
-
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
6991
|
-
* set of records by retrying the command with the returned marker value. </p>
|
|
6992
|
-
* <p>Default: <code>100</code>
|
|
6993
|
-
* </p>
|
|
6994
|
-
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
6995
|
-
* @public
|
|
6996
|
-
*/
|
|
6997
|
-
MaxRecords?: number;
|
|
6998
|
-
/**
|
|
6999
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
7000
|
-
* records. When the results of a <a>DescribeClusterSnapshots</a> request exceed
|
|
7001
|
-
* the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
7002
|
-
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
7003
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
7004
|
-
* retrying the request. </p>
|
|
7005
|
-
* @public
|
|
7006
|
-
*/
|
|
7007
|
-
Marker?: string;
|
|
7008
|
-
/**
|
|
7009
|
-
* <p>The Amazon Web Services account used to create or copy the snapshot. Use this field to
|
|
7010
|
-
* filter the results to snapshots owned by a particular account. To describe snapshots you
|
|
7011
|
-
* own, either specify your Amazon Web Services account, or do not specify the
|
|
7012
|
-
* parameter.</p>
|
|
7013
|
-
* @public
|
|
7014
|
-
*/
|
|
7015
|
-
OwnerAccount?: string;
|
|
7016
|
-
/**
|
|
7017
|
-
* <p>A tag key or keys for which you want to return all matching cluster snapshots that
|
|
7018
|
-
* are associated with the specified key or keys. For example, suppose that you have
|
|
7019
|
-
* snapshots that are tagged with keys called <code>owner</code> and
|
|
7020
|
-
* <code>environment</code>. If you specify both of these tag keys in the request,
|
|
7021
|
-
* Amazon Redshift returns a response with the snapshots that have either or both of these tag
|
|
7022
|
-
* keys associated with them.</p>
|
|
7023
|
-
* @public
|
|
7024
|
-
*/
|
|
7025
|
-
TagKeys?: string[];
|
|
7026
|
-
/**
|
|
7027
|
-
* <p>A tag value or values for which you want to return all matching cluster snapshots
|
|
7028
|
-
* that are associated with the specified tag value or values. For example, suppose that
|
|
7029
|
-
* you have snapshots that are tagged with values called <code>admin</code> and
|
|
7030
|
-
* <code>test</code>. If you specify both of these tag values in the request, Amazon Redshift
|
|
7031
|
-
* returns a response with the snapshots that have either or both of these tag values
|
|
7032
|
-
* associated with them.</p>
|
|
7033
|
-
* @public
|
|
7034
|
-
*/
|
|
7035
|
-
TagValues?: string[];
|
|
7036
|
-
/**
|
|
7037
|
-
* <p>A value that indicates whether to return snapshots only for an existing cluster.
|
|
7038
|
-
* You can perform table-level restore only by using a snapshot of an existing cluster,
|
|
7039
|
-
* that is, a cluster that has not been deleted. Values for this parameter work as follows: </p>
|
|
7040
|
-
* <ul>
|
|
7041
|
-
* <li>
|
|
7042
|
-
* <p>If <code>ClusterExists</code> is set to <code>true</code>,
|
|
7043
|
-
* <code>ClusterIdentifier</code> is required.</p>
|
|
7044
|
-
* </li>
|
|
7045
|
-
* <li>
|
|
7046
|
-
* <p>If <code>ClusterExists</code> is set to <code>false</code> and
|
|
7047
|
-
* <code>ClusterIdentifier</code> isn't specified, all snapshots
|
|
7048
|
-
* associated with deleted clusters (orphaned snapshots) are returned. </p>
|
|
7049
|
-
* </li>
|
|
7050
|
-
* <li>
|
|
7051
|
-
* <p>If <code>ClusterExists</code> is set to <code>false</code> and
|
|
7052
|
-
* <code>ClusterIdentifier</code> is specified for a deleted cluster, snapshots
|
|
7053
|
-
* associated with that cluster are returned.</p>
|
|
7054
|
-
* </li>
|
|
7055
|
-
* <li>
|
|
7056
|
-
* <p>If <code>ClusterExists</code> is set to <code>false</code> and
|
|
7057
|
-
* <code>ClusterIdentifier</code> is specified for an existing cluster, no
|
|
7058
|
-
* snapshots are returned. </p>
|
|
7059
|
-
* </li>
|
|
7060
|
-
* </ul>
|
|
7061
|
-
* @public
|
|
7062
|
-
*/
|
|
7063
|
-
ClusterExists?: boolean;
|
|
7064
|
-
/**
|
|
7065
|
-
* <p></p>
|
|
7066
|
-
* @public
|
|
7067
|
-
*/
|
|
7068
|
-
SortingEntities?: SnapshotSortingEntity[];
|
|
7069
|
-
}
|
|
7070
|
-
/**
|
|
7071
|
-
* <p>Contains the output from the <a>DescribeClusterSnapshots</a> action.
|
|
7072
|
-
* </p>
|
|
7073
|
-
* @public
|
|
7074
|
-
*/
|
|
7075
|
-
export interface SnapshotMessage {
|
|
7076
|
-
/**
|
|
7077
|
-
* <p>A value that indicates the starting point for the next set of response records in a
|
|
7078
|
-
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
7079
|
-
* of records by providing this returned marker value in the <code>Marker</code> parameter
|
|
7080
|
-
* and retrying the command. If the <code>Marker</code> field is empty, all response
|
|
7081
|
-
* records have been retrieved for the request. </p>
|
|
7082
|
-
* @public
|
|
7083
|
-
*/
|
|
7084
|
-
Marker?: string;
|
|
7085
|
-
/**
|
|
7086
|
-
* <p>A list of <a>Snapshot</a> instances. </p>
|
|
7087
|
-
* @public
|
|
7088
|
-
*/
|
|
7089
|
-
Snapshots?: Snapshot[];
|
|
7090
|
-
}
|
|
7091
|
-
/**
|
|
7092
|
-
* <p></p>
|
|
7093
|
-
* @public
|
|
7094
|
-
*/
|
|
7095
|
-
export interface DescribeClusterSubnetGroupsMessage {
|
|
7096
|
-
/**
|
|
7097
|
-
* <p>The name of the cluster subnet group for which information is requested.</p>
|
|
7098
|
-
* @public
|
|
7099
|
-
*/
|
|
7100
|
-
ClusterSubnetGroupName?: string;
|
|
7101
|
-
/**
|
|
7102
|
-
* <p>The maximum number of response records to return in each call. If the number of
|
|
7103
|
-
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
7104
|
-
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
7105
|
-
* set of records by retrying the command with the returned marker value. </p>
|
|
7106
|
-
* <p>Default: <code>100</code>
|
|
7107
|
-
* </p>
|
|
7108
|
-
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
7109
|
-
* @public
|
|
7110
|
-
*/
|
|
7111
|
-
MaxRecords?: number;
|
|
7112
|
-
/**
|
|
7113
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
7114
|
-
* records. When the results of a <a>DescribeClusterSubnetGroups</a> request
|
|
7115
|
-
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
7116
|
-
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
7117
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
7118
|
-
* retrying the request. </p>
|
|
7119
|
-
* @public
|
|
7120
|
-
*/
|
|
7121
|
-
Marker?: string;
|
|
7122
|
-
/**
|
|
7123
|
-
* <p>A tag key or keys for which you want to return all matching cluster subnet groups
|
|
7124
|
-
* that are associated with the specified key or keys. For example, suppose that you have
|
|
7125
|
-
* subnet groups that are tagged with keys called <code>owner</code> and
|
|
7126
|
-
* <code>environment</code>. If you specify both of these tag keys in the request,
|
|
7127
|
-
* Amazon Redshift returns a response with the subnet groups that have either or both of these
|
|
7128
|
-
* tag keys associated with them.</p>
|
|
7129
|
-
* @public
|
|
7130
|
-
*/
|
|
7131
|
-
TagKeys?: string[];
|
|
7132
|
-
/**
|
|
7133
|
-
* <p>A tag value or values for which you want to return all matching cluster subnet
|
|
7134
|
-
* groups that are associated with the specified tag value or values. For example, suppose
|
|
7135
|
-
* that you have subnet groups that are tagged with values called <code>admin</code> and
|
|
7136
|
-
* <code>test</code>. If you specify both of these tag values in the request, Amazon Redshift
|
|
7137
|
-
* returns a response with the subnet groups that have either or both of these tag values
|
|
7138
|
-
* associated with them.</p>
|
|
7139
|
-
* @public
|
|
7140
|
-
*/
|
|
7141
|
-
TagValues?: string[];
|
|
7142
|
-
}
|
|
7143
|
-
/**
|
|
7144
|
-
* @public
|
|
7145
|
-
*/
|
|
7146
|
-
export interface DescribeClusterTracksMessage {
|
|
7147
|
-
/**
|
|
7148
|
-
* <p>The name of the maintenance track. </p>
|
|
7149
|
-
* @public
|
|
7150
|
-
*/
|
|
7151
|
-
MaintenanceTrackName?: string;
|
|
7152
|
-
/**
|
|
7153
|
-
* <p>An integer value for the maximum number of maintenance tracks to return.</p>
|
|
7154
|
-
* @public
|
|
7155
|
-
*/
|
|
7156
|
-
MaxRecords?: number;
|
|
7157
|
-
/**
|
|
7158
|
-
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
7159
|
-
* records. When the results of a <code>DescribeClusterTracks</code> request exceed the
|
|
7160
|
-
* value specified in <code>MaxRecords</code>, Amazon Redshift returns a value in the
|
|
7161
|
-
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
7162
|
-
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
7163
|
-
* retrying the request. </p>
|
|
7164
|
-
* @public
|
|
7165
|
-
*/
|
|
7166
|
-
Marker?: string;
|
|
7167
|
-
}
|
|
7168
|
-
/**
|
|
7169
|
-
* <p>Describes the operations that are allowed on a maintenance track.</p>
|
|
7170
|
-
* @public
|
|
7171
|
-
*/
|
|
7172
|
-
export interface SupportedOperation {
|
|
7173
|
-
/**
|
|
7174
|
-
* <p>A list of the supported operations.</p>
|
|
7175
|
-
* @public
|
|
7176
|
-
*/
|
|
7177
|
-
OperationName?: string;
|
|
7178
|
-
}
|
|
7179
|
-
/**
|
|
7180
|
-
* <p>A maintenance track that you can switch the current track to.</p>
|
|
7181
|
-
* @public
|
|
7182
|
-
*/
|
|
7183
|
-
export interface UpdateTarget {
|
|
7184
|
-
/**
|
|
7185
|
-
* <p>The name of the new maintenance track.</p>
|
|
7186
|
-
* @public
|
|
7187
|
-
*/
|
|
7188
|
-
MaintenanceTrackName?: string;
|
|
7189
|
-
/**
|
|
7190
|
-
* <p>The cluster version for the new maintenance track.</p>
|
|
7191
|
-
* @public
|
|
7192
|
-
*/
|
|
7193
|
-
DatabaseVersion?: string;
|
|
7194
|
-
/**
|
|
7195
|
-
* <p>A list of operations supported by the maintenance track.</p>
|
|
7196
|
-
* @public
|
|
7197
|
-
*/
|
|
7198
|
-
SupportedOperations?: SupportedOperation[];
|
|
7199
|
-
}
|
|
7200
|
-
/**
|
|
7201
|
-
* <p>Defines a maintenance track that determines which Amazon Redshift version to apply
|
|
7202
|
-
* during a maintenance window. If the value for <code>MaintenanceTrack</code> is
|
|
7203
|
-
* <code>current</code>, the cluster is updated to the most recently certified
|
|
7204
|
-
* maintenance release. If the value is <code>trailing</code>, the cluster is updated to
|
|
7205
|
-
* the previously certified maintenance release. </p>
|
|
7206
|
-
* @public
|
|
7207
|
-
*/
|
|
7208
|
-
export interface MaintenanceTrack {
|
|
7209
|
-
/**
|
|
7210
|
-
* <p>The name of the maintenance track. Possible values are <code>current</code> and
|
|
7211
|
-
* <code>trailing</code>.</p>
|
|
7212
|
-
* @public
|
|
7213
|
-
*/
|
|
7214
|
-
MaintenanceTrackName?: string;
|
|
7215
|
-
/**
|
|
7216
|
-
* <p>The version number for the cluster release.</p>
|
|
7217
|
-
* @public
|
|
7218
|
-
*/
|
|
7219
|
-
DatabaseVersion?: string;
|
|
7220
|
-
/**
|
|
7221
|
-
* <p>An array of <a>UpdateTarget</a> objects to update with the maintenance
|
|
7222
|
-
* track. </p>
|
|
7223
|
-
* @public
|
|
7224
|
-
*/
|
|
7225
|
-
UpdateTargets?: UpdateTarget[];
|
|
7226
|
-
}
|
|
7227
|
-
/**
|
|
7228
|
-
* @public
|
|
7229
|
-
*/
|
|
7230
|
-
export interface TrackListMessage {
|
|
7231
|
-
/**
|
|
7232
|
-
* <p>A list of maintenance tracks output by the <code>DescribeClusterTracks</code>
|
|
7233
|
-
* operation. </p>
|
|
7234
|
-
* @public
|
|
7235
|
-
*/
|
|
7236
|
-
MaintenanceTracks?: MaintenanceTrack[];
|
|
7237
|
-
/**
|
|
7238
|
-
* <p>The starting point to return a set of response tracklist records. You can retrieve the
|
|
7239
|
-
* next set of response records by providing the returned marker value in the
|
|
7240
|
-
* <code>Marker</code> parameter and retrying the request.</p>
|
|
7241
|
-
* @public
|
|
7242
|
-
*/
|
|
7243
|
-
Marker?: string;
|
|
7244
|
-
}
|
|
7245
7079
|
/**
|
|
7246
7080
|
* @internal
|
|
7247
7081
|
*/
|