aws-sdk 2.1579.0 → 2.1581.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/clients/rds.d.ts CHANGED
@@ -1021,6 +1021,14 @@ declare class RDS extends Service {
1021
1021
  * Modifies a setting for an Amazon Aurora global database cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. This operation only applies to Aurora global database clusters.
1022
1022
  */
1023
1023
  modifyGlobalCluster(callback?: (err: AWSError, data: RDS.Types.ModifyGlobalClusterResult) => void): Request<RDS.Types.ModifyGlobalClusterResult, AWSError>;
1024
+ /**
1025
+ * Modifies a zero-ETL integration with Amazon Redshift. Currently, you can only modify integrations that have Aurora MySQL source DB clusters. Integrations with Aurora PostgreSQL and RDS sources currently don't support modifying the integration.
1026
+ */
1027
+ modifyIntegration(params: RDS.Types.ModifyIntegrationMessage, callback?: (err: AWSError, data: RDS.Types.Integration) => void): Request<RDS.Types.Integration, AWSError>;
1028
+ /**
1029
+ * Modifies a zero-ETL integration with Amazon Redshift. Currently, you can only modify integrations that have Aurora MySQL source DB clusters. Integrations with Aurora PostgreSQL and RDS sources currently don't support modifying the integration.
1030
+ */
1031
+ modifyIntegration(callback?: (err: AWSError, data: RDS.Types.Integration) => void): Request<RDS.Types.Integration, AWSError>;
1024
1032
  /**
1025
1033
  * Modifies an existing option group.
1026
1034
  */
@@ -2978,6 +2986,14 @@ declare namespace RDS {
2978
2986
  */
2979
2987
  AdditionalEncryptionContext?: EncryptionContextMap;
2980
2988
  Tags?: TagList;
2989
+ /**
2990
+ * Data filtering options for the integration. For more information, see Data filtering for Aurora zero-ETL integrations with Amazon Redshift. Valid for: Integrations with Aurora MySQL source DB clusters only
2991
+ */
2992
+ DataFilter?: DataFilter;
2993
+ /**
2994
+ * A description of the integration.
2995
+ */
2996
+ Description?: IntegrationDescription;
2981
2997
  }
2982
2998
  export interface CreateOptionGroupMessage {
2983
2999
  /**
@@ -5204,6 +5220,7 @@ declare namespace RDS {
5204
5220
  DBSubnetGroups?: DBSubnetGroups;
5205
5221
  }
5206
5222
  export type DBSubnetGroups = DBSubnetGroup[];
5223
+ export type DataFilter = string;
5207
5224
  export type DatabaseArn = string;
5208
5225
  export interface DeleteBlueGreenDeploymentRequest {
5209
5226
  /**
@@ -7109,8 +7126,17 @@ declare namespace RDS {
7109
7126
  * Any errors associated with the integration.
7110
7127
  */
7111
7128
  Errors?: IntegrationErrorList;
7129
+ /**
7130
+ * Data filters for the integration. These filters determine which tables from the source database are sent to the target Amazon Redshift data warehouse.
7131
+ */
7132
+ DataFilter?: DataFilter;
7133
+ /**
7134
+ * A description of the integration.
7135
+ */
7136
+ Description?: IntegrationDescription;
7112
7137
  }
7113
7138
  export type IntegrationArn = string;
7139
+ export type IntegrationDescription = string;
7114
7140
  export interface IntegrationError {
7115
7141
  /**
7116
7142
  * The error code associated with the integration.
@@ -8010,6 +8036,24 @@ declare namespace RDS {
8010
8036
  export interface ModifyGlobalClusterResult {
8011
8037
  GlobalCluster?: GlobalCluster;
8012
8038
  }
8039
+ export interface ModifyIntegrationMessage {
8040
+ /**
8041
+ * The unique identifier of the integration to modify.
8042
+ */
8043
+ IntegrationIdentifier: IntegrationIdentifier;
8044
+ /**
8045
+ * A new name for the integration.
8046
+ */
8047
+ IntegrationName?: IntegrationName;
8048
+ /**
8049
+ * A new data filter for the integration. For more information, see Data filtering for Aurora zero-ETL integrations with Amazon Redshift.
8050
+ */
8051
+ DataFilter?: DataFilter;
8052
+ /**
8053
+ * A new description for the integration.
8054
+ */
8055
+ Description?: IntegrationDescription;
8056
+ }
8013
8057
  export interface ModifyOptionGroupMessage {
8014
8058
  /**
8015
8059
  * The name of the option group to be modified. Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group, and that option group can't be removed from a DB instance once it is associated with a DB instance
@@ -76,11 +76,11 @@ declare class TimestreamQuery extends Service {
76
76
  */
77
77
  listTagsForResource(callback?: (err: AWSError, data: TimestreamQuery.Types.ListTagsForResourceResponse) => void): Request<TimestreamQuery.Types.ListTagsForResourceResponse, AWSError>;
78
78
  /**
79
- * A synchronous operation that allows you to submit a query with parameters to be stored by Timestream for later running. Timestream only supports using this operation with the PrepareQueryRequest$ValidateOnly set to true.
79
+ * A synchronous operation that allows you to submit a query with parameters to be stored by Timestream for later running. Timestream only supports using this operation with ValidateOnly set to true.
80
80
  */
81
81
  prepareQuery(params: TimestreamQuery.Types.PrepareQueryRequest, callback?: (err: AWSError, data: TimestreamQuery.Types.PrepareQueryResponse) => void): Request<TimestreamQuery.Types.PrepareQueryResponse, AWSError>;
82
82
  /**
83
- * A synchronous operation that allows you to submit a query with parameters to be stored by Timestream for later running. Timestream only supports using this operation with the PrepareQueryRequest$ValidateOnly set to true.
83
+ * A synchronous operation that allows you to submit a query with parameters to be stored by Timestream for later running. Timestream only supports using this operation with ValidateOnly set to true.
84
84
  */
85
85
  prepareQuery(callback?: (err: AWSError, data: TimestreamQuery.Types.PrepareQueryResponse) => void): Request<TimestreamQuery.Types.PrepareQueryResponse, AWSError>;
86
86
  /**
@@ -807,7 +807,7 @@ declare namespace TimestreamQuery {
807
807
  }
808
808
  export interface Type {
809
809
  /**
810
- * Indicates if the column is of type string, integer, Boolean, double, timestamp, date, time.
810
+ * Indicates if the column is of type string, integer, Boolean, double, timestamp, date, time. For more information, see Supported data types.
811
811
  */
812
812
  ScalarType?: ScalarType;
813
813
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1579.0',
86
+ VERSION: '2.1581.0',
87
87
 
88
88
  /**
89
89
  * @api private