aws-sdk-finspacedata 1.6.0 → 1.10.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c36fe01ae39c2a00f50df336b33ea7e4d1f1245d30b4fa6da437c2bfff1f2c3c
4
- data.tar.gz: be7f2e18053b009587a4a6170a0012837c364772ead16c3d8275c263a09b7c43
3
+ metadata.gz: 2a222ee86b8df08fa26e278c984c55290560d159bada6501467944fb93d52dd1
4
+ data.tar.gz: bb1b745091dbec04205f3e06549376d175c0e6c3b6b0b66c0e2f8c174dcf2a8f
5
5
  SHA512:
6
- metadata.gz: 5d7615a4d3ff408fc0b627d8605e4d54a8d9fdf07571bf479ce9dc188762674beaaa7e976a2a70a65a591e7b42a25db395c2c102caf46adf2cdbefaa5bc180da
7
- data.tar.gz: a1909478bb84a95ffea2412b559079c9ff85e76c5316ad439f59fb9e7d83297e6c79bfedf7e1bb2d807deaa5162c2dbb5996cb803144cc68836b56cce3cdeea1
6
+ metadata.gz: 9388c0fdfdd9eaee4b3d5b70379d6f7b058b87f12e42f5bc65ca6675596ccb06c403f4f01d94014380f00cc95cdba2e348438c8468b77bc8eb14f566bf730a64
7
+ data.tar.gz: 0564ff4eb06419d3629332cefa7cbe90aff5782c953fa68a741563c55fac1993fb23b17674b4adf308bca9b38c820685062ccdc6d01d80b392812296718996e0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.9.0 (2021-12-20)
10
+ ------------------
11
+
12
+ * Feature - Make dataset description optional and allow s3 export for dataviews
13
+
14
+ 1.8.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.7.0 (2021-11-23)
20
+ ------------------
21
+
22
+ * Feature - Update documentation for createChangeset API.
23
+
4
24
  1.6.0 (2021-11-22)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.10.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
33
  require 'aws-sdk-finspacedata/plugins/content_type.rb'
@@ -74,6 +75,7 @@ module Aws::FinSpaceData
74
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
76
  add_plugin(Aws::Plugins::TransferEncoding)
76
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
77
79
  add_plugin(Aws::Plugins::SignatureV4)
78
80
  add_plugin(Aws::Plugins::Protocols::RestJson)
79
81
  add_plugin(Aws::FinSpaceData::Plugins::ContentType)
@@ -121,7 +123,9 @@ module Aws::FinSpaceData
121
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
124
  # are very aggressive. Construct and pass an instance of
123
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
125
129
  #
126
130
  # @option options [required, String] :region
127
131
  # The AWS region to connect to. The configured `:region` is
@@ -175,6 +179,10 @@ module Aws::FinSpaceData
175
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
180
  # a clock skew correction and retry requests with skewed client clocks.
177
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
178
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
187
  # Set to true to disable SDK automatically adding host prefix
180
188
  # to default service endpoint when available.
@@ -297,7 +305,7 @@ module Aws::FinSpaceData
297
305
  # seconds to wait when opening a HTTP session before raising a
298
306
  # `Timeout::Error`.
299
307
  #
300
- # @option options [Integer] :http_read_timeout (60) The default
308
+ # @option options [Float] :http_read_timeout (60) The default
301
309
  # number of seconds to wait for response data. This value can
302
310
  # safely be set per-request on the session.
303
311
  #
@@ -313,6 +321,9 @@ module Aws::FinSpaceData
313
321
  # disables this behaviour. This value can safely be set per
314
322
  # request on the session.
315
323
  #
324
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
325
+ # in seconds.
326
+ #
316
327
  # @option options [Boolean] :http_wire_trace (false) When `true`,
317
328
  # HTTP debug output will be sent to the `:logger`.
318
329
  #
@@ -381,7 +392,9 @@ module Aws::FinSpaceData
381
392
  #
382
393
  # * `XML` - XML source file format.
383
394
  #
384
- # For example, you could specify the following for `formatParams`\:
395
+ # For example, you could specify the following for `formatParams`\: `
396
+ # "formatParams": \{ "formatType": "CSV", "withHeader": "true",
397
+ # "separator": ",", "compression":"None" \} `
385
398
  #
386
399
  # @return [Types::CreateChangesetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
387
400
  #
@@ -460,6 +473,10 @@ module Aws::FinSpaceData
460
473
  # as_of_timestamp: 1,
461
474
  # destination_type_params: { # required
462
475
  # destination_type: "DataViewDestinationType", # required
476
+ # s3_destination_export_file_format: "PARQUET", # accepts PARQUET, DELIMITED_TEXT
477
+ # s3_destination_export_file_format_options: {
478
+ # "StringMapKey" => "StringMapValue",
479
+ # },
463
480
  # },
464
481
  # })
465
482
  #
@@ -495,7 +512,7 @@ module Aws::FinSpaceData
495
512
  #
496
513
  # * `NON_TABULAR` - Data is structured in a non-tabular format.
497
514
  #
498
- # @option params [required, String] :dataset_description
515
+ # @option params [String] :dataset_description
499
516
  # Description of a Dataset.
500
517
  #
501
518
  # @option params [Types::DatasetOwnerInfo] :owner_info
@@ -504,7 +521,7 @@ module Aws::FinSpaceData
504
521
  # @option params [required, Types::PermissionGroupParams] :permission_group_params
505
522
  # Permission group parameters for Dataset permissions.
506
523
  #
507
- # @option params [required, String] :alias
524
+ # @option params [String] :alias
508
525
  # The unique resource identifier for a Dataset.
509
526
  #
510
527
  # @option params [Types::SchemaUnion] :schema_definition
@@ -520,7 +537,7 @@ module Aws::FinSpaceData
520
537
  # client_token: "ClientToken",
521
538
  # dataset_title: "DatasetTitle", # required
522
539
  # kind: "TABULAR", # required, accepts TABULAR, NON_TABULAR
523
- # dataset_description: "DatasetDescription", # required
540
+ # dataset_description: "DatasetDescription",
524
541
  # owner_info: {
525
542
  # name: "OwnerName",
526
543
  # phone_number: "PhoneNumber",
@@ -534,7 +551,7 @@ module Aws::FinSpaceData
534
551
  # },
535
552
  # ],
536
553
  # },
537
- # alias: "AliasString", # required
554
+ # alias: "AliasString",
538
555
  # schema_definition: {
539
556
  # tabular_schema_config: {
540
557
  # columns: [
@@ -618,6 +635,7 @@ module Aws::FinSpaceData
618
635
  # * {Types::GetChangesetResponse#status #status} => String
619
636
  # * {Types::GetChangesetResponse#error_info #error_info} => Types::ChangesetErrorInfo
620
637
  # * {Types::GetChangesetResponse#active_until_timestamp #active_until_timestamp} => Integer
638
+ # * {Types::GetChangesetResponse#active_from_timestamp #active_from_timestamp} => Integer
621
639
  # * {Types::GetChangesetResponse#updates_changeset_id #updates_changeset_id} => String
622
640
  # * {Types::GetChangesetResponse#updated_by_changeset_id #updated_by_changeset_id} => String
623
641
  #
@@ -643,6 +661,7 @@ module Aws::FinSpaceData
643
661
  # resp.error_info.error_message #=> String
644
662
  # resp.error_info.error_category #=> String, one of "VALIDATION", "SERVICE_QUOTA_EXCEEDED", "ACCESS_DENIED", "RESOURCE_NOT_FOUND", "THROTTLING", "INTERNAL_SERVICE_EXCEPTION", "CANCELLED", "USER_RECOVERABLE"
645
663
  # resp.active_until_timestamp #=> Integer
664
+ # resp.active_from_timestamp #=> Integer
646
665
  # resp.updates_changeset_id #=> String
647
666
  # resp.updated_by_changeset_id #=> String
648
667
  #
@@ -701,6 +720,9 @@ module Aws::FinSpaceData
701
720
  # resp.data_view_id #=> String
702
721
  # resp.data_view_arn #=> String
703
722
  # resp.destination_type_params.destination_type #=> String
723
+ # resp.destination_type_params.s3_destination_export_file_format #=> String, one of "PARQUET", "DELIMITED_TEXT"
724
+ # resp.destination_type_params.s3_destination_export_file_format_options #=> Hash
725
+ # resp.destination_type_params.s3_destination_export_file_format_options["StringMapKey"] #=> String
704
726
  # resp.status #=> String, one of "RUNNING", "STARTING", "FAILED", "CANCELLED", "TIMEOUT", "SUCCESS", "PENDING", "FAILED_CLEANUP_FAILED"
705
727
  #
706
728
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/GetDataView AWS API Documentation
@@ -884,6 +906,7 @@ module Aws::FinSpaceData
884
906
  # resp.changesets[0].error_info.error_message #=> String
885
907
  # resp.changesets[0].error_info.error_category #=> String, one of "VALIDATION", "SERVICE_QUOTA_EXCEEDED", "ACCESS_DENIED", "RESOURCE_NOT_FOUND", "THROTTLING", "INTERNAL_SERVICE_EXCEPTION", "CANCELLED", "USER_RECOVERABLE"
886
908
  # resp.changesets[0].active_until_timestamp #=> Integer
909
+ # resp.changesets[0].active_from_timestamp #=> Integer
887
910
  # resp.changesets[0].updates_changeset_id #=> String
888
911
  # resp.changesets[0].updated_by_changeset_id #=> String
889
912
  # resp.next_token #=> String
@@ -939,6 +962,9 @@ module Aws::FinSpaceData
939
962
  # resp.data_views[0].error_info.error_message #=> String
940
963
  # resp.data_views[0].error_info.error_category #=> String, one of "VALIDATION", "SERVICE_QUOTA_EXCEEDED", "ACCESS_DENIED", "RESOURCE_NOT_FOUND", "THROTTLING", "INTERNAL_SERVICE_EXCEPTION", "CANCELLED", "USER_RECOVERABLE"
941
964
  # resp.data_views[0].destination_type_properties.destination_type #=> String
965
+ # resp.data_views[0].destination_type_properties.s3_destination_export_file_format #=> String, one of "PARQUET", "DELIMITED_TEXT"
966
+ # resp.data_views[0].destination_type_properties.s3_destination_export_file_format_options #=> Hash
967
+ # resp.data_views[0].destination_type_properties.s3_destination_export_file_format_options["StringMapKey"] #=> String
942
968
  # resp.data_views[0].auto_update #=> Boolean
943
969
  # resp.data_views[0].create_time #=> Integer
944
970
  # resp.data_views[0].last_modified_time #=> Integer
@@ -1083,7 +1109,7 @@ module Aws::FinSpaceData
1083
1109
  # @option params [String] :dataset_description
1084
1110
  # A description for the Dataset.
1085
1111
  #
1086
- # @option params [required, String] :alias
1112
+ # @option params [String] :alias
1087
1113
  # The unique resource identifier for a Dataset.
1088
1114
  #
1089
1115
  # @option params [Types::SchemaUnion] :schema_definition
@@ -1101,7 +1127,7 @@ module Aws::FinSpaceData
1101
1127
  # dataset_title: "DatasetTitle", # required
1102
1128
  # kind: "TABULAR", # required, accepts TABULAR, NON_TABULAR
1103
1129
  # dataset_description: "DatasetDescription",
1104
- # alias: "AliasString", # required
1130
+ # alias: "AliasString",
1105
1131
  # schema_definition: {
1106
1132
  # tabular_schema_config: {
1107
1133
  # columns: [
@@ -1142,7 +1168,7 @@ module Aws::FinSpaceData
1142
1168
  params: params,
1143
1169
  config: config)
1144
1170
  context[:gem_name] = 'aws-sdk-finspacedata'
1145
- context[:gem_version] = '1.6.0'
1171
+ context[:gem_version] = '1.10.0'
1146
1172
  Seahorse::Client::Request.new(handlers, context)
1147
1173
  end
1148
1174
 
@@ -59,6 +59,7 @@ module Aws::FinSpaceData
59
59
  Email = Shapes::StringShape.new(name: 'Email')
60
60
  ErrorCategory = Shapes::StringShape.new(name: 'ErrorCategory')
61
61
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
62
+ ExportFileFormat = Shapes::StringShape.new(name: 'ExportFileFormat')
62
63
  FormatParams = Shapes::MapShape.new(name: 'FormatParams')
63
64
  GetChangesetRequest = Shapes::StructureShape.new(name: 'GetChangesetRequest')
64
65
  GetChangesetResponse = Shapes::StructureShape.new(name: 'GetChangesetResponse')
@@ -90,6 +91,7 @@ module Aws::FinSpaceData
90
91
  ResourcePermission = Shapes::StructureShape.new(name: 'ResourcePermission')
91
92
  ResourcePermissionsList = Shapes::ListShape.new(name: 'ResourcePermissionsList')
92
93
  ResultLimit = Shapes::IntegerShape.new(name: 'ResultLimit')
94
+ S3DestinationFormatOptions = Shapes::MapShape.new(name: 'S3DestinationFormatOptions')
93
95
  SchemaDefinition = Shapes::StructureShape.new(name: 'SchemaDefinition')
94
96
  SchemaUnion = Shapes::StructureShape.new(name: 'SchemaUnion')
95
97
  SessionDuration = Shapes::IntegerShape.new(name: 'SessionDuration')
@@ -132,6 +134,7 @@ module Aws::FinSpaceData
132
134
  ChangesetSummary.add_member(:status, Shapes::ShapeRef.new(shape: IngestionStatus, location_name: "status"))
133
135
  ChangesetSummary.add_member(:error_info, Shapes::ShapeRef.new(shape: ChangesetErrorInfo, location_name: "errorInfo"))
134
136
  ChangesetSummary.add_member(:active_until_timestamp, Shapes::ShapeRef.new(shape: TimestampEpoch, location_name: "activeUntilTimestamp", metadata: {"box"=>true}))
137
+ ChangesetSummary.add_member(:active_from_timestamp, Shapes::ShapeRef.new(shape: TimestampEpoch, location_name: "activeFromTimestamp", metadata: {"box"=>true}))
135
138
  ChangesetSummary.add_member(:updates_changeset_id, Shapes::ShapeRef.new(shape: ChangesetId, location_name: "updatesChangesetId"))
136
139
  ChangesetSummary.add_member(:updated_by_changeset_id, Shapes::ShapeRef.new(shape: ChangesetId, location_name: "updatedByChangesetId"))
137
140
  ChangesetSummary.struct_class = Types::ChangesetSummary
@@ -175,10 +178,10 @@ module Aws::FinSpaceData
175
178
  CreateDatasetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
176
179
  CreateDatasetRequest.add_member(:dataset_title, Shapes::ShapeRef.new(shape: DatasetTitle, required: true, location_name: "datasetTitle"))
177
180
  CreateDatasetRequest.add_member(:kind, Shapes::ShapeRef.new(shape: DatasetKind, required: true, location_name: "kind"))
178
- CreateDatasetRequest.add_member(:dataset_description, Shapes::ShapeRef.new(shape: DatasetDescription, required: true, location_name: "datasetDescription"))
181
+ CreateDatasetRequest.add_member(:dataset_description, Shapes::ShapeRef.new(shape: DatasetDescription, location_name: "datasetDescription"))
179
182
  CreateDatasetRequest.add_member(:owner_info, Shapes::ShapeRef.new(shape: DatasetOwnerInfo, location_name: "ownerInfo"))
180
183
  CreateDatasetRequest.add_member(:permission_group_params, Shapes::ShapeRef.new(shape: PermissionGroupParams, required: true, location_name: "permissionGroupParams"))
181
- CreateDatasetRequest.add_member(:alias, Shapes::ShapeRef.new(shape: AliasString, required: true, location_name: "alias"))
184
+ CreateDatasetRequest.add_member(:alias, Shapes::ShapeRef.new(shape: AliasString, location_name: "alias"))
182
185
  CreateDatasetRequest.add_member(:schema_definition, Shapes::ShapeRef.new(shape: SchemaUnion, location_name: "schemaDefinition"))
183
186
  CreateDatasetRequest.struct_class = Types::CreateDatasetRequest
184
187
 
@@ -191,6 +194,8 @@ module Aws::FinSpaceData
191
194
  Credentials.struct_class = Types::Credentials
192
195
 
193
196
  DataViewDestinationTypeParams.add_member(:destination_type, Shapes::ShapeRef.new(shape: DataViewDestinationType, required: true, location_name: "destinationType"))
197
+ DataViewDestinationTypeParams.add_member(:s3_destination_export_file_format, Shapes::ShapeRef.new(shape: ExportFileFormat, location_name: "s3DestinationExportFileFormat"))
198
+ DataViewDestinationTypeParams.add_member(:s3_destination_export_file_format_options, Shapes::ShapeRef.new(shape: S3DestinationFormatOptions, location_name: "s3DestinationExportFileFormatOptions"))
194
199
  DataViewDestinationTypeParams.struct_class = Types::DataViewDestinationTypeParams
195
200
 
196
201
  DataViewErrorInfo.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "errorMessage"))
@@ -256,6 +261,7 @@ module Aws::FinSpaceData
256
261
  GetChangesetResponse.add_member(:status, Shapes::ShapeRef.new(shape: IngestionStatus, location_name: "status"))
257
262
  GetChangesetResponse.add_member(:error_info, Shapes::ShapeRef.new(shape: ChangesetErrorInfo, location_name: "errorInfo"))
258
263
  GetChangesetResponse.add_member(:active_until_timestamp, Shapes::ShapeRef.new(shape: TimestampEpoch, location_name: "activeUntilTimestamp", metadata: {"box"=>true}))
264
+ GetChangesetResponse.add_member(:active_from_timestamp, Shapes::ShapeRef.new(shape: TimestampEpoch, location_name: "activeFromTimestamp", metadata: {"box"=>true}))
259
265
  GetChangesetResponse.add_member(:updates_changeset_id, Shapes::ShapeRef.new(shape: ChangesetId, location_name: "updatesChangesetId"))
260
266
  GetChangesetResponse.add_member(:updated_by_changeset_id, Shapes::ShapeRef.new(shape: ChangesetId, location_name: "updatedByChangesetId"))
261
267
  GetChangesetResponse.struct_class = Types::GetChangesetResponse
@@ -355,6 +361,9 @@ module Aws::FinSpaceData
355
361
 
356
362
  ResourcePermissionsList.member = Shapes::ShapeRef.new(shape: ResourcePermission)
357
363
 
364
+ S3DestinationFormatOptions.key = Shapes::ShapeRef.new(shape: StringMapKey)
365
+ S3DestinationFormatOptions.value = Shapes::ShapeRef.new(shape: StringMapValue)
366
+
358
367
  SchemaDefinition.add_member(:columns, Shapes::ShapeRef.new(shape: ColumnList, location_name: "columns"))
359
368
  SchemaDefinition.add_member(:primary_key_columns, Shapes::ShapeRef.new(shape: ColumnNameList, location_name: "primaryKeyColumns"))
360
369
  SchemaDefinition.struct_class = Types::SchemaDefinition
@@ -385,7 +394,7 @@ module Aws::FinSpaceData
385
394
  UpdateDatasetRequest.add_member(:dataset_title, Shapes::ShapeRef.new(shape: DatasetTitle, required: true, location_name: "datasetTitle"))
386
395
  UpdateDatasetRequest.add_member(:kind, Shapes::ShapeRef.new(shape: DatasetKind, required: true, location_name: "kind"))
387
396
  UpdateDatasetRequest.add_member(:dataset_description, Shapes::ShapeRef.new(shape: DatasetDescription, location_name: "datasetDescription"))
388
- UpdateDatasetRequest.add_member(:alias, Shapes::ShapeRef.new(shape: AliasString, required: true, location_name: "alias"))
397
+ UpdateDatasetRequest.add_member(:alias, Shapes::ShapeRef.new(shape: AliasString, location_name: "alias"))
389
398
  UpdateDatasetRequest.add_member(:schema_definition, Shapes::ShapeRef.new(shape: SchemaUnion, location_name: "schemaDefinition"))
390
399
  UpdateDatasetRequest.struct_class = Types::UpdateDatasetRequest
391
400
 
@@ -130,6 +130,10 @@ module Aws::FinSpaceData
130
130
  # November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
131
131
  # @return [Integer]
132
132
  #
133
+ # @!attribute [rw] active_from_timestamp
134
+ # Milliseconds since UTC epoch
135
+ # @return [Integer]
136
+ #
133
137
  # @!attribute [rw] updates_changeset_id
134
138
  # The unique identifier of the Changeset that is updated.
135
139
  # @return [String]
@@ -151,6 +155,7 @@ module Aws::FinSpaceData
151
155
  :status,
152
156
  :error_info,
153
157
  :active_until_timestamp,
158
+ :active_from_timestamp,
154
159
  :updates_changeset_id,
155
160
  :updated_by_changeset_id)
156
161
  SENSITIVE = []
@@ -290,7 +295,9 @@ module Aws::FinSpaceData
290
295
  #
291
296
  # * `XML` - XML source file format.
292
297
  #
293
- # For example, you could specify the following for `formatParams`\:
298
+ # For example, you could specify the following for `formatParams`\: `
299
+ # "formatParams": \{ "formatType": "CSV", "withHeader": "true",
300
+ # "separator": ",", "compression":"None" \} `
294
301
  # @return [Hash<String,String>]
295
302
  #
296
303
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/CreateChangesetRequest AWS API Documentation
@@ -339,6 +346,10 @@ module Aws::FinSpaceData
339
346
  # as_of_timestamp: 1,
340
347
  # destination_type_params: { # required
341
348
  # destination_type: "DataViewDestinationType", # required
349
+ # s3_destination_export_file_format: "PARQUET", # accepts PARQUET, DELIMITED_TEXT
350
+ # s3_destination_export_file_format_options: {
351
+ # "StringMapKey" => "StringMapValue",
352
+ # },
342
353
  # },
343
354
  # }
344
355
  #
@@ -417,7 +428,7 @@ module Aws::FinSpaceData
417
428
  # client_token: "ClientToken",
418
429
  # dataset_title: "DatasetTitle", # required
419
430
  # kind: "TABULAR", # required, accepts TABULAR, NON_TABULAR
420
- # dataset_description: "DatasetDescription", # required
431
+ # dataset_description: "DatasetDescription",
421
432
  # owner_info: {
422
433
  # name: "OwnerName",
423
434
  # phone_number: "PhoneNumber",
@@ -431,7 +442,7 @@ module Aws::FinSpaceData
431
442
  # },
432
443
  # ],
433
444
  # },
434
- # alias: "AliasString", # required
445
+ # alias: "AliasString",
435
446
  # schema_definition: {
436
447
  # tabular_schema_config: {
437
448
  # columns: [
@@ -545,6 +556,10 @@ module Aws::FinSpaceData
545
556
  #
546
557
  # {
547
558
  # destination_type: "DataViewDestinationType", # required
559
+ # s3_destination_export_file_format: "PARQUET", # accepts PARQUET, DELIMITED_TEXT
560
+ # s3_destination_export_file_format_options: {
561
+ # "StringMapKey" => "StringMapValue",
562
+ # },
548
563
  # }
549
564
  #
550
565
  # @!attribute [rw] destination_type
@@ -555,10 +570,19 @@ module Aws::FinSpaceData
555
570
  # ^
556
571
  # @return [String]
557
572
  #
573
+ # @!attribute [rw] s3_destination_export_file_format
574
+ # Data View Export File Format
575
+ # @return [String]
576
+ #
577
+ # @!attribute [rw] s3_destination_export_file_format_options
578
+ # @return [Hash<String,String>]
579
+ #
558
580
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/DataViewDestinationTypeParams AWS API Documentation
559
581
  #
560
582
  class DataViewDestinationTypeParams < Struct.new(
561
- :destination_type)
583
+ :destination_type,
584
+ :s3_destination_export_file_format,
585
+ :s3_destination_export_file_format_options)
562
586
  SENSITIVE = []
563
587
  include Aws::Structure
564
588
  end
@@ -926,6 +950,10 @@ module Aws::FinSpaceData
926
950
  # November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
927
951
  # @return [Integer]
928
952
  #
953
+ # @!attribute [rw] active_from_timestamp
954
+ # Milliseconds since UTC epoch
955
+ # @return [Integer]
956
+ #
929
957
  # @!attribute [rw] updates_changeset_id
930
958
  # The unique identifier of the Changeset that is being updated.
931
959
  # @return [String]
@@ -947,6 +975,7 @@ module Aws::FinSpaceData
947
975
  :status,
948
976
  :error_info,
949
977
  :active_until_timestamp,
978
+ :active_from_timestamp,
950
979
  :updates_changeset_id,
951
980
  :updated_by_changeset_id)
952
981
  SENSITIVE = []
@@ -1663,7 +1692,7 @@ module Aws::FinSpaceData
1663
1692
  # dataset_title: "DatasetTitle", # required
1664
1693
  # kind: "TABULAR", # required, accepts TABULAR, NON_TABULAR
1665
1694
  # dataset_description: "DatasetDescription",
1666
- # alias: "AliasString", # required
1695
+ # alias: "AliasString",
1667
1696
  # schema_definition: {
1668
1697
  # tabular_schema_config: {
1669
1698
  # columns: [
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-finspacedata/customizations'
48
48
  # @!group service
49
49
  module Aws::FinSpaceData
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.10.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-finspacedata
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.10.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: 2021-11-22 00:00:00.000000000 Z
11
+ date: 2021-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.122.0
22
+ version: 3.125.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement