aws-sdk-costandusagereportservice 1.6.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cc8a1462383c61981f7d8f2b167fe28716f913a7
4
- data.tar.gz: 9a6f709588d066d3b4044e1a9eeb5b0b8b35ae3c
3
+ metadata.gz: 3daaf964f175d7a50b3d5d8364e8197f72c44b63
4
+ data.tar.gz: 8fe3e8fae66d108dfe4d6d770896944faa80e6d1
5
5
  SHA512:
6
- metadata.gz: 757e59f747b272b29dd017259adfa489222828259bc5c1449a40bd66227b5a9cb10d17817b13006051932b07347c3bf61213152bcd523d194618bd2c7988cb3b
7
- data.tar.gz: b2820980e0e210eda27bdc416f97dd9bab2fa7a1276ea7caa47422f715d1af2d7beac3ac7aa595ce4979b1decac2a4953236c023929c2bec407c94a17dca9f9f
6
+ metadata.gz: 77a425de926b538896788798ed7b418c8fad613b069f99781f034acc174166d4a0b8c3af70d947f03cd5d0ff44990423bb568c21e355a9770e4448b2a3914cd6
7
+ data.tar.gz: 84a2e769535241cd1ed5ed680209d077b3e205c1260193afcd3f246419f6e86bb27c5f4bf6bc93dbe2f25da9b2adc68d4652b2f0aab6e35e35686ae4baa4dd68
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-costandusagereportservice/customizations'
42
42
  # @service
43
43
  module Aws::CostandUsageReportService
44
44
 
45
- GEM_VERSION = '1.6.0'
45
+ GEM_VERSION = '1.7.0'
46
46
 
47
47
  end
@@ -215,16 +215,25 @@ module Aws::CostandUsageReportService
215
215
 
216
216
  # @!group API Operations
217
217
 
218
- # Delete a specified report definition
218
+ # Deletes the specified report.
219
219
  #
220
220
  # @option params [String] :report_name
221
- # Preferred name for a report, it has to be unique. Must starts with a
222
- # number/letter, case sensitive. Limited to 256 characters.
221
+ # The name of the report that you want to create. The name must be
222
+ # unique, is case sensitive, and can't include spaces.
223
223
  #
224
224
  # @return [Types::DeleteReportDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
225
225
  #
226
226
  # * {Types::DeleteReportDefinitionResponse#response_message #response_message} => String
227
227
  #
228
+ #
229
+ # @example Example: To delete the AWS Cost and Usage report named ExampleReport.
230
+ #
231
+ # # The following example deletes the AWS Cost and Usage report named ExampleReport.
232
+ #
233
+ # resp = client.delete_report_definition({
234
+ # report_name: "ExampleReport",
235
+ # })
236
+ #
228
237
  # @example Request syntax with placeholder values
229
238
  #
230
239
  # resp = client.delete_report_definition({
@@ -244,10 +253,10 @@ module Aws::CostandUsageReportService
244
253
  req.send_request(options)
245
254
  end
246
255
 
247
- # Describe a list of report definitions owned by the account
256
+ # Lists the AWS Cost and Usage reports available to this account.
248
257
  #
249
258
  # @option params [Integer] :max_results
250
- # The max number of results returned by the operation.
259
+ # The maximum number of results that AWS returns for the operation.
251
260
  #
252
261
  # @option params [String] :next_token
253
262
  # A generic string.
@@ -257,6 +266,51 @@ module Aws::CostandUsageReportService
257
266
  # * {Types::DescribeReportDefinitionsResponse#report_definitions #report_definitions} => Array<Types::ReportDefinition>
258
267
  # * {Types::DescribeReportDefinitionsResponse#next_token #next_token} => String
259
268
  #
269
+ #
270
+ # @example Example: To list the AWS Cost and Usage reports for the account.
271
+ #
272
+ # # The following example lists the AWS Cost and Usage reports for the account.
273
+ #
274
+ # resp = client.describe_report_definitions({
275
+ # max_results: 5,
276
+ # })
277
+ #
278
+ # resp.to_h outputs the following:
279
+ # {
280
+ # report_definitions: [
281
+ # {
282
+ # additional_artifacts: [
283
+ # "QUICKSIGHT",
284
+ # ],
285
+ # additional_schema_elements: [
286
+ # "RESOURCES",
287
+ # ],
288
+ # compression: "GZIP",
289
+ # format: "textORcsv",
290
+ # report_name: "ExampleReport",
291
+ # s3_bucket: "example-s3-bucket",
292
+ # s3_prefix: "exampleprefix",
293
+ # s3_region: "us-east-1",
294
+ # time_unit: "HOURLY",
295
+ # },
296
+ # {
297
+ # additional_artifacts: [
298
+ # "QUICKSIGHT",
299
+ # ],
300
+ # additional_schema_elements: [
301
+ # "RESOURCES",
302
+ # ],
303
+ # compression: "GZIP",
304
+ # format: "textORcsv",
305
+ # report_name: "ExampleReport2",
306
+ # s3_bucket: "example-s3-bucket",
307
+ # s3_prefix: "exampleprefix",
308
+ # s3_region: "us-east-1",
309
+ # time_unit: "HOURLY",
310
+ # },
311
+ # ],
312
+ # }
313
+ #
260
314
  # @example Request syntax with placeholder values
261
315
  #
262
316
  # resp = client.describe_report_definitions({
@@ -269,15 +323,17 @@ module Aws::CostandUsageReportService
269
323
  # resp.report_definitions #=> Array
270
324
  # resp.report_definitions[0].report_name #=> String
271
325
  # resp.report_definitions[0].time_unit #=> String, one of "HOURLY", "DAILY"
272
- # resp.report_definitions[0].format #=> String, one of "textORcsv"
273
- # resp.report_definitions[0].compression #=> String, one of "ZIP", "GZIP"
326
+ # resp.report_definitions[0].format #=> String, one of "textORcsv", "Parquet"
327
+ # resp.report_definitions[0].compression #=> String, one of "ZIP", "GZIP", "Parquet"
274
328
  # resp.report_definitions[0].additional_schema_elements #=> Array
275
329
  # resp.report_definitions[0].additional_schema_elements[0] #=> String, one of "RESOURCES"
276
330
  # resp.report_definitions[0].s3_bucket #=> String
277
331
  # resp.report_definitions[0].s3_prefix #=> String
278
- # resp.report_definitions[0].s3_region #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-central-1", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1"
332
+ # resp.report_definitions[0].s3_region #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-central-1", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "eu-north-1", "ap-northeast-3"
279
333
  # resp.report_definitions[0].additional_artifacts #=> Array
280
- # resp.report_definitions[0].additional_artifacts[0] #=> String, one of "REDSHIFT", "QUICKSIGHT"
334
+ # resp.report_definitions[0].additional_artifacts[0] #=> String, one of "REDSHIFT", "QUICKSIGHT", "ATHENA"
335
+ # resp.report_definitions[0].refresh_closed_reports #=> Boolean
336
+ # resp.report_definitions[0].report_versioning #=> String, one of "CREATE_NEW_REPORT", "OVERWRITE_REPORT"
281
337
  # resp.next_token #=> String
282
338
  #
283
339
  # @see http://docs.aws.amazon.com/goto/WebAPI/cur-2017-01-06/DescribeReportDefinitions AWS API Documentation
@@ -289,28 +345,53 @@ module Aws::CostandUsageReportService
289
345
  req.send_request(options)
290
346
  end
291
347
 
292
- # Create a new report definition
348
+ # Creates a new report using the description that you provide.
293
349
  #
294
350
  # @option params [required, Types::ReportDefinition] :report_definition
295
- # The definition of AWS Cost and Usage Report. Customer can specify the
296
- # report name, time unit, report format, compression format, S3 bucket
297
- # and additional artifacts and schema elements in the definition.
351
+ # Represents the output of the PutReportDefinition operation. The
352
+ # content consists of the detailed metadata and data file information.
298
353
  #
299
354
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
300
355
  #
356
+ #
357
+ # @example Example: To create a report named ExampleReport.
358
+ #
359
+ # # The following example creates a AWS Cost and Usage report named ExampleReport.
360
+ #
361
+ # resp = client.put_report_definition({
362
+ # report_definition: {
363
+ # additional_artifacts: [
364
+ # "REDSHIFT",
365
+ # "QUICKSIGHT",
366
+ # ],
367
+ # additional_schema_elements: [
368
+ # "RESOURCES",
369
+ # ],
370
+ # compression: "ZIP",
371
+ # format: "textORcsv",
372
+ # report_name: "ExampleReport",
373
+ # s3_bucket: "example-s3-bucket",
374
+ # s3_prefix: "exampleprefix",
375
+ # s3_region: "us-east-1",
376
+ # time_unit: "DAILY",
377
+ # },
378
+ # })
379
+ #
301
380
  # @example Request syntax with placeholder values
302
381
  #
303
382
  # resp = client.put_report_definition({
304
383
  # report_definition: { # required
305
384
  # report_name: "ReportName", # required
306
385
  # time_unit: "HOURLY", # required, accepts HOURLY, DAILY
307
- # format: "textORcsv", # required, accepts textORcsv
308
- # compression: "ZIP", # required, accepts ZIP, GZIP
386
+ # format: "textORcsv", # required, accepts textORcsv, Parquet
387
+ # compression: "ZIP", # required, accepts ZIP, GZIP, Parquet
309
388
  # additional_schema_elements: ["RESOURCES"], # required, accepts RESOURCES
310
389
  # s3_bucket: "S3Bucket", # required
311
390
  # s3_prefix: "S3Prefix", # required
312
- # s3_region: "us-east-1", # required, accepts us-east-1, us-west-1, us-west-2, eu-central-1, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1
313
- # additional_artifacts: ["REDSHIFT"], # accepts REDSHIFT, QUICKSIGHT
391
+ # s3_region: "us-east-1", # required, accepts us-east-1, us-west-1, us-west-2, eu-central-1, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, eu-north-1, ap-northeast-3
392
+ # additional_artifacts: ["REDSHIFT"], # accepts REDSHIFT, QUICKSIGHT, ATHENA
393
+ # refresh_closed_reports: false,
394
+ # report_versioning: "CREATE_NEW_REPORT", # accepts CREATE_NEW_REPORT, OVERWRITE_REPORT
314
395
  # },
315
396
  # })
316
397
  #
@@ -336,7 +417,7 @@ module Aws::CostandUsageReportService
336
417
  params: params,
337
418
  config: config)
338
419
  context[:gem_name] = 'aws-sdk-costandusagereportservice'
339
- context[:gem_version] = '1.6.0'
420
+ context[:gem_version] = '1.7.0'
340
421
  Seahorse::Client::Request.new(handlers, context)
341
422
  end
342
423
 
@@ -27,11 +27,13 @@ module Aws::CostandUsageReportService
27
27
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
28
28
  PutReportDefinitionRequest = Shapes::StructureShape.new(name: 'PutReportDefinitionRequest')
29
29
  PutReportDefinitionResponse = Shapes::StructureShape.new(name: 'PutReportDefinitionResponse')
30
+ RefreshClosedReports = Shapes::BooleanShape.new(name: 'RefreshClosedReports')
30
31
  ReportDefinition = Shapes::StructureShape.new(name: 'ReportDefinition')
31
32
  ReportDefinitionList = Shapes::ListShape.new(name: 'ReportDefinitionList')
32
33
  ReportFormat = Shapes::StringShape.new(name: 'ReportFormat')
33
34
  ReportLimitReachedException = Shapes::StructureShape.new(name: 'ReportLimitReachedException')
34
35
  ReportName = Shapes::StringShape.new(name: 'ReportName')
36
+ ReportVersioning = Shapes::StringShape.new(name: 'ReportVersioning')
35
37
  S3Bucket = Shapes::StringShape.new(name: 'S3Bucket')
36
38
  S3Prefix = Shapes::StringShape.new(name: 'S3Prefix')
37
39
  SchemaElement = Shapes::StringShape.new(name: 'SchemaElement')
@@ -69,6 +71,8 @@ module Aws::CostandUsageReportService
69
71
  ReportDefinition.add_member(:s3_prefix, Shapes::ShapeRef.new(shape: S3Prefix, required: true, location_name: "S3Prefix"))
70
72
  ReportDefinition.add_member(:s3_region, Shapes::ShapeRef.new(shape: AWSRegion, required: true, location_name: "S3Region"))
71
73
  ReportDefinition.add_member(:additional_artifacts, Shapes::ShapeRef.new(shape: AdditionalArtifactList, location_name: "AdditionalArtifacts"))
74
+ ReportDefinition.add_member(:refresh_closed_reports, Shapes::ShapeRef.new(shape: RefreshClosedReports, location_name: "RefreshClosedReports"))
75
+ ReportDefinition.add_member(:report_versioning, Shapes::ShapeRef.new(shape: ReportVersioning, location_name: "ReportVersioning"))
72
76
  ReportDefinition.struct_class = Types::ReportDefinition
73
77
 
74
78
  ReportDefinitionList.member = Shapes::ShapeRef.new(shape: ReportDefinition)
@@ -87,6 +91,7 @@ module Aws::CostandUsageReportService
87
91
  "jsonVersion" => "1.1",
88
92
  "protocol" => "json",
89
93
  "serviceFullName" => "AWS Cost and Usage Report Service",
94
+ "serviceId" => "Cost and Usage Report Service",
90
95
  "signatureVersion" => "v4",
91
96
  "signingName" => "cur",
92
97
  "targetPrefix" => "AWSOrigamiServiceGatewayService",
@@ -8,7 +8,7 @@
8
8
  module Aws::CostandUsageReportService
9
9
  module Types
10
10
 
11
- # Request of DeleteReportDefinition
11
+ # Deletes the specified report.
12
12
  #
13
13
  # @note When making an API call, you may pass DeleteReportDefinitionRequest
14
14
  # data as a hash:
@@ -18,8 +18,8 @@ module Aws::CostandUsageReportService
18
18
  # }
19
19
  #
20
20
  # @!attribute [rw] report_name
21
- # Preferred name for a report, it has to be unique. Must starts with a
22
- # number/letter, case sensitive. Limited to 256 characters.
21
+ # The name of the report that you want to create. The name must be
22
+ # unique, is case sensitive, and can't include spaces.
23
23
  # @return [String]
24
24
  #
25
25
  # @see http://docs.aws.amazon.com/goto/WebAPI/cur-2017-01-06/DeleteReportDefinitionRequest AWS API Documentation
@@ -29,10 +29,11 @@ module Aws::CostandUsageReportService
29
29
  include Aws::Structure
30
30
  end
31
31
 
32
- # Response of DeleteReportDefinition
32
+ # If the action is successful, the service sends back an HTTP 200
33
+ # response.
33
34
  #
34
35
  # @!attribute [rw] response_message
35
- # A message indicates if the deletion is successful.
36
+ # Whether the deletion was successful or not.
36
37
  # @return [String]
37
38
  #
38
39
  # @see http://docs.aws.amazon.com/goto/WebAPI/cur-2017-01-06/DeleteReportDefinitionResponse AWS API Documentation
@@ -42,7 +43,7 @@ module Aws::CostandUsageReportService
42
43
  include Aws::Structure
43
44
  end
44
45
 
45
- # Request of DescribeReportDefinitions
46
+ # Requests a list of AWS Cost and Usage reports owned by the account.
46
47
  #
47
48
  # @note When making an API call, you may pass DescribeReportDefinitionsRequest
48
49
  # data as a hash:
@@ -53,7 +54,7 @@ module Aws::CostandUsageReportService
53
54
  # }
54
55
  #
55
56
  # @!attribute [rw] max_results
56
- # The max number of results returned by the operation.
57
+ # The maximum number of results that AWS returns for the operation.
57
58
  # @return [Integer]
58
59
  #
59
60
  # @!attribute [rw] next_token
@@ -68,10 +69,11 @@ module Aws::CostandUsageReportService
68
69
  include Aws::Structure
69
70
  end
70
71
 
71
- # Response of DescribeReportDefinitions
72
+ # If the action is successful, the service sends back an HTTP 200
73
+ # response.
72
74
  #
73
75
  # @!attribute [rw] report_definitions
74
- # A list of report definitions.
76
+ # A list of AWS Cost and Usage reports owned by the account.
75
77
  # @return [Array<Types::ReportDefinition>]
76
78
  #
77
79
  # @!attribute [rw] next_token
@@ -86,7 +88,7 @@ module Aws::CostandUsageReportService
86
88
  include Aws::Structure
87
89
  end
88
90
 
89
- # Request of PutReportDefinition
91
+ # Creates a Cost and Usage Report.
90
92
  #
91
93
  # @note When making an API call, you may pass PutReportDefinitionRequest
92
94
  # data as a hash:
@@ -95,21 +97,21 @@ module Aws::CostandUsageReportService
95
97
  # report_definition: { # required
96
98
  # report_name: "ReportName", # required
97
99
  # time_unit: "HOURLY", # required, accepts HOURLY, DAILY
98
- # format: "textORcsv", # required, accepts textORcsv
99
- # compression: "ZIP", # required, accepts ZIP, GZIP
100
+ # format: "textORcsv", # required, accepts textORcsv, Parquet
101
+ # compression: "ZIP", # required, accepts ZIP, GZIP, Parquet
100
102
  # additional_schema_elements: ["RESOURCES"], # required, accepts RESOURCES
101
103
  # s3_bucket: "S3Bucket", # required
102
104
  # s3_prefix: "S3Prefix", # required
103
- # s3_region: "us-east-1", # required, accepts us-east-1, us-west-1, us-west-2, eu-central-1, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1
104
- # additional_artifacts: ["REDSHIFT"], # accepts REDSHIFT, QUICKSIGHT
105
+ # s3_region: "us-east-1", # required, accepts us-east-1, us-west-1, us-west-2, eu-central-1, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, eu-north-1, ap-northeast-3
106
+ # additional_artifacts: ["REDSHIFT"], # accepts REDSHIFT, QUICKSIGHT, ATHENA
107
+ # refresh_closed_reports: false,
108
+ # report_versioning: "CREATE_NEW_REPORT", # accepts CREATE_NEW_REPORT, OVERWRITE_REPORT
105
109
  # },
106
110
  # }
107
111
  #
108
112
  # @!attribute [rw] report_definition
109
- # The definition of AWS Cost and Usage Report. Customer can specify
110
- # the report name, time unit, report format, compression format, S3
111
- # bucket and additional artifacts and schema elements in the
112
- # definition.
113
+ # Represents the output of the PutReportDefinition operation. The
114
+ # content consists of the detailed metadata and data file information.
113
115
  # @return [Types::ReportDefinition]
114
116
  #
115
117
  # @see http://docs.aws.amazon.com/goto/WebAPI/cur-2017-01-06/PutReportDefinitionRequest AWS API Documentation
@@ -119,15 +121,16 @@ module Aws::CostandUsageReportService
119
121
  include Aws::Structure
120
122
  end
121
123
 
122
- # Response of PutReportDefinition
124
+ # If the action is successful, the service sends back an HTTP 200
125
+ # response with an empty HTTP body.
123
126
  #
124
127
  # @see http://docs.aws.amazon.com/goto/WebAPI/cur-2017-01-06/PutReportDefinitionResponse AWS API Documentation
125
128
  #
126
129
  class PutReportDefinitionResponse < Aws::EmptyStructure; end
127
130
 
128
- # The definition of AWS Cost and Usage Report. Customer can specify the
129
- # report name, time unit, report format, compression format, S3 bucket
130
- # and additional artifacts and schema elements in the definition.
131
+ # The definition of AWS Cost and Usage Report. You can specify the
132
+ # report name, time unit, report format, compression format, S3 bucket,
133
+ # additional artifacts, and schema elements in the definition.
131
134
  #
132
135
  # @note When making an API call, you may pass ReportDefinition
133
136
  # data as a hash:
@@ -135,52 +138,70 @@ module Aws::CostandUsageReportService
135
138
  # {
136
139
  # report_name: "ReportName", # required
137
140
  # time_unit: "HOURLY", # required, accepts HOURLY, DAILY
138
- # format: "textORcsv", # required, accepts textORcsv
139
- # compression: "ZIP", # required, accepts ZIP, GZIP
141
+ # format: "textORcsv", # required, accepts textORcsv, Parquet
142
+ # compression: "ZIP", # required, accepts ZIP, GZIP, Parquet
140
143
  # additional_schema_elements: ["RESOURCES"], # required, accepts RESOURCES
141
144
  # s3_bucket: "S3Bucket", # required
142
145
  # s3_prefix: "S3Prefix", # required
143
- # s3_region: "us-east-1", # required, accepts us-east-1, us-west-1, us-west-2, eu-central-1, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1
144
- # additional_artifacts: ["REDSHIFT"], # accepts REDSHIFT, QUICKSIGHT
146
+ # s3_region: "us-east-1", # required, accepts us-east-1, us-west-1, us-west-2, eu-central-1, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, eu-north-1, ap-northeast-3
147
+ # additional_artifacts: ["REDSHIFT"], # accepts REDSHIFT, QUICKSIGHT, ATHENA
148
+ # refresh_closed_reports: false,
149
+ # report_versioning: "CREATE_NEW_REPORT", # accepts CREATE_NEW_REPORT, OVERWRITE_REPORT
145
150
  # }
146
151
  #
147
152
  # @!attribute [rw] report_name
148
- # Preferred name for a report, it has to be unique. Must starts with a
149
- # number/letter, case sensitive. Limited to 256 characters.
153
+ # The name of the report that you want to create. The name must be
154
+ # unique, is case sensitive, and can't include spaces.
150
155
  # @return [String]
151
156
  #
152
157
  # @!attribute [rw] time_unit
153
- # The frequency on which report data are measured and displayed.
158
+ # The length of time covered by the report.
154
159
  # @return [String]
155
160
  #
156
161
  # @!attribute [rw] format
157
- # Preferred format for report.
162
+ # The format that AWS saves the report in.
158
163
  # @return [String]
159
164
  #
160
165
  # @!attribute [rw] compression
161
- # Preferred compression format for report.
166
+ # The compression format that AWS uses for the report.
162
167
  # @return [String]
163
168
  #
164
169
  # @!attribute [rw] additional_schema_elements
165
- # A list of schema elements.
170
+ # A list of strings that indicate additional content that Amazon Web
171
+ # Services includes in the report, such as individual resource IDs.
166
172
  # @return [Array<String>]
167
173
  #
168
174
  # @!attribute [rw] s3_bucket
169
- # Name of customer S3 bucket.
175
+ # The S3 bucket where AWS delivers the report.
170
176
  # @return [String]
171
177
  #
172
178
  # @!attribute [rw] s3_prefix
173
- # Preferred report path prefix. Limited to 256 characters.
179
+ # The prefix that AWS adds to the report name when AWS delivers the
180
+ # report. Your prefix can't include spaces.
174
181
  # @return [String]
175
182
  #
176
183
  # @!attribute [rw] s3_region
177
- # Region of customer S3 bucket.
184
+ # The region of the S3 bucket that AWS delivers the report into.
178
185
  # @return [String]
179
186
  #
180
187
  # @!attribute [rw] additional_artifacts
181
- # A list of additional artifacts.
188
+ # A list of manifests that you want Amazon Web Services to create for
189
+ # this report.
182
190
  # @return [Array<String>]
183
191
  #
192
+ # @!attribute [rw] refresh_closed_reports
193
+ # Whether you want Amazon Web Services to update your reports after
194
+ # they have been finalized if Amazon Web Services detects charges
195
+ # related to previous months. These charges can include refunds,
196
+ # credits, or support fees.
197
+ # @return [Boolean]
198
+ #
199
+ # @!attribute [rw] report_versioning
200
+ # Whether you want Amazon Web Services to overwrite the previous
201
+ # version of each report or to deliver the report in addition to the
202
+ # previous versions.
203
+ # @return [String]
204
+ #
184
205
  # @see http://docs.aws.amazon.com/goto/WebAPI/cur-2017-01-06/ReportDefinition AWS API Documentation
185
206
  #
186
207
  class ReportDefinition < Struct.new(
@@ -192,7 +213,9 @@ module Aws::CostandUsageReportService
192
213
  :s3_bucket,
193
214
  :s3_prefix,
194
215
  :s3_region,
195
- :additional_artifacts)
216
+ :additional_artifacts,
217
+ :refresh_closed_reports,
218
+ :report_versioning)
196
219
  include Aws::Structure
197
220
  end
198
221
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-costandusagereportservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-20 00:00:00.000000000 Z
11
+ date: 2019-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core