@aws-sdk/client-rds 3.438.0 → 3.439.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 (58) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/RDS.js +6 -0
  3. package/dist-cjs/commands/CreateIntegrationCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteIntegrationCommand.js +51 -0
  5. package/dist-cjs/commands/DescribeIntegrationsCommand.js +51 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_0.js +77 -3
  8. package/dist-cjs/pagination/DescribeIntegrationsPaginator.js +29 -0
  9. package/dist-cjs/pagination/index.js +1 -0
  10. package/dist-cjs/protocols/Aws_query.js +419 -6
  11. package/dist-es/RDS.js +6 -0
  12. package/dist-es/commands/CreateIntegrationCommand.js +47 -0
  13. package/dist-es/commands/DeleteIntegrationCommand.js +47 -0
  14. package/dist-es/commands/DescribeIntegrationsCommand.js +47 -0
  15. package/dist-es/commands/index.js +3 -0
  16. package/dist-es/models/models_0.js +69 -0
  17. package/dist-es/pagination/DescribeIntegrationsPaginator.js +25 -0
  18. package/dist-es/pagination/index.js +1 -0
  19. package/dist-es/protocols/Aws_query.js +408 -1
  20. package/dist-types/RDS.d.ts +21 -0
  21. package/dist-types/RDSClient.d.ts +5 -2
  22. package/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -0
  23. package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +2 -0
  24. package/dist-types/commands/CreateIntegrationCommand.d.ts +130 -0
  25. package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +2 -0
  26. package/dist-types/commands/DeleteIntegrationCommand.d.ts +107 -0
  27. package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +2 -1
  28. package/dist-types/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
  29. package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
  30. package/dist-types/commands/DescribeDBClustersCommand.d.ts +1 -1
  31. package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +3 -2
  32. package/dist-types/commands/DescribeIntegrationsCommand.d.ts +115 -0
  33. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  34. package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +2 -0
  35. package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -0
  36. package/dist-types/commands/index.d.ts +3 -0
  37. package/dist-types/models/models_0.d.ts +225 -403
  38. package/dist-types/models/models_1.d.ts +451 -1
  39. package/dist-types/pagination/DescribeIntegrationsPaginator.d.ts +7 -0
  40. package/dist-types/pagination/index.d.ts +1 -0
  41. package/dist-types/protocols/Aws_query.d.ts +27 -0
  42. package/dist-types/ts3.4/RDS.d.ts +51 -0
  43. package/dist-types/ts3.4/RDSClient.d.ts +18 -0
  44. package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +36 -0
  45. package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +36 -0
  46. package/dist-types/ts3.4/commands/DescribeDBClusterParametersCommand.d.ts +2 -4
  47. package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/DescribeDBClustersCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/DescribeDBEngineVersionsCommand.d.ts +4 -2
  51. package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +42 -0
  52. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  53. package/dist-types/ts3.4/models/models_0.d.ts +78 -51
  54. package/dist-types/ts3.4/models/models_1.d.ts +64 -1
  55. package/dist-types/ts3.4/pagination/DescribeIntegrationsPaginator.d.ts +11 -0
  56. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  57. package/dist-types/ts3.4/protocols/Aws_query.d.ts +36 -0
  58. package/package.json +1 -1
@@ -545,6 +545,18 @@ export declare class DBSnapshotNotFoundFault extends __BaseException {
545
545
  */
546
546
  constructor(opts: __ExceptionOptionType<DBSnapshotNotFoundFault, __BaseException>);
547
547
  }
548
+ /**
549
+ * @public
550
+ * <p>The specified integration could not be found.</p>
551
+ */
552
+ export declare class IntegrationNotFoundFault extends __BaseException {
553
+ readonly name: "IntegrationNotFoundFault";
554
+ readonly $fault: "client";
555
+ /**
556
+ * @internal
557
+ */
558
+ constructor(opts: __ExceptionOptionType<IntegrationNotFoundFault, __BaseException>);
559
+ }
548
560
  /**
549
561
  * @public
550
562
  * <p></p>
@@ -3203,6 +3215,12 @@ export interface UpgradeTarget {
3203
3215
  * <p>Valid for: Aurora DB clusters only</p>
3204
3216
  */
3205
3217
  SupportsLocalWriteForwarding?: boolean;
3218
+ /**
3219
+ * @public
3220
+ * <p>Indicates whether the DB engine version supports Aurora zero-ETL integrations with
3221
+ * Amazon Redshift.</p>
3222
+ */
3223
+ SupportsIntegrations?: boolean;
3206
3224
  }
3207
3225
  /**
3208
3226
  * @public
@@ -3400,6 +3418,12 @@ export interface DBEngineVersion {
3400
3418
  * <p>Valid for: Aurora DB clusters only</p>
3401
3419
  */
3402
3420
  SupportsLocalWriteForwarding?: boolean;
3421
+ /**
3422
+ * @public
3423
+ * <p>Indicates whether the DB engine version supports Aurora zero-ETL integrations with
3424
+ * Amazon Redshift.</p>
3425
+ */
3426
+ SupportsIntegrations?: boolean;
3403
3427
  }
3404
3428
  /**
3405
3429
  * @public
@@ -9981,6 +10005,185 @@ export declare class GlobalClusterQuotaExceededFault extends __BaseException {
9981
10005
  */
9982
10006
  constructor(opts: __ExceptionOptionType<GlobalClusterQuotaExceededFault, __BaseException>);
9983
10007
  }
10008
+ /**
10009
+ * @public
10010
+ */
10011
+ export interface CreateIntegrationMessage {
10012
+ /**
10013
+ * @public
10014
+ * <p>The Amazon Resource Name (ARN) of the Aurora DB cluster to use as the source for
10015
+ * replication.</p>
10016
+ */
10017
+ SourceArn: string | undefined;
10018
+ /**
10019
+ * @public
10020
+ * <p>The ARN of the Redshift data warehouse to use as the target for replication.</p>
10021
+ */
10022
+ TargetArn: string | undefined;
10023
+ /**
10024
+ * @public
10025
+ * <p>The name of the integration.</p>
10026
+ */
10027
+ IntegrationName: string | undefined;
10028
+ /**
10029
+ * @public
10030
+ * <p>The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key to use to
10031
+ * encrypt the integration. If you don't specify an encryption key, Aurora uses a default
10032
+ * Amazon Web Services owned key. </p>
10033
+ */
10034
+ KMSKeyId?: string;
10035
+ /**
10036
+ * @public
10037
+ * <p>An optional set of non-secret key–value pairs that contains additional contextual
10038
+ * information about the data. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context">Encryption
10039
+ * context</a> in the <i>Amazon Web Services Key Management Service Developer
10040
+ * Guide</i>.</p>
10041
+ * <p>You can only include this parameter if you specify the <code>KMSKeyId</code> parameter.</p>
10042
+ */
10043
+ AdditionalEncryptionContext?: Record<string, string>;
10044
+ /**
10045
+ * @public
10046
+ * <p>A list of tags.
10047
+ * For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS Resources</a> in the <i>Amazon RDS User Guide.</i>
10048
+ * </p>
10049
+ */
10050
+ Tags?: Tag[];
10051
+ }
10052
+ /**
10053
+ * @public
10054
+ * <p>An error associated with a zero-ETL integration with Amazon Redshift.</p>
10055
+ */
10056
+ export interface IntegrationError {
10057
+ /**
10058
+ * @public
10059
+ * <p>The error code associated with the integration.</p>
10060
+ */
10061
+ ErrorCode: string | undefined;
10062
+ /**
10063
+ * @public
10064
+ * <p>A message explaining the error.</p>
10065
+ */
10066
+ ErrorMessage?: string;
10067
+ }
10068
+ /**
10069
+ * @public
10070
+ * @enum
10071
+ */
10072
+ export declare const IntegrationStatus: {
10073
+ readonly ACTIVE: "active";
10074
+ readonly CREATING: "creating";
10075
+ readonly DELETING: "deleting";
10076
+ readonly FAILED: "failed";
10077
+ readonly MODIFYING: "modifying";
10078
+ readonly NEEDS_ATTENTION: "needs_attention";
10079
+ readonly SYNCING: "syncing";
10080
+ };
10081
+ /**
10082
+ * @public
10083
+ */
10084
+ export type IntegrationStatus = (typeof IntegrationStatus)[keyof typeof IntegrationStatus];
10085
+ /**
10086
+ * @public
10087
+ * <p>An Aurora zero-ETL integration with Amazon Redshift. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.html">Working
10088
+ * with Amazon Aurora zero-ETL integrations with Amazon Redshift</a> in the
10089
+ * <i>Amazon Aurora User Guide</i>.</p>
10090
+ */
10091
+ export interface Integration {
10092
+ /**
10093
+ * @public
10094
+ * <p>The Amazon Resource Name (ARN) of the Aurora DB cluster used as the source for
10095
+ * replication.</p>
10096
+ */
10097
+ SourceArn?: string;
10098
+ /**
10099
+ * @public
10100
+ * <p>The ARN of the Redshift data warehouse used as the target for replication.</p>
10101
+ */
10102
+ TargetArn?: string;
10103
+ /**
10104
+ * @public
10105
+ * <p>The name of the integration.</p>
10106
+ */
10107
+ IntegrationName?: string;
10108
+ /**
10109
+ * @public
10110
+ * <p>The ARN of the integration.</p>
10111
+ */
10112
+ IntegrationArn?: string;
10113
+ /**
10114
+ * @public
10115
+ * <p>The Amazon Web Services Key Management System (Amazon Web Services KMS) key identifier for the key used to to
10116
+ * encrypt the integration. </p>
10117
+ */
10118
+ KMSKeyId?: string;
10119
+ /**
10120
+ * @public
10121
+ * <p>The encryption context for the integration. For more information, 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
10122
+ * Guide</i>.</p>
10123
+ */
10124
+ AdditionalEncryptionContext?: Record<string, string>;
10125
+ /**
10126
+ * @public
10127
+ * <p>The current status of the integration.</p>
10128
+ */
10129
+ Status?: IntegrationStatus;
10130
+ /**
10131
+ * @public
10132
+ * <p>A list of tags.
10133
+ * For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS Resources</a> in the <i>Amazon RDS User Guide.</i>
10134
+ * </p>
10135
+ */
10136
+ Tags?: Tag[];
10137
+ /**
10138
+ * @public
10139
+ * <p>The time when the integration was created, in Universal Coordinated Time
10140
+ * (UTC).</p>
10141
+ */
10142
+ CreateTime?: Date;
10143
+ /**
10144
+ * @public
10145
+ * <p>Any errors associated with the integration.</p>
10146
+ */
10147
+ Errors?: IntegrationError[];
10148
+ }
10149
+ /**
10150
+ * @public
10151
+ * <p>The integration you are trying to create already exists.</p>
10152
+ */
10153
+ export declare class IntegrationAlreadyExistsFault extends __BaseException {
10154
+ readonly name: "IntegrationAlreadyExistsFault";
10155
+ readonly $fault: "client";
10156
+ /**
10157
+ * @internal
10158
+ */
10159
+ constructor(opts: __ExceptionOptionType<IntegrationAlreadyExistsFault, __BaseException>);
10160
+ }
10161
+ /**
10162
+ * @public
10163
+ * <p>A conflicting conditional operation is currently in progress against this resource.
10164
+ * Typically occurs when there are multiple requests being made to the same resource at the same time,
10165
+ * and these requests conflict with each other.</p>
10166
+ */
10167
+ export declare class IntegrationConflictOperationFault extends __BaseException {
10168
+ readonly name: "IntegrationConflictOperationFault";
10169
+ readonly $fault: "client";
10170
+ /**
10171
+ * @internal
10172
+ */
10173
+ constructor(opts: __ExceptionOptionType<IntegrationConflictOperationFault, __BaseException>);
10174
+ }
10175
+ /**
10176
+ * @public
10177
+ * <p>You can't crate any more zero-ETL integrations because the quota has been reached.</p>
10178
+ */
10179
+ export declare class IntegrationQuotaExceededFault extends __BaseException {
10180
+ readonly name: "IntegrationQuotaExceededFault";
10181
+ readonly $fault: "client";
10182
+ /**
10183
+ * @internal
10184
+ */
10185
+ constructor(opts: __ExceptionOptionType<IntegrationQuotaExceededFault, __BaseException>);
10186
+ }
9984
10187
  /**
9985
10188
  * @public
9986
10189
  * <p></p>
@@ -11136,6 +11339,28 @@ export interface DeleteGlobalClusterResult {
11136
11339
  */
11137
11340
  GlobalCluster?: GlobalCluster;
11138
11341
  }
11342
+ /**
11343
+ * @public
11344
+ */
11345
+ export interface DeleteIntegrationMessage {
11346
+ /**
11347
+ * @public
11348
+ * <p>The unique identifier of the integration.</p>
11349
+ */
11350
+ IntegrationIdentifier: string | undefined;
11351
+ }
11352
+ /**
11353
+ * @public
11354
+ * <p>The integration is in an invalid state and can't perform the requested operation.</p>
11355
+ */
11356
+ export declare class InvalidIntegrationStateFault extends __BaseException {
11357
+ readonly name: "InvalidIntegrationStateFault";
11358
+ readonly $fault: "client";
11359
+ /**
11360
+ * @internal
11361
+ */
11362
+ constructor(opts: __ExceptionOptionType<InvalidIntegrationStateFault, __BaseException>);
11363
+ }
11139
11364
  /**
11140
11365
  * @public
11141
11366
  * <p></p>
@@ -11900,406 +12125,3 @@ export interface DBClusterParameterGroupDetails {
11900
12125
  */
11901
12126
  Marker?: string;
11902
12127
  }
11903
- /**
11904
- * @public
11905
- * <p></p>
11906
- */
11907
- export interface DescribeDBClusterParametersMessage {
11908
- /**
11909
- * @public
11910
- * <p>The name of a specific DB cluster parameter group to return parameter details for.</p>
11911
- * <p>Constraints:</p>
11912
- * <ul>
11913
- * <li>
11914
- * <p>If supplied, must match the name of an existing DBClusterParameterGroup.</p>
11915
- * </li>
11916
- * </ul>
11917
- */
11918
- DBClusterParameterGroupName: string | undefined;
11919
- /**
11920
- * @public
11921
- * <p>A specific source to return parameters for.</p>
11922
- * <p>Valid Values:</p>
11923
- * <ul>
11924
- * <li>
11925
- * <p>
11926
- * <code>customer</code>
11927
- * </p>
11928
- * </li>
11929
- * <li>
11930
- * <p>
11931
- * <code>engine</code>
11932
- * </p>
11933
- * </li>
11934
- * <li>
11935
- * <p>
11936
- * <code>service</code>
11937
- * </p>
11938
- * </li>
11939
- * </ul>
11940
- */
11941
- Source?: string;
11942
- /**
11943
- * @public
11944
- * <p>This parameter isn't currently supported.</p>
11945
- */
11946
- Filters?: Filter[];
11947
- /**
11948
- * @public
11949
- * <p>The maximum number of records to include in the response.
11950
- * If more records exist than the specified <code>MaxRecords</code> value,
11951
- * a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
11952
- * <p>Default: 100</p>
11953
- * <p>Constraints: Minimum 20, maximum 100.</p>
11954
- */
11955
- MaxRecords?: number;
11956
- /**
11957
- * @public
11958
- * <p>An optional pagination token provided by a previous
11959
- * <code>DescribeDBClusterParameters</code> request.
11960
- * If this parameter is specified, the response includes
11961
- * only records beyond the marker,
11962
- * up to the value specified by <code>MaxRecords</code>.</p>
11963
- */
11964
- Marker?: string;
11965
- }
11966
- /**
11967
- * @public
11968
- * <p>Contains the result of a successful invocation of the <code>DescribeDBClusters</code> action.</p>
11969
- */
11970
- export interface DBClusterMessage {
11971
- /**
11972
- * @public
11973
- * <p>A pagination token that can be used in a later <code>DescribeDBClusters</code> request.</p>
11974
- */
11975
- Marker?: string;
11976
- /**
11977
- * @public
11978
- * <p>Contains a list of DB clusters for the user.</p>
11979
- */
11980
- DBClusters?: DBCluster[];
11981
- }
11982
- /**
11983
- * @public
11984
- * <p></p>
11985
- */
11986
- export interface DescribeDBClustersMessage {
11987
- /**
11988
- * @public
11989
- * <p>The user-supplied DB cluster identifier or the Amazon Resource Name (ARN) of the DB cluster. If this parameter is specified,
11990
- * information for only the specific DB cluster is returned. This parameter isn't case-sensitive.</p>
11991
- * <p>Constraints:</p>
11992
- * <ul>
11993
- * <li>
11994
- * <p>If supplied, must match an existing DB cluster identifier.</p>
11995
- * </li>
11996
- * </ul>
11997
- */
11998
- DBClusterIdentifier?: string;
11999
- /**
12000
- * @public
12001
- * <p>A filter that specifies one or more DB clusters to describe.</p>
12002
- * <p>Supported Filters:</p>
12003
- * <ul>
12004
- * <li>
12005
- * <p>
12006
- * <code>clone-group-id</code> - Accepts clone group identifiers.
12007
- * The results list only includes information about
12008
- * the DB clusters associated with these clone groups.</p>
12009
- * </li>
12010
- * <li>
12011
- * <p>
12012
- * <code>db-cluster-id</code> - Accepts DB cluster identifiers and DB
12013
- * cluster Amazon Resource Names (ARNs). The results list only includes information about
12014
- * the DB clusters identified by these ARNs.</p>
12015
- * </li>
12016
- * <li>
12017
- * <p>
12018
- * <code>db-cluster-resource-id</code> - Accepts DB cluster resource identifiers.
12019
- * The results list will only include information about the DB clusters identified
12020
- * by these DB cluster resource identifiers.</p>
12021
- * </li>
12022
- * <li>
12023
- * <p>
12024
- * <code>domain</code> - Accepts Active Directory directory IDs.
12025
- * The results list only includes information about
12026
- * the DB clusters associated with these domains.</p>
12027
- * </li>
12028
- * <li>
12029
- * <p>
12030
- * <code>engine</code> - Accepts engine names.
12031
- * The results list only includes information about
12032
- * the DB clusters for these engines.</p>
12033
- * </li>
12034
- * </ul>
12035
- */
12036
- Filters?: Filter[];
12037
- /**
12038
- * @public
12039
- * <p>The maximum number of records to include in the response.
12040
- * If more records exist than the specified <code>MaxRecords</code> value,
12041
- * a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
12042
- * <p>Default: 100</p>
12043
- * <p>Constraints: Minimum 20, maximum 100.</p>
12044
- */
12045
- MaxRecords?: number;
12046
- /**
12047
- * @public
12048
- * <p>An optional pagination token provided by a previous
12049
- * <code>DescribeDBClusters</code> request.
12050
- * If this parameter is specified, the response includes
12051
- * only records beyond the marker,
12052
- * up to the value specified by <code>MaxRecords</code>.</p>
12053
- */
12054
- Marker?: string;
12055
- /**
12056
- * @public
12057
- * <p>Specifies whether the output includes information about clusters
12058
- * shared from other Amazon Web Services accounts.</p>
12059
- */
12060
- IncludeShared?: boolean;
12061
- }
12062
- /**
12063
- * @public
12064
- * <p></p>
12065
- */
12066
- export interface DescribeDBClusterSnapshotAttributesMessage {
12067
- /**
12068
- * @public
12069
- * <p>The identifier for the DB cluster snapshot to describe the attributes for.</p>
12070
- */
12071
- DBClusterSnapshotIdentifier: string | undefined;
12072
- }
12073
- /**
12074
- * @public
12075
- * <p>Contains the name and values of a manual DB cluster snapshot attribute.</p>
12076
- * <p>Manual DB cluster snapshot attributes are used to authorize other Amazon Web Services accounts
12077
- * to restore a manual DB cluster snapshot. For more information, see the <code>ModifyDBClusterSnapshotAttribute</code>
12078
- * API action.</p>
12079
- */
12080
- export interface DBClusterSnapshotAttribute {
12081
- /**
12082
- * @public
12083
- * <p>The name of the manual DB cluster snapshot attribute.</p>
12084
- * <p>The attribute named <code>restore</code> refers to the list of Amazon Web Services accounts that
12085
- * have permission to copy or restore the manual DB cluster snapshot. For more information,
12086
- * see the <code>ModifyDBClusterSnapshotAttribute</code>
12087
- * API action.</p>
12088
- */
12089
- AttributeName?: string;
12090
- /**
12091
- * @public
12092
- * <p>The value(s) for the manual DB cluster snapshot attribute.</p>
12093
- * <p>If the <code>AttributeName</code> field is set to <code>restore</code>, then this element
12094
- * returns a list of IDs of the Amazon Web Services accounts that are authorized to copy or restore the manual
12095
- * DB cluster snapshot. If a value of <code>all</code> is in the list, then the manual DB cluster snapshot
12096
- * is public and available for any Amazon Web Services account to copy or restore.</p>
12097
- */
12098
- AttributeValues?: string[];
12099
- }
12100
- /**
12101
- * @public
12102
- * <p>Contains the results of a successful call to the <code>DescribeDBClusterSnapshotAttributes</code>
12103
- * API action.</p>
12104
- * <p>Manual DB cluster snapshot attributes are used to authorize other Amazon Web Services accounts
12105
- * to copy or restore a manual DB cluster snapshot. For more information, see the <code>ModifyDBClusterSnapshotAttribute</code>
12106
- * API action.</p>
12107
- */
12108
- export interface DBClusterSnapshotAttributesResult {
12109
- /**
12110
- * @public
12111
- * <p>The identifier of the manual DB cluster snapshot that the attributes apply to.</p>
12112
- */
12113
- DBClusterSnapshotIdentifier?: string;
12114
- /**
12115
- * @public
12116
- * <p>The list of attributes and values for the manual DB cluster snapshot.</p>
12117
- */
12118
- DBClusterSnapshotAttributes?: DBClusterSnapshotAttribute[];
12119
- }
12120
- /**
12121
- * @public
12122
- */
12123
- export interface DescribeDBClusterSnapshotAttributesResult {
12124
- /**
12125
- * @public
12126
- * <p>Contains the results of a successful call to the <code>DescribeDBClusterSnapshotAttributes</code>
12127
- * API action.</p>
12128
- * <p>Manual DB cluster snapshot attributes are used to authorize other Amazon Web Services accounts
12129
- * to copy or restore a manual DB cluster snapshot. For more information, see the <code>ModifyDBClusterSnapshotAttribute</code>
12130
- * API action.</p>
12131
- */
12132
- DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult;
12133
- }
12134
- /**
12135
- * @public
12136
- * <p>Provides a list of DB cluster snapshots for the user as the result of a call to the <code>DescribeDBClusterSnapshots</code> action.</p>
12137
- */
12138
- export interface DBClusterSnapshotMessage {
12139
- /**
12140
- * @public
12141
- * <p>An optional pagination token provided by a previous
12142
- * <code>DescribeDBClusterSnapshots</code> request.
12143
- * If this parameter is specified, the response includes
12144
- * only records beyond the marker,
12145
- * up to the value specified by <code>MaxRecords</code>.</p>
12146
- */
12147
- Marker?: string;
12148
- /**
12149
- * @public
12150
- * <p>Provides a list of DB cluster snapshots for the user.</p>
12151
- */
12152
- DBClusterSnapshots?: DBClusterSnapshot[];
12153
- }
12154
- /**
12155
- * @public
12156
- * <p></p>
12157
- */
12158
- export interface DescribeDBClusterSnapshotsMessage {
12159
- /**
12160
- * @public
12161
- * <p>The ID of the DB cluster to retrieve the list of DB cluster snapshots for.
12162
- * This parameter can't be used in conjunction with the
12163
- * <code>DBClusterSnapshotIdentifier</code> parameter.
12164
- * This parameter isn't case-sensitive.</p>
12165
- * <p>Constraints:</p>
12166
- * <ul>
12167
- * <li>
12168
- * <p>If supplied, must match the identifier of an existing DBCluster.</p>
12169
- * </li>
12170
- * </ul>
12171
- */
12172
- DBClusterIdentifier?: string;
12173
- /**
12174
- * @public
12175
- * <p>A specific DB cluster snapshot identifier to describe.
12176
- * This parameter can't be used in conjunction with the
12177
- * <code>DBClusterIdentifier</code> parameter.
12178
- * This value is stored as a lowercase string.</p>
12179
- * <p>Constraints:</p>
12180
- * <ul>
12181
- * <li>
12182
- * <p>If supplied, must match the identifier of an existing DBClusterSnapshot.</p>
12183
- * </li>
12184
- * <li>
12185
- * <p>If this identifier is for an automated snapshot, the <code>SnapshotType</code> parameter must also be specified.</p>
12186
- * </li>
12187
- * </ul>
12188
- */
12189
- DBClusterSnapshotIdentifier?: string;
12190
- /**
12191
- * @public
12192
- * <p>The type of DB cluster snapshots to be returned. You can specify one of the following values:</p>
12193
- * <ul>
12194
- * <li>
12195
- * <p>
12196
- * <code>automated</code> - Return all DB cluster snapshots that have been automatically taken by
12197
- * Amazon RDS for my Amazon Web Services account.</p>
12198
- * </li>
12199
- * <li>
12200
- * <p>
12201
- * <code>manual</code> - Return all DB cluster snapshots that have been taken by my Amazon Web Services account.</p>
12202
- * </li>
12203
- * <li>
12204
- * <p>
12205
- * <code>shared</code> - Return all manual DB cluster snapshots that have been shared to my Amazon Web Services account.</p>
12206
- * </li>
12207
- * <li>
12208
- * <p>
12209
- * <code>public</code> - Return all DB cluster snapshots that have been marked as public.</p>
12210
- * </li>
12211
- * </ul>
12212
- * <p>If you don't specify a <code>SnapshotType</code> value, then both automated and manual DB cluster snapshots are
12213
- * returned. You can include shared DB cluster snapshots with these results by enabling the <code>IncludeShared</code>
12214
- * parameter. You can include public DB cluster snapshots with these results by enabling the
12215
- * <code>IncludePublic</code> parameter.</p>
12216
- * <p>The <code>IncludeShared</code> and <code>IncludePublic</code> parameters don't apply for <code>SnapshotType</code> values
12217
- * of <code>manual</code> or <code>automated</code>. The <code>IncludePublic</code> parameter doesn't apply when <code>SnapshotType</code> is
12218
- * set to <code>shared</code>. The <code>IncludeShared</code> parameter doesn't apply when <code>SnapshotType</code> is set to
12219
- * <code>public</code>.</p>
12220
- */
12221
- SnapshotType?: string;
12222
- /**
12223
- * @public
12224
- * <p>A filter that specifies one or more DB cluster snapshots to describe.</p>
12225
- * <p>Supported filters:</p>
12226
- * <ul>
12227
- * <li>
12228
- * <p>
12229
- * <code>db-cluster-id</code> - Accepts DB cluster identifiers and DB
12230
- * cluster Amazon Resource Names (ARNs).</p>
12231
- * </li>
12232
- * <li>
12233
- * <p>
12234
- * <code>db-cluster-snapshot-id</code> - Accepts DB cluster snapshot identifiers.</p>
12235
- * </li>
12236
- * <li>
12237
- * <p>
12238
- * <code>snapshot-type</code> - Accepts types of DB cluster snapshots.</p>
12239
- * </li>
12240
- * <li>
12241
- * <p>
12242
- * <code>engine</code> - Accepts names of database engines.</p>
12243
- * </li>
12244
- * </ul>
12245
- */
12246
- Filters?: Filter[];
12247
- /**
12248
- * @public
12249
- * <p>The maximum number of records to include in the response.
12250
- * If more records exist than the specified <code>MaxRecords</code> value,
12251
- * a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
12252
- * <p>Default: 100</p>
12253
- * <p>Constraints: Minimum 20, maximum 100.</p>
12254
- */
12255
- MaxRecords?: number;
12256
- /**
12257
- * @public
12258
- * <p>An optional pagination token provided by a previous
12259
- * <code>DescribeDBClusterSnapshots</code> request.
12260
- * If this parameter is specified, the response includes
12261
- * only records beyond the marker,
12262
- * up to the value specified by <code>MaxRecords</code>.</p>
12263
- */
12264
- Marker?: string;
12265
- /**
12266
- * @public
12267
- * <p>Specifies whether to include shared manual DB cluster snapshots
12268
- * from other Amazon Web Services accounts that this Amazon Web Services account has been given
12269
- * permission to copy or restore. By default, these snapshots are not included.</p>
12270
- * <p>You can give an Amazon Web Services account permission to restore a manual DB cluster snapshot from
12271
- * another Amazon Web Services account by the <code>ModifyDBClusterSnapshotAttribute</code> API action.</p>
12272
- */
12273
- IncludeShared?: boolean;
12274
- /**
12275
- * @public
12276
- * <p>Specifies whether to include manual DB cluster snapshots that are public and can be copied
12277
- * or restored by any Amazon Web Services account. By default, the public snapshots are not included.</p>
12278
- * <p>You can share a manual DB cluster snapshot as public by using the <a>ModifyDBClusterSnapshotAttribute</a> API action.</p>
12279
- */
12280
- IncludePublic?: boolean;
12281
- /**
12282
- * @public
12283
- * <p>A specific DB cluster resource ID to describe.</p>
12284
- */
12285
- DbClusterResourceId?: string;
12286
- }
12287
- /**
12288
- * @public
12289
- * <p>Contains the result of a successful invocation of the <code>DescribeDBEngineVersions</code> action.</p>
12290
- */
12291
- export interface DBEngineVersionMessage {
12292
- /**
12293
- * @public
12294
- * <p>An optional pagination token provided by a previous request.
12295
- * If this parameter is specified, the response includes
12296
- * only records beyond the marker,
12297
- * up to the value specified by <code>MaxRecords</code>.</p>
12298
- */
12299
- Marker?: string;
12300
- /**
12301
- * @public
12302
- * <p>A list of <code>DBEngineVersion</code> elements.</p>
12303
- */
12304
- DBEngineVersions?: DBEngineVersion[];
12305
- }