aws-sdk 2.1493.0 → 2.1495.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/cur.d.ts CHANGED
@@ -12,27 +12,35 @@ declare class CUR extends Service {
12
12
  constructor(options?: CUR.Types.ClientConfiguration)
13
13
  config: Config & CUR.Types.ClientConfiguration;
14
14
  /**
15
- * Deletes the specified report.
15
+ * Deletes the specified report. Any tags associated with the report are also deleted.
16
16
  */
17
17
  deleteReportDefinition(params: CUR.Types.DeleteReportDefinitionRequest, callback?: (err: AWSError, data: CUR.Types.DeleteReportDefinitionResponse) => void): Request<CUR.Types.DeleteReportDefinitionResponse, AWSError>;
18
18
  /**
19
- * Deletes the specified report.
19
+ * Deletes the specified report. Any tags associated with the report are also deleted.
20
20
  */
21
21
  deleteReportDefinition(callback?: (err: AWSError, data: CUR.Types.DeleteReportDefinitionResponse) => void): Request<CUR.Types.DeleteReportDefinitionResponse, AWSError>;
22
22
  /**
23
- * Lists the AWS Cost and Usage reports available to this account.
23
+ * Lists the Amazon Web Services Cost and Usage Report available to this account.
24
24
  */
25
25
  describeReportDefinitions(params: CUR.Types.DescribeReportDefinitionsRequest, callback?: (err: AWSError, data: CUR.Types.DescribeReportDefinitionsResponse) => void): Request<CUR.Types.DescribeReportDefinitionsResponse, AWSError>;
26
26
  /**
27
- * Lists the AWS Cost and Usage reports available to this account.
27
+ * Lists the Amazon Web Services Cost and Usage Report available to this account.
28
28
  */
29
29
  describeReportDefinitions(callback?: (err: AWSError, data: CUR.Types.DescribeReportDefinitionsResponse) => void): Request<CUR.Types.DescribeReportDefinitionsResponse, AWSError>;
30
30
  /**
31
- * Allows you to programatically update your report preferences.
31
+ * Lists the tags associated with the specified report definition.
32
+ */
33
+ listTagsForResource(params: CUR.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: CUR.Types.ListTagsForResourceResponse) => void): Request<CUR.Types.ListTagsForResourceResponse, AWSError>;
34
+ /**
35
+ * Lists the tags associated with the specified report definition.
36
+ */
37
+ listTagsForResource(callback?: (err: AWSError, data: CUR.Types.ListTagsForResourceResponse) => void): Request<CUR.Types.ListTagsForResourceResponse, AWSError>;
38
+ /**
39
+ * Allows you to programmatically update your report preferences.
32
40
  */
33
41
  modifyReportDefinition(params: CUR.Types.ModifyReportDefinitionRequest, callback?: (err: AWSError, data: CUR.Types.ModifyReportDefinitionResponse) => void): Request<CUR.Types.ModifyReportDefinitionResponse, AWSError>;
34
42
  /**
35
- * Allows you to programatically update your report preferences.
43
+ * Allows you to programmatically update your report preferences.
36
44
  */
37
45
  modifyReportDefinition(callback?: (err: AWSError, data: CUR.Types.ModifyReportDefinitionResponse) => void): Request<CUR.Types.ModifyReportDefinitionResponse, AWSError>;
38
46
  /**
@@ -43,6 +51,22 @@ declare class CUR extends Service {
43
51
  * Creates a new report using the description that you provide.
44
52
  */
45
53
  putReportDefinition(callback?: (err: AWSError, data: CUR.Types.PutReportDefinitionResponse) => void): Request<CUR.Types.PutReportDefinitionResponse, AWSError>;
54
+ /**
55
+ * Associates a set of tags with a report definition.
56
+ */
57
+ tagResource(params: CUR.Types.TagResourceRequest, callback?: (err: AWSError, data: CUR.Types.TagResourceResponse) => void): Request<CUR.Types.TagResourceResponse, AWSError>;
58
+ /**
59
+ * Associates a set of tags with a report definition.
60
+ */
61
+ tagResource(callback?: (err: AWSError, data: CUR.Types.TagResourceResponse) => void): Request<CUR.Types.TagResourceResponse, AWSError>;
62
+ /**
63
+ * Disassociates a set of tags from a report definition.
64
+ */
65
+ untagResource(params: CUR.Types.UntagResourceRequest, callback?: (err: AWSError, data: CUR.Types.UntagResourceResponse) => void): Request<CUR.Types.UntagResourceResponse, AWSError>;
66
+ /**
67
+ * Disassociates a set of tags from a report definition.
68
+ */
69
+ untagResource(callback?: (err: AWSError, data: CUR.Types.UntagResourceResponse) => void): Request<CUR.Types.UntagResourceResponse, AWSError>;
46
70
  }
47
71
  declare namespace CUR {
48
72
  export type AWSRegion = "af-south-1"|"ap-east-1"|"ap-south-1"|"ap-south-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"ca-central-1"|"eu-central-1"|"eu-central-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-north-1"|"eu-south-1"|"eu-south-2"|"me-central-1"|"me-south-1"|"sa-east-1"|"us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"cn-north-1"|"cn-northwest-1"|string;
@@ -54,7 +78,7 @@ declare namespace CUR {
54
78
  /**
55
79
  * The name of the report that you want to delete. The name must be unique, is case sensitive, and can't include spaces.
56
80
  */
57
- ReportName?: ReportName;
81
+ ReportName: ReportName;
58
82
  }
59
83
  export interface DeleteReportDefinitionResponse {
60
84
  ResponseMessage?: DeleteResponseMessage;
@@ -66,12 +90,26 @@ declare namespace CUR {
66
90
  }
67
91
  export interface DescribeReportDefinitionsResponse {
68
92
  /**
69
- * A list of AWS Cost and Usage reports owned by the account.
93
+ * An Amazon Web Services Cost and Usage Report list owned by the account.
70
94
  */
71
95
  ReportDefinitions?: ReportDefinitionList;
72
96
  NextToken?: GenericString;
73
97
  }
74
98
  export type GenericString = string;
99
+ export type LastDelivery = string;
100
+ export type LastStatus = "SUCCESS"|"ERROR_PERMISSIONS"|"ERROR_NO_BUCKET"|string;
101
+ export interface ListTagsForResourceRequest {
102
+ /**
103
+ * The report name of the report definition that tags are to be returned for.
104
+ */
105
+ ReportName: ReportName;
106
+ }
107
+ export interface ListTagsForResourceResponse {
108
+ /**
109
+ * The tags assigned to the report definition resource.
110
+ */
111
+ Tags?: TagList;
112
+ }
75
113
  export type MaxResults = number;
76
114
  export interface ModifyReportDefinitionRequest {
77
115
  ReportName: ReportName;
@@ -84,6 +122,10 @@ declare namespace CUR {
84
122
  * Represents the output of the PutReportDefinition operation. The content consists of the detailed metadata and data file information.
85
123
  */
86
124
  ReportDefinition: ReportDefinition;
125
+ /**
126
+ * The tags to be assigned to the report definition resource.
127
+ */
128
+ Tags?: TagList;
87
129
  }
88
130
  export interface PutReportDefinitionResponse {
89
131
  }
@@ -113,19 +155,71 @@ declare namespace CUR {
113
155
  */
114
156
  ReportVersioning?: ReportVersioning;
115
157
  /**
116
- * The Amazon resource name of the billing view. You can get this value by using the billing view service public APIs.
158
+ * The Amazon resource name of the billing view. The BillingViewArn is needed to create Amazon Web Services Cost and Usage Report for each billing group maintained in the Amazon Web Services Billing Conductor service. The BillingViewArn for a billing group can be constructed as: arn:aws:billing::payer-account-id:billingview/billing-group-primary-account-id
117
159
  */
118
160
  BillingViewArn?: BillingViewArn;
161
+ /**
162
+ * The status of the report.
163
+ */
164
+ ReportStatus?: ReportStatus;
119
165
  }
120
166
  export type ReportDefinitionList = ReportDefinition[];
121
167
  export type ReportFormat = "textORcsv"|"Parquet"|string;
122
168
  export type ReportName = string;
169
+ export interface ReportStatus {
170
+ /**
171
+ * A timestamp that gives the date of a report delivery.
172
+ */
173
+ lastDelivery?: LastDelivery;
174
+ /**
175
+ * An enum that gives the status of a report delivery.
176
+ */
177
+ lastStatus?: LastStatus;
178
+ }
123
179
  export type ReportVersioning = "CREATE_NEW_REPORT"|"OVERWRITE_REPORT"|string;
124
180
  export type S3Bucket = string;
125
181
  export type S3Prefix = string;
126
- export type SchemaElement = "RESOURCES"|"SPLIT_COST_ALLOCATION_DATA"|string;
182
+ export type SchemaElement = "RESOURCES"|"SPLIT_COST_ALLOCATION_DATA"|"MANUAL_DISCOUNT_COMPATIBILITY"|string;
127
183
  export type SchemaElementList = SchemaElement[];
184
+ export interface Tag {
185
+ /**
186
+ * The key of the tag. Tag keys are case sensitive. Each report definition can only have up to one tag with the same key. If you try to add an existing tag with the same key, the existing tag value will be updated to the new value.
187
+ */
188
+ Key: TagKey;
189
+ /**
190
+ * The value of the tag. Tag values are case-sensitive. This can be an empty string.
191
+ */
192
+ Value: TagValue;
193
+ }
194
+ export type TagKey = string;
195
+ export type TagKeyList = TagKey[];
196
+ export type TagList = Tag[];
197
+ export interface TagResourceRequest {
198
+ /**
199
+ * The report name of the report definition that tags are to be associated with.
200
+ */
201
+ ReportName: ReportName;
202
+ /**
203
+ * The tags to be assigned to the report definition resource.
204
+ */
205
+ Tags: TagList;
206
+ }
207
+ export interface TagResourceResponse {
208
+ }
209
+ export type TagValue = string;
128
210
  export type TimeUnit = "HOURLY"|"DAILY"|"MONTHLY"|string;
211
+ export interface UntagResourceRequest {
212
+ /**
213
+ * The report name of the report definition that tags are to be disassociated from.
214
+ */
215
+ ReportName: ReportName;
216
+ /**
217
+ * The tags to be disassociated from the report definition resource.
218
+ */
219
+ TagKeys: TagKeyList;
220
+ }
221
+ export interface UntagResourceResponse {
222
+ }
129
223
  /**
130
224
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
131
225
  */
@@ -1730,7 +1730,7 @@ declare namespace DataExchange {
1730
1730
  /**
1731
1731
  * The product ID of the origin of the data set.
1732
1732
  */
1733
- ProductId: __string;
1733
+ ProductId?: __string;
1734
1734
  }
1735
1735
  export type ProtocolType = "REST"|string;
1736
1736
  export interface RedshiftDataShareAsset {
package/clients/dms.d.ts CHANGED
@@ -1224,7 +1224,7 @@ declare namespace DMS {
1224
1224
  */
1225
1225
  Description?: String;
1226
1226
  /**
1227
- * The type of database engine for the data provider. Valid values include "aurora", "aurora_postgresql", "mysql", "oracle", "postgres", and "sqlserver". A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
1227
+ * The type of database engine for the data provider. Valid values include "aurora", "aurora-postgresql", "mysql", "oracle", "postgres", "sqlserver", redshift, mariadb, mongodb, and docdb. A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
1228
1228
  */
1229
1229
  Engine: String;
1230
1230
  /**
@@ -1674,7 +1674,7 @@ declare namespace DMS {
1674
1674
  */
1675
1675
  ReplicationSubnetGroupDescription: String;
1676
1676
  /**
1677
- * One or more subnet IDs to be assigned to the subnet group.
1677
+ * Two or more subnet IDs to be assigned to the subnet group.
1678
1678
  */
1679
1679
  SubnetIds: SubnetIdentifierList;
1680
1680
  /**
@@ -1767,7 +1767,7 @@ declare namespace DMS {
1767
1767
  */
1768
1768
  Description?: String;
1769
1769
  /**
1770
- * The type of database engine for the data provider. Valid values include "aurora", "aurora_postgresql", "mysql", "oracle", "postgres", and "sqlserver". A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
1770
+ * The type of database engine for the data provider. Valid values include "aurora", "aurora-postgresql", "mysql", "oracle", "postgres", "sqlserver", redshift, mariadb, mongodb, and docdb. A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
1771
1771
  */
1772
1772
  Engine?: String;
1773
1773
  /**
@@ -2194,7 +2194,7 @@ declare namespace DMS {
2194
2194
  }
2195
2195
  export interface DescribeDataProvidersMessage {
2196
2196
  /**
2197
- * Filters applied to the data providers described in the form of key-value pairs.
2197
+ * Filters applied to the data providers described in the form of key-value pairs. Valid filter names: data-provider-identifier
2198
2198
  */
2199
2199
  Filters?: FilterList;
2200
2200
  /**
@@ -3284,7 +3284,7 @@ declare namespace DMS {
3284
3284
  */
3285
3285
  EndpointType?: ReplicationEndpointTypeValue;
3286
3286
  /**
3287
- * The database engine name. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "db2-zos", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", "sqlserver", "neptune", and "babelfish".
3287
+ * The database engine name. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "redshift-serverless", "s3", "db2", "db2-zos", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", "sqlserver", "neptune", and "babelfish".
3288
3288
  */
3289
3289
  EngineName?: String;
3290
3290
  /**
@@ -3769,6 +3769,22 @@ declare namespace DMS {
3769
3769
  * The full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the Db2 LUW endpoint connection details.
3770
3770
  */
3771
3771
  SecretsManagerSecretId?: String;
3772
+ /**
3773
+ * The amount of time (in milliseconds) before DMS times out operations performed by DMS on the Db2 target. The default value is 1200 (20 minutes).
3774
+ */
3775
+ LoadTimeout?: IntegerOptional;
3776
+ /**
3777
+ * The size (in KB) of the in-memory file write buffer used when generating .csv files on the local disk on the DMS replication instance. The default value is 1024 (1 MB).
3778
+ */
3779
+ WriteBufferSize?: IntegerOptional;
3780
+ /**
3781
+ * Specifies the maximum size (in KB) of .csv files used to transfer data to Db2 LUW.
3782
+ */
3783
+ MaxFileSize?: IntegerOptional;
3784
+ /**
3785
+ * If true, DMS saves any .csv files to the Db2 LUW target that were used to replicate data. DMS uses these files for analysis and troubleshooting. The default value is false.
3786
+ */
3787
+ KeepCsvFiles?: BooleanOptional;
3772
3788
  }
3773
3789
  export interface ImportCertificateMessage {
3774
3790
  /**
@@ -4212,7 +4228,7 @@ declare namespace DMS {
4212
4228
  */
4213
4229
  Description?: String;
4214
4230
  /**
4215
- * The type of database engine for the data provider. Valid values include "aurora", "aurora_postgresql", "mysql", "oracle", "postgres", and "sqlserver". A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
4231
+ * The type of database engine for the data provider. Valid values include "aurora", "aurora-postgresql", "mysql", "oracle", "postgres", "sqlserver", redshift, mariadb, mongodb, and docdb. A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
4216
4232
  */
4217
4233
  Engine?: String;
4218
4234
  /**
@@ -4820,6 +4836,10 @@ declare namespace DMS {
4820
4836
  * The full ARN, partial ARN, or friendly name of the SecretsManagerSecret that contains the MySQL endpoint connection details.
4821
4837
  */
4822
4838
  SecretsManagerSecretId?: String;
4839
+ /**
4840
+ * Sets the client statement timeout (in seconds) for a MySQL source endpoint.
4841
+ */
4842
+ ExecuteTimeout?: IntegerOptional;
4823
4843
  }
4824
4844
  export interface MySqlDataProviderSettings {
4825
4845
  /**
@@ -5784,6 +5804,10 @@ declare namespace DMS {
5784
5804
  * The timestamp when replication was last stopped.
5785
5805
  */
5786
5806
  ReplicationLastStopTime?: TStamp;
5807
+ /**
5808
+ * The timestamp when DMS will deprovision the replication.
5809
+ */
5810
+ ReplicationDeprovisionTime?: TStamp;
5787
5811
  }
5788
5812
  export interface ReplicationConfig {
5789
5813
  /**