aws-sdk-quicksight 1.162.0 → 1.163.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +1233 -57
- data/lib/aws-sdk-quicksight/client_api.rb +383 -14
- data/lib/aws-sdk-quicksight/errors.rb +21 -0
- data/lib/aws-sdk-quicksight/types.rb +1358 -58
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +911 -5
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +341 -1
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -75925,6 +75925,7 @@ module Aws
|
|
|
75925
75925
|
input_columns: Array[
|
|
75926
75926
|
{
|
|
75927
75927
|
name: ::String,
|
|
75928
|
+
id: ::String?,
|
|
75928
75929
|
type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON"),
|
|
75929
75930
|
sub_type: ("FLOAT" | "FIXED")?
|
|
75930
75931
|
},
|
|
@@ -75937,6 +75938,7 @@ module Aws
|
|
|
75937
75938
|
columns: Array[
|
|
75938
75939
|
{
|
|
75939
75940
|
name: ::String,
|
|
75941
|
+
id: ::String?,
|
|
75940
75942
|
type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON"),
|
|
75941
75943
|
sub_type: ("FLOAT" | "FIXED")?
|
|
75942
75944
|
},
|
|
@@ -75949,11 +75951,30 @@ module Aws
|
|
|
75949
75951
|
start_from_row: ::Integer?,
|
|
75950
75952
|
contains_header: bool?,
|
|
75951
75953
|
text_qualifier: ("DOUBLE_QUOTE" | "SINGLE_QUOTE")?,
|
|
75952
|
-
delimiter: ::String
|
|
75954
|
+
delimiter: ::String?,
|
|
75955
|
+
custom_cell_address_range: ::String?
|
|
75953
75956
|
}?,
|
|
75954
75957
|
input_columns: Array[
|
|
75955
75958
|
{
|
|
75956
75959
|
name: ::String,
|
|
75960
|
+
id: ::String?,
|
|
75961
|
+
type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON"),
|
|
75962
|
+
sub_type: ("FLOAT" | "FIXED")?
|
|
75963
|
+
},
|
|
75964
|
+
]
|
|
75965
|
+
}?,
|
|
75966
|
+
saa_s_table: {
|
|
75967
|
+
data_source_arn: ::String,
|
|
75968
|
+
table_path: Array[
|
|
75969
|
+
{
|
|
75970
|
+
name: ::String?,
|
|
75971
|
+
id: ::String?
|
|
75972
|
+
},
|
|
75973
|
+
],
|
|
75974
|
+
input_columns: Array[
|
|
75975
|
+
{
|
|
75976
|
+
name: ::String,
|
|
75977
|
+
id: ::String?,
|
|
75957
75978
|
type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON"),
|
|
75958
75979
|
sub_type: ("FLOAT" | "FIXED")?
|
|
75959
75980
|
},
|
|
@@ -75965,12 +75986,85 @@ module Aws
|
|
|
75965
75986
|
data_transforms: Array[
|
|
75966
75987
|
{
|
|
75967
75988
|
project_operation: {
|
|
75989
|
+
alias: ::String?,
|
|
75990
|
+
source: {
|
|
75991
|
+
transform_operation_id: ::String,
|
|
75992
|
+
column_id_mappings: Array[
|
|
75993
|
+
{
|
|
75994
|
+
source_column_id: ::String,
|
|
75995
|
+
target_column_id: ::String
|
|
75996
|
+
},
|
|
75997
|
+
]?
|
|
75998
|
+
}?,
|
|
75968
75999
|
projected_columns: Array[::String]
|
|
75969
76000
|
}?,
|
|
75970
76001
|
filter_operation: {
|
|
75971
|
-
condition_expression: ::String
|
|
76002
|
+
condition_expression: ::String?,
|
|
76003
|
+
string_filter_condition: {
|
|
76004
|
+
column_name: ::String?,
|
|
76005
|
+
comparison_filter_condition: {
|
|
76006
|
+
operator: ("EQUALS" | "DOES_NOT_EQUAL" | "CONTAINS" | "DOES_NOT_CONTAIN" | "STARTS_WITH" | "ENDS_WITH"),
|
|
76007
|
+
value: {
|
|
76008
|
+
static_value: ::String?
|
|
76009
|
+
}?
|
|
76010
|
+
}?,
|
|
76011
|
+
list_filter_condition: {
|
|
76012
|
+
operator: ("INCLUDE" | "EXCLUDE"),
|
|
76013
|
+
values: {
|
|
76014
|
+
static_values: Array[::String]?
|
|
76015
|
+
}?
|
|
76016
|
+
}?
|
|
76017
|
+
}?,
|
|
76018
|
+
numeric_filter_condition: {
|
|
76019
|
+
column_name: ::String?,
|
|
76020
|
+
comparison_filter_condition: {
|
|
76021
|
+
operator: ("EQUALS" | "DOES_NOT_EQUAL" | "GREATER_THAN" | "GREATER_THAN_OR_EQUALS_TO" | "LESS_THAN" | "LESS_THAN_OR_EQUALS_TO"),
|
|
76022
|
+
value: {
|
|
76023
|
+
static_value: ::Float?
|
|
76024
|
+
}?
|
|
76025
|
+
}?,
|
|
76026
|
+
range_filter_condition: {
|
|
76027
|
+
range_minimum: {
|
|
76028
|
+
static_value: ::Float?
|
|
76029
|
+
}?,
|
|
76030
|
+
range_maximum: {
|
|
76031
|
+
static_value: ::Float?
|
|
76032
|
+
}?,
|
|
76033
|
+
include_minimum: bool?,
|
|
76034
|
+
include_maximum: bool?
|
|
76035
|
+
}?
|
|
76036
|
+
}?,
|
|
76037
|
+
date_filter_condition: {
|
|
76038
|
+
column_name: ::String?,
|
|
76039
|
+
comparison_filter_condition: {
|
|
76040
|
+
operator: ("BEFORE" | "BEFORE_OR_EQUALS_TO" | "AFTER" | "AFTER_OR_EQUALS_TO"),
|
|
76041
|
+
value: {
|
|
76042
|
+
static_value: ::Time?
|
|
76043
|
+
}?
|
|
76044
|
+
}?,
|
|
76045
|
+
range_filter_condition: {
|
|
76046
|
+
range_minimum: {
|
|
76047
|
+
static_value: ::Time?
|
|
76048
|
+
}?,
|
|
76049
|
+
range_maximum: {
|
|
76050
|
+
static_value: ::Time?
|
|
76051
|
+
}?,
|
|
76052
|
+
include_minimum: bool?,
|
|
76053
|
+
include_maximum: bool?
|
|
76054
|
+
}?
|
|
76055
|
+
}?
|
|
75972
76056
|
}?,
|
|
75973
76057
|
create_columns_operation: {
|
|
76058
|
+
alias: ::String?,
|
|
76059
|
+
source: {
|
|
76060
|
+
transform_operation_id: ::String,
|
|
76061
|
+
column_id_mappings: Array[
|
|
76062
|
+
{
|
|
76063
|
+
source_column_id: ::String,
|
|
76064
|
+
target_column_id: ::String
|
|
76065
|
+
},
|
|
76066
|
+
]?
|
|
76067
|
+
}?,
|
|
75974
76068
|
columns: Array[
|
|
75975
76069
|
{
|
|
75976
76070
|
column_name: ::String,
|
|
@@ -76135,7 +76229,366 @@ module Aws
|
|
|
76135
76229
|
},
|
|
76136
76230
|
]?
|
|
76137
76231
|
},
|
|
76138
|
-
?use_as: ("RLS_RULES")
|
|
76232
|
+
?use_as: ("RLS_RULES"),
|
|
76233
|
+
?data_prep_configuration: {
|
|
76234
|
+
source_table_map: Hash[::String, {
|
|
76235
|
+
physical_table_id: ::String?,
|
|
76236
|
+
data_set: {
|
|
76237
|
+
data_set_arn: ::String,
|
|
76238
|
+
input_columns: Array[
|
|
76239
|
+
{
|
|
76240
|
+
name: ::String,
|
|
76241
|
+
id: ::String?,
|
|
76242
|
+
type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON"),
|
|
76243
|
+
sub_type: ("FLOAT" | "FIXED")?
|
|
76244
|
+
},
|
|
76245
|
+
]
|
|
76246
|
+
}?
|
|
76247
|
+
}],
|
|
76248
|
+
transform_step_map: Hash[::String, {
|
|
76249
|
+
import_table_step: {
|
|
76250
|
+
alias: ::String,
|
|
76251
|
+
source: {
|
|
76252
|
+
source_table_id: ::String,
|
|
76253
|
+
column_id_mappings: Array[
|
|
76254
|
+
{
|
|
76255
|
+
source_column_id: ::String,
|
|
76256
|
+
target_column_id: ::String
|
|
76257
|
+
},
|
|
76258
|
+
]?
|
|
76259
|
+
}
|
|
76260
|
+
}?,
|
|
76261
|
+
project_step: {
|
|
76262
|
+
alias: ::String?,
|
|
76263
|
+
source: {
|
|
76264
|
+
transform_operation_id: ::String,
|
|
76265
|
+
column_id_mappings: Array[
|
|
76266
|
+
{
|
|
76267
|
+
source_column_id: ::String,
|
|
76268
|
+
target_column_id: ::String
|
|
76269
|
+
},
|
|
76270
|
+
]?
|
|
76271
|
+
}?,
|
|
76272
|
+
projected_columns: Array[::String]
|
|
76273
|
+
}?,
|
|
76274
|
+
filters_step: {
|
|
76275
|
+
alias: ::String,
|
|
76276
|
+
source: {
|
|
76277
|
+
transform_operation_id: ::String,
|
|
76278
|
+
column_id_mappings: Array[
|
|
76279
|
+
{
|
|
76280
|
+
source_column_id: ::String,
|
|
76281
|
+
target_column_id: ::String
|
|
76282
|
+
},
|
|
76283
|
+
]?
|
|
76284
|
+
},
|
|
76285
|
+
filter_operations: Array[
|
|
76286
|
+
{
|
|
76287
|
+
condition_expression: ::String?,
|
|
76288
|
+
string_filter_condition: {
|
|
76289
|
+
column_name: ::String?,
|
|
76290
|
+
comparison_filter_condition: {
|
|
76291
|
+
operator: ("EQUALS" | "DOES_NOT_EQUAL" | "CONTAINS" | "DOES_NOT_CONTAIN" | "STARTS_WITH" | "ENDS_WITH"),
|
|
76292
|
+
value: {
|
|
76293
|
+
static_value: ::String?
|
|
76294
|
+
}?
|
|
76295
|
+
}?,
|
|
76296
|
+
list_filter_condition: {
|
|
76297
|
+
operator: ("INCLUDE" | "EXCLUDE"),
|
|
76298
|
+
values: {
|
|
76299
|
+
static_values: Array[::String]?
|
|
76300
|
+
}?
|
|
76301
|
+
}?
|
|
76302
|
+
}?,
|
|
76303
|
+
numeric_filter_condition: {
|
|
76304
|
+
column_name: ::String?,
|
|
76305
|
+
comparison_filter_condition: {
|
|
76306
|
+
operator: ("EQUALS" | "DOES_NOT_EQUAL" | "GREATER_THAN" | "GREATER_THAN_OR_EQUALS_TO" | "LESS_THAN" | "LESS_THAN_OR_EQUALS_TO"),
|
|
76307
|
+
value: {
|
|
76308
|
+
static_value: ::Float?
|
|
76309
|
+
}?
|
|
76310
|
+
}?,
|
|
76311
|
+
range_filter_condition: {
|
|
76312
|
+
range_minimum: {
|
|
76313
|
+
static_value: ::Float?
|
|
76314
|
+
}?,
|
|
76315
|
+
range_maximum: {
|
|
76316
|
+
static_value: ::Float?
|
|
76317
|
+
}?,
|
|
76318
|
+
include_minimum: bool?,
|
|
76319
|
+
include_maximum: bool?
|
|
76320
|
+
}?
|
|
76321
|
+
}?,
|
|
76322
|
+
date_filter_condition: {
|
|
76323
|
+
column_name: ::String?,
|
|
76324
|
+
comparison_filter_condition: {
|
|
76325
|
+
operator: ("BEFORE" | "BEFORE_OR_EQUALS_TO" | "AFTER" | "AFTER_OR_EQUALS_TO"),
|
|
76326
|
+
value: {
|
|
76327
|
+
static_value: ::Time?
|
|
76328
|
+
}?
|
|
76329
|
+
}?,
|
|
76330
|
+
range_filter_condition: {
|
|
76331
|
+
range_minimum: {
|
|
76332
|
+
static_value: ::Time?
|
|
76333
|
+
}?,
|
|
76334
|
+
range_maximum: {
|
|
76335
|
+
static_value: ::Time?
|
|
76336
|
+
}?,
|
|
76337
|
+
include_minimum: bool?,
|
|
76338
|
+
include_maximum: bool?
|
|
76339
|
+
}?
|
|
76340
|
+
}?
|
|
76341
|
+
},
|
|
76342
|
+
]
|
|
76343
|
+
}?,
|
|
76344
|
+
create_columns_step: {
|
|
76345
|
+
alias: ::String?,
|
|
76346
|
+
source: {
|
|
76347
|
+
transform_operation_id: ::String,
|
|
76348
|
+
column_id_mappings: Array[
|
|
76349
|
+
{
|
|
76350
|
+
source_column_id: ::String,
|
|
76351
|
+
target_column_id: ::String
|
|
76352
|
+
},
|
|
76353
|
+
]?
|
|
76354
|
+
}?,
|
|
76355
|
+
columns: Array[
|
|
76356
|
+
{
|
|
76357
|
+
column_name: ::String,
|
|
76358
|
+
column_id: ::String,
|
|
76359
|
+
expression: ::String
|
|
76360
|
+
},
|
|
76361
|
+
]
|
|
76362
|
+
}?,
|
|
76363
|
+
rename_columns_step: {
|
|
76364
|
+
alias: ::String,
|
|
76365
|
+
source: {
|
|
76366
|
+
transform_operation_id: ::String,
|
|
76367
|
+
column_id_mappings: Array[
|
|
76368
|
+
{
|
|
76369
|
+
source_column_id: ::String,
|
|
76370
|
+
target_column_id: ::String
|
|
76371
|
+
},
|
|
76372
|
+
]?
|
|
76373
|
+
},
|
|
76374
|
+
rename_column_operations: Array[
|
|
76375
|
+
{
|
|
76376
|
+
column_name: ::String,
|
|
76377
|
+
new_column_name: ::String
|
|
76378
|
+
},
|
|
76379
|
+
]
|
|
76380
|
+
}?,
|
|
76381
|
+
cast_column_types_step: {
|
|
76382
|
+
alias: ::String,
|
|
76383
|
+
source: {
|
|
76384
|
+
transform_operation_id: ::String,
|
|
76385
|
+
column_id_mappings: Array[
|
|
76386
|
+
{
|
|
76387
|
+
source_column_id: ::String,
|
|
76388
|
+
target_column_id: ::String
|
|
76389
|
+
},
|
|
76390
|
+
]?
|
|
76391
|
+
},
|
|
76392
|
+
cast_column_type_operations: Array[
|
|
76393
|
+
{
|
|
76394
|
+
column_name: ::String,
|
|
76395
|
+
new_column_type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME"),
|
|
76396
|
+
sub_type: ("FLOAT" | "FIXED")?,
|
|
76397
|
+
format: ::String?
|
|
76398
|
+
},
|
|
76399
|
+
]
|
|
76400
|
+
}?,
|
|
76401
|
+
join_step: {
|
|
76402
|
+
alias: ::String,
|
|
76403
|
+
left_operand: {
|
|
76404
|
+
transform_operation_id: ::String,
|
|
76405
|
+
column_id_mappings: Array[
|
|
76406
|
+
{
|
|
76407
|
+
source_column_id: ::String,
|
|
76408
|
+
target_column_id: ::String
|
|
76409
|
+
},
|
|
76410
|
+
]?
|
|
76411
|
+
},
|
|
76412
|
+
right_operand: {
|
|
76413
|
+
transform_operation_id: ::String,
|
|
76414
|
+
column_id_mappings: Array[
|
|
76415
|
+
{
|
|
76416
|
+
source_column_id: ::String,
|
|
76417
|
+
target_column_id: ::String
|
|
76418
|
+
},
|
|
76419
|
+
]?
|
|
76420
|
+
},
|
|
76421
|
+
type: ("INNER" | "OUTER" | "LEFT" | "RIGHT"),
|
|
76422
|
+
on_clause: ::String,
|
|
76423
|
+
left_operand_properties: {
|
|
76424
|
+
output_column_name_overrides: Array[
|
|
76425
|
+
{
|
|
76426
|
+
source_column_name: ::String?,
|
|
76427
|
+
output_column_name: ::String
|
|
76428
|
+
},
|
|
76429
|
+
]
|
|
76430
|
+
}?,
|
|
76431
|
+
right_operand_properties: {
|
|
76432
|
+
output_column_name_overrides: Array[
|
|
76433
|
+
{
|
|
76434
|
+
source_column_name: ::String?,
|
|
76435
|
+
output_column_name: ::String
|
|
76436
|
+
},
|
|
76437
|
+
]
|
|
76438
|
+
}?
|
|
76439
|
+
}?,
|
|
76440
|
+
aggregate_step: {
|
|
76441
|
+
alias: ::String,
|
|
76442
|
+
source: {
|
|
76443
|
+
transform_operation_id: ::String,
|
|
76444
|
+
column_id_mappings: Array[
|
|
76445
|
+
{
|
|
76446
|
+
source_column_id: ::String,
|
|
76447
|
+
target_column_id: ::String
|
|
76448
|
+
},
|
|
76449
|
+
]?
|
|
76450
|
+
},
|
|
76451
|
+
group_by_column_names: Array[::String]?,
|
|
76452
|
+
aggregations: Array[
|
|
76453
|
+
{
|
|
76454
|
+
aggregation_function: {
|
|
76455
|
+
simple_aggregation: {
|
|
76456
|
+
input_column_name: ::String?,
|
|
76457
|
+
function_type: ("COUNT" | "DISTINCT_COUNT" | "SUM" | "AVERAGE" | "MAX" | "MIN")
|
|
76458
|
+
}?,
|
|
76459
|
+
list_aggregation: {
|
|
76460
|
+
input_column_name: ::String?,
|
|
76461
|
+
separator: ::String,
|
|
76462
|
+
distinct: bool
|
|
76463
|
+
}?
|
|
76464
|
+
},
|
|
76465
|
+
new_column_name: ::String,
|
|
76466
|
+
new_column_id: ::String
|
|
76467
|
+
},
|
|
76468
|
+
]
|
|
76469
|
+
}?,
|
|
76470
|
+
pivot_step: {
|
|
76471
|
+
alias: ::String,
|
|
76472
|
+
source: {
|
|
76473
|
+
transform_operation_id: ::String,
|
|
76474
|
+
column_id_mappings: Array[
|
|
76475
|
+
{
|
|
76476
|
+
source_column_id: ::String,
|
|
76477
|
+
target_column_id: ::String
|
|
76478
|
+
},
|
|
76479
|
+
]?
|
|
76480
|
+
},
|
|
76481
|
+
group_by_column_names: Array[::String]?,
|
|
76482
|
+
value_column_configuration: {
|
|
76483
|
+
aggregation_function: {
|
|
76484
|
+
simple_aggregation: {
|
|
76485
|
+
input_column_name: ::String?,
|
|
76486
|
+
function_type: ("COUNT" | "DISTINCT_COUNT" | "SUM" | "AVERAGE" | "MAX" | "MIN")
|
|
76487
|
+
}?,
|
|
76488
|
+
list_aggregation: {
|
|
76489
|
+
input_column_name: ::String?,
|
|
76490
|
+
separator: ::String,
|
|
76491
|
+
distinct: bool
|
|
76492
|
+
}?
|
|
76493
|
+
}?
|
|
76494
|
+
},
|
|
76495
|
+
pivot_configuration: {
|
|
76496
|
+
label_column_name: ::String?,
|
|
76497
|
+
pivoted_labels: Array[
|
|
76498
|
+
{
|
|
76499
|
+
label_name: ::String,
|
|
76500
|
+
new_column_name: ::String,
|
|
76501
|
+
new_column_id: ::String
|
|
76502
|
+
},
|
|
76503
|
+
]
|
|
76504
|
+
}
|
|
76505
|
+
}?,
|
|
76506
|
+
unpivot_step: {
|
|
76507
|
+
alias: ::String,
|
|
76508
|
+
source: {
|
|
76509
|
+
transform_operation_id: ::String,
|
|
76510
|
+
column_id_mappings: Array[
|
|
76511
|
+
{
|
|
76512
|
+
source_column_id: ::String,
|
|
76513
|
+
target_column_id: ::String
|
|
76514
|
+
},
|
|
76515
|
+
]?
|
|
76516
|
+
},
|
|
76517
|
+
columns_to_unpivot: Array[
|
|
76518
|
+
{
|
|
76519
|
+
column_name: ::String?,
|
|
76520
|
+
new_value: ::String?
|
|
76521
|
+
},
|
|
76522
|
+
],
|
|
76523
|
+
unpivoted_label_column_name: ::String,
|
|
76524
|
+
unpivoted_label_column_id: ::String,
|
|
76525
|
+
unpivoted_value_column_name: ::String,
|
|
76526
|
+
unpivoted_value_column_id: ::String
|
|
76527
|
+
}?,
|
|
76528
|
+
append_step: {
|
|
76529
|
+
alias: ::String,
|
|
76530
|
+
first_source: {
|
|
76531
|
+
transform_operation_id: ::String,
|
|
76532
|
+
column_id_mappings: Array[
|
|
76533
|
+
{
|
|
76534
|
+
source_column_id: ::String,
|
|
76535
|
+
target_column_id: ::String
|
|
76536
|
+
},
|
|
76537
|
+
]?
|
|
76538
|
+
}?,
|
|
76539
|
+
second_source: {
|
|
76540
|
+
transform_operation_id: ::String,
|
|
76541
|
+
column_id_mappings: Array[
|
|
76542
|
+
{
|
|
76543
|
+
source_column_id: ::String,
|
|
76544
|
+
target_column_id: ::String
|
|
76545
|
+
},
|
|
76546
|
+
]?
|
|
76547
|
+
}?,
|
|
76548
|
+
appended_columns: Array[
|
|
76549
|
+
{
|
|
76550
|
+
column_name: ::String,
|
|
76551
|
+
new_column_id: ::String
|
|
76552
|
+
},
|
|
76553
|
+
]
|
|
76554
|
+
}?
|
|
76555
|
+
}],
|
|
76556
|
+
destination_table_map: Hash[::String, {
|
|
76557
|
+
alias: ::String,
|
|
76558
|
+
source: {
|
|
76559
|
+
transform_operation_id: ::String
|
|
76560
|
+
}
|
|
76561
|
+
}]
|
|
76562
|
+
},
|
|
76563
|
+
?semantic_model_configuration: {
|
|
76564
|
+
table_map: Hash[::String, {
|
|
76565
|
+
alias: ::String,
|
|
76566
|
+
destination_table_id: ::String,
|
|
76567
|
+
row_level_permission_configuration: {
|
|
76568
|
+
tag_configuration: {
|
|
76569
|
+
status: ("ENABLED" | "DISABLED")?,
|
|
76570
|
+
tag_rules: Array[
|
|
76571
|
+
{
|
|
76572
|
+
tag_key: ::String,
|
|
76573
|
+
column_name: ::String,
|
|
76574
|
+
tag_multi_value_delimiter: ::String?,
|
|
76575
|
+
match_all_value: ::String?
|
|
76576
|
+
},
|
|
76577
|
+
],
|
|
76578
|
+
tag_rule_configurations: Array[
|
|
76579
|
+
Array[::String],
|
|
76580
|
+
]?
|
|
76581
|
+
}?,
|
|
76582
|
+
row_level_permission_data_set: {
|
|
76583
|
+
namespace: ::String?,
|
|
76584
|
+
arn: ::String,
|
|
76585
|
+
permission_policy: ("GRANT_ACCESS" | "DENY_ACCESS"),
|
|
76586
|
+
format_version: ("VERSION_1" | "VERSION_2")?,
|
|
76587
|
+
status: ("ENABLED" | "DISABLED")?
|
|
76588
|
+
}?
|
|
76589
|
+
}?
|
|
76590
|
+
}]?
|
|
76591
|
+
}
|
|
76139
76592
|
) -> _CreateDataSetResponseSuccess
|
|
76140
76593
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataSetResponseSuccess
|
|
76141
76594
|
|
|
@@ -192686,6 +193139,7 @@ module Aws
|
|
|
192686
193139
|
input_columns: Array[
|
|
192687
193140
|
{
|
|
192688
193141
|
name: ::String,
|
|
193142
|
+
id: ::String?,
|
|
192689
193143
|
type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON"),
|
|
192690
193144
|
sub_type: ("FLOAT" | "FIXED")?
|
|
192691
193145
|
},
|
|
@@ -192698,6 +193152,7 @@ module Aws
|
|
|
192698
193152
|
columns: Array[
|
|
192699
193153
|
{
|
|
192700
193154
|
name: ::String,
|
|
193155
|
+
id: ::String?,
|
|
192701
193156
|
type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON"),
|
|
192702
193157
|
sub_type: ("FLOAT" | "FIXED")?
|
|
192703
193158
|
},
|
|
@@ -192710,11 +193165,30 @@ module Aws
|
|
|
192710
193165
|
start_from_row: ::Integer?,
|
|
192711
193166
|
contains_header: bool?,
|
|
192712
193167
|
text_qualifier: ("DOUBLE_QUOTE" | "SINGLE_QUOTE")?,
|
|
192713
|
-
delimiter: ::String
|
|
193168
|
+
delimiter: ::String?,
|
|
193169
|
+
custom_cell_address_range: ::String?
|
|
192714
193170
|
}?,
|
|
192715
193171
|
input_columns: Array[
|
|
192716
193172
|
{
|
|
192717
193173
|
name: ::String,
|
|
193174
|
+
id: ::String?,
|
|
193175
|
+
type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON"),
|
|
193176
|
+
sub_type: ("FLOAT" | "FIXED")?
|
|
193177
|
+
},
|
|
193178
|
+
]
|
|
193179
|
+
}?,
|
|
193180
|
+
saa_s_table: {
|
|
193181
|
+
data_source_arn: ::String,
|
|
193182
|
+
table_path: Array[
|
|
193183
|
+
{
|
|
193184
|
+
name: ::String?,
|
|
193185
|
+
id: ::String?
|
|
193186
|
+
},
|
|
193187
|
+
],
|
|
193188
|
+
input_columns: Array[
|
|
193189
|
+
{
|
|
193190
|
+
name: ::String,
|
|
193191
|
+
id: ::String?,
|
|
192718
193192
|
type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON"),
|
|
192719
193193
|
sub_type: ("FLOAT" | "FIXED")?
|
|
192720
193194
|
},
|
|
@@ -192726,12 +193200,85 @@ module Aws
|
|
|
192726
193200
|
data_transforms: Array[
|
|
192727
193201
|
{
|
|
192728
193202
|
project_operation: {
|
|
193203
|
+
alias: ::String?,
|
|
193204
|
+
source: {
|
|
193205
|
+
transform_operation_id: ::String,
|
|
193206
|
+
column_id_mappings: Array[
|
|
193207
|
+
{
|
|
193208
|
+
source_column_id: ::String,
|
|
193209
|
+
target_column_id: ::String
|
|
193210
|
+
},
|
|
193211
|
+
]?
|
|
193212
|
+
}?,
|
|
192729
193213
|
projected_columns: Array[::String]
|
|
192730
193214
|
}?,
|
|
192731
193215
|
filter_operation: {
|
|
192732
|
-
condition_expression: ::String
|
|
193216
|
+
condition_expression: ::String?,
|
|
193217
|
+
string_filter_condition: {
|
|
193218
|
+
column_name: ::String?,
|
|
193219
|
+
comparison_filter_condition: {
|
|
193220
|
+
operator: ("EQUALS" | "DOES_NOT_EQUAL" | "CONTAINS" | "DOES_NOT_CONTAIN" | "STARTS_WITH" | "ENDS_WITH"),
|
|
193221
|
+
value: {
|
|
193222
|
+
static_value: ::String?
|
|
193223
|
+
}?
|
|
193224
|
+
}?,
|
|
193225
|
+
list_filter_condition: {
|
|
193226
|
+
operator: ("INCLUDE" | "EXCLUDE"),
|
|
193227
|
+
values: {
|
|
193228
|
+
static_values: Array[::String]?
|
|
193229
|
+
}?
|
|
193230
|
+
}?
|
|
193231
|
+
}?,
|
|
193232
|
+
numeric_filter_condition: {
|
|
193233
|
+
column_name: ::String?,
|
|
193234
|
+
comparison_filter_condition: {
|
|
193235
|
+
operator: ("EQUALS" | "DOES_NOT_EQUAL" | "GREATER_THAN" | "GREATER_THAN_OR_EQUALS_TO" | "LESS_THAN" | "LESS_THAN_OR_EQUALS_TO"),
|
|
193236
|
+
value: {
|
|
193237
|
+
static_value: ::Float?
|
|
193238
|
+
}?
|
|
193239
|
+
}?,
|
|
193240
|
+
range_filter_condition: {
|
|
193241
|
+
range_minimum: {
|
|
193242
|
+
static_value: ::Float?
|
|
193243
|
+
}?,
|
|
193244
|
+
range_maximum: {
|
|
193245
|
+
static_value: ::Float?
|
|
193246
|
+
}?,
|
|
193247
|
+
include_minimum: bool?,
|
|
193248
|
+
include_maximum: bool?
|
|
193249
|
+
}?
|
|
193250
|
+
}?,
|
|
193251
|
+
date_filter_condition: {
|
|
193252
|
+
column_name: ::String?,
|
|
193253
|
+
comparison_filter_condition: {
|
|
193254
|
+
operator: ("BEFORE" | "BEFORE_OR_EQUALS_TO" | "AFTER" | "AFTER_OR_EQUALS_TO"),
|
|
193255
|
+
value: {
|
|
193256
|
+
static_value: ::Time?
|
|
193257
|
+
}?
|
|
193258
|
+
}?,
|
|
193259
|
+
range_filter_condition: {
|
|
193260
|
+
range_minimum: {
|
|
193261
|
+
static_value: ::Time?
|
|
193262
|
+
}?,
|
|
193263
|
+
range_maximum: {
|
|
193264
|
+
static_value: ::Time?
|
|
193265
|
+
}?,
|
|
193266
|
+
include_minimum: bool?,
|
|
193267
|
+
include_maximum: bool?
|
|
193268
|
+
}?
|
|
193269
|
+
}?
|
|
192733
193270
|
}?,
|
|
192734
193271
|
create_columns_operation: {
|
|
193272
|
+
alias: ::String?,
|
|
193273
|
+
source: {
|
|
193274
|
+
transform_operation_id: ::String,
|
|
193275
|
+
column_id_mappings: Array[
|
|
193276
|
+
{
|
|
193277
|
+
source_column_id: ::String,
|
|
193278
|
+
target_column_id: ::String
|
|
193279
|
+
},
|
|
193280
|
+
]?
|
|
193281
|
+
}?,
|
|
192735
193282
|
columns: Array[
|
|
192736
193283
|
{
|
|
192737
193284
|
column_name: ::String,
|
|
@@ -192882,6 +193429,365 @@ module Aws
|
|
|
192882
193429
|
column_names: Array[::String]
|
|
192883
193430
|
},
|
|
192884
193431
|
]?
|
|
193432
|
+
},
|
|
193433
|
+
?data_prep_configuration: {
|
|
193434
|
+
source_table_map: Hash[::String, {
|
|
193435
|
+
physical_table_id: ::String?,
|
|
193436
|
+
data_set: {
|
|
193437
|
+
data_set_arn: ::String,
|
|
193438
|
+
input_columns: Array[
|
|
193439
|
+
{
|
|
193440
|
+
name: ::String,
|
|
193441
|
+
id: ::String?,
|
|
193442
|
+
type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME" | "BIT" | "BOOLEAN" | "JSON"),
|
|
193443
|
+
sub_type: ("FLOAT" | "FIXED")?
|
|
193444
|
+
},
|
|
193445
|
+
]
|
|
193446
|
+
}?
|
|
193447
|
+
}],
|
|
193448
|
+
transform_step_map: Hash[::String, {
|
|
193449
|
+
import_table_step: {
|
|
193450
|
+
alias: ::String,
|
|
193451
|
+
source: {
|
|
193452
|
+
source_table_id: ::String,
|
|
193453
|
+
column_id_mappings: Array[
|
|
193454
|
+
{
|
|
193455
|
+
source_column_id: ::String,
|
|
193456
|
+
target_column_id: ::String
|
|
193457
|
+
},
|
|
193458
|
+
]?
|
|
193459
|
+
}
|
|
193460
|
+
}?,
|
|
193461
|
+
project_step: {
|
|
193462
|
+
alias: ::String?,
|
|
193463
|
+
source: {
|
|
193464
|
+
transform_operation_id: ::String,
|
|
193465
|
+
column_id_mappings: Array[
|
|
193466
|
+
{
|
|
193467
|
+
source_column_id: ::String,
|
|
193468
|
+
target_column_id: ::String
|
|
193469
|
+
},
|
|
193470
|
+
]?
|
|
193471
|
+
}?,
|
|
193472
|
+
projected_columns: Array[::String]
|
|
193473
|
+
}?,
|
|
193474
|
+
filters_step: {
|
|
193475
|
+
alias: ::String,
|
|
193476
|
+
source: {
|
|
193477
|
+
transform_operation_id: ::String,
|
|
193478
|
+
column_id_mappings: Array[
|
|
193479
|
+
{
|
|
193480
|
+
source_column_id: ::String,
|
|
193481
|
+
target_column_id: ::String
|
|
193482
|
+
},
|
|
193483
|
+
]?
|
|
193484
|
+
},
|
|
193485
|
+
filter_operations: Array[
|
|
193486
|
+
{
|
|
193487
|
+
condition_expression: ::String?,
|
|
193488
|
+
string_filter_condition: {
|
|
193489
|
+
column_name: ::String?,
|
|
193490
|
+
comparison_filter_condition: {
|
|
193491
|
+
operator: ("EQUALS" | "DOES_NOT_EQUAL" | "CONTAINS" | "DOES_NOT_CONTAIN" | "STARTS_WITH" | "ENDS_WITH"),
|
|
193492
|
+
value: {
|
|
193493
|
+
static_value: ::String?
|
|
193494
|
+
}?
|
|
193495
|
+
}?,
|
|
193496
|
+
list_filter_condition: {
|
|
193497
|
+
operator: ("INCLUDE" | "EXCLUDE"),
|
|
193498
|
+
values: {
|
|
193499
|
+
static_values: Array[::String]?
|
|
193500
|
+
}?
|
|
193501
|
+
}?
|
|
193502
|
+
}?,
|
|
193503
|
+
numeric_filter_condition: {
|
|
193504
|
+
column_name: ::String?,
|
|
193505
|
+
comparison_filter_condition: {
|
|
193506
|
+
operator: ("EQUALS" | "DOES_NOT_EQUAL" | "GREATER_THAN" | "GREATER_THAN_OR_EQUALS_TO" | "LESS_THAN" | "LESS_THAN_OR_EQUALS_TO"),
|
|
193507
|
+
value: {
|
|
193508
|
+
static_value: ::Float?
|
|
193509
|
+
}?
|
|
193510
|
+
}?,
|
|
193511
|
+
range_filter_condition: {
|
|
193512
|
+
range_minimum: {
|
|
193513
|
+
static_value: ::Float?
|
|
193514
|
+
}?,
|
|
193515
|
+
range_maximum: {
|
|
193516
|
+
static_value: ::Float?
|
|
193517
|
+
}?,
|
|
193518
|
+
include_minimum: bool?,
|
|
193519
|
+
include_maximum: bool?
|
|
193520
|
+
}?
|
|
193521
|
+
}?,
|
|
193522
|
+
date_filter_condition: {
|
|
193523
|
+
column_name: ::String?,
|
|
193524
|
+
comparison_filter_condition: {
|
|
193525
|
+
operator: ("BEFORE" | "BEFORE_OR_EQUALS_TO" | "AFTER" | "AFTER_OR_EQUALS_TO"),
|
|
193526
|
+
value: {
|
|
193527
|
+
static_value: ::Time?
|
|
193528
|
+
}?
|
|
193529
|
+
}?,
|
|
193530
|
+
range_filter_condition: {
|
|
193531
|
+
range_minimum: {
|
|
193532
|
+
static_value: ::Time?
|
|
193533
|
+
}?,
|
|
193534
|
+
range_maximum: {
|
|
193535
|
+
static_value: ::Time?
|
|
193536
|
+
}?,
|
|
193537
|
+
include_minimum: bool?,
|
|
193538
|
+
include_maximum: bool?
|
|
193539
|
+
}?
|
|
193540
|
+
}?
|
|
193541
|
+
},
|
|
193542
|
+
]
|
|
193543
|
+
}?,
|
|
193544
|
+
create_columns_step: {
|
|
193545
|
+
alias: ::String?,
|
|
193546
|
+
source: {
|
|
193547
|
+
transform_operation_id: ::String,
|
|
193548
|
+
column_id_mappings: Array[
|
|
193549
|
+
{
|
|
193550
|
+
source_column_id: ::String,
|
|
193551
|
+
target_column_id: ::String
|
|
193552
|
+
},
|
|
193553
|
+
]?
|
|
193554
|
+
}?,
|
|
193555
|
+
columns: Array[
|
|
193556
|
+
{
|
|
193557
|
+
column_name: ::String,
|
|
193558
|
+
column_id: ::String,
|
|
193559
|
+
expression: ::String
|
|
193560
|
+
},
|
|
193561
|
+
]
|
|
193562
|
+
}?,
|
|
193563
|
+
rename_columns_step: {
|
|
193564
|
+
alias: ::String,
|
|
193565
|
+
source: {
|
|
193566
|
+
transform_operation_id: ::String,
|
|
193567
|
+
column_id_mappings: Array[
|
|
193568
|
+
{
|
|
193569
|
+
source_column_id: ::String,
|
|
193570
|
+
target_column_id: ::String
|
|
193571
|
+
},
|
|
193572
|
+
]?
|
|
193573
|
+
},
|
|
193574
|
+
rename_column_operations: Array[
|
|
193575
|
+
{
|
|
193576
|
+
column_name: ::String,
|
|
193577
|
+
new_column_name: ::String
|
|
193578
|
+
},
|
|
193579
|
+
]
|
|
193580
|
+
}?,
|
|
193581
|
+
cast_column_types_step: {
|
|
193582
|
+
alias: ::String,
|
|
193583
|
+
source: {
|
|
193584
|
+
transform_operation_id: ::String,
|
|
193585
|
+
column_id_mappings: Array[
|
|
193586
|
+
{
|
|
193587
|
+
source_column_id: ::String,
|
|
193588
|
+
target_column_id: ::String
|
|
193589
|
+
},
|
|
193590
|
+
]?
|
|
193591
|
+
},
|
|
193592
|
+
cast_column_type_operations: Array[
|
|
193593
|
+
{
|
|
193594
|
+
column_name: ::String,
|
|
193595
|
+
new_column_type: ("STRING" | "INTEGER" | "DECIMAL" | "DATETIME"),
|
|
193596
|
+
sub_type: ("FLOAT" | "FIXED")?,
|
|
193597
|
+
format: ::String?
|
|
193598
|
+
},
|
|
193599
|
+
]
|
|
193600
|
+
}?,
|
|
193601
|
+
join_step: {
|
|
193602
|
+
alias: ::String,
|
|
193603
|
+
left_operand: {
|
|
193604
|
+
transform_operation_id: ::String,
|
|
193605
|
+
column_id_mappings: Array[
|
|
193606
|
+
{
|
|
193607
|
+
source_column_id: ::String,
|
|
193608
|
+
target_column_id: ::String
|
|
193609
|
+
},
|
|
193610
|
+
]?
|
|
193611
|
+
},
|
|
193612
|
+
right_operand: {
|
|
193613
|
+
transform_operation_id: ::String,
|
|
193614
|
+
column_id_mappings: Array[
|
|
193615
|
+
{
|
|
193616
|
+
source_column_id: ::String,
|
|
193617
|
+
target_column_id: ::String
|
|
193618
|
+
},
|
|
193619
|
+
]?
|
|
193620
|
+
},
|
|
193621
|
+
type: ("INNER" | "OUTER" | "LEFT" | "RIGHT"),
|
|
193622
|
+
on_clause: ::String,
|
|
193623
|
+
left_operand_properties: {
|
|
193624
|
+
output_column_name_overrides: Array[
|
|
193625
|
+
{
|
|
193626
|
+
source_column_name: ::String?,
|
|
193627
|
+
output_column_name: ::String
|
|
193628
|
+
},
|
|
193629
|
+
]
|
|
193630
|
+
}?,
|
|
193631
|
+
right_operand_properties: {
|
|
193632
|
+
output_column_name_overrides: Array[
|
|
193633
|
+
{
|
|
193634
|
+
source_column_name: ::String?,
|
|
193635
|
+
output_column_name: ::String
|
|
193636
|
+
},
|
|
193637
|
+
]
|
|
193638
|
+
}?
|
|
193639
|
+
}?,
|
|
193640
|
+
aggregate_step: {
|
|
193641
|
+
alias: ::String,
|
|
193642
|
+
source: {
|
|
193643
|
+
transform_operation_id: ::String,
|
|
193644
|
+
column_id_mappings: Array[
|
|
193645
|
+
{
|
|
193646
|
+
source_column_id: ::String,
|
|
193647
|
+
target_column_id: ::String
|
|
193648
|
+
},
|
|
193649
|
+
]?
|
|
193650
|
+
},
|
|
193651
|
+
group_by_column_names: Array[::String]?,
|
|
193652
|
+
aggregations: Array[
|
|
193653
|
+
{
|
|
193654
|
+
aggregation_function: {
|
|
193655
|
+
simple_aggregation: {
|
|
193656
|
+
input_column_name: ::String?,
|
|
193657
|
+
function_type: ("COUNT" | "DISTINCT_COUNT" | "SUM" | "AVERAGE" | "MAX" | "MIN")
|
|
193658
|
+
}?,
|
|
193659
|
+
list_aggregation: {
|
|
193660
|
+
input_column_name: ::String?,
|
|
193661
|
+
separator: ::String,
|
|
193662
|
+
distinct: bool
|
|
193663
|
+
}?
|
|
193664
|
+
},
|
|
193665
|
+
new_column_name: ::String,
|
|
193666
|
+
new_column_id: ::String
|
|
193667
|
+
},
|
|
193668
|
+
]
|
|
193669
|
+
}?,
|
|
193670
|
+
pivot_step: {
|
|
193671
|
+
alias: ::String,
|
|
193672
|
+
source: {
|
|
193673
|
+
transform_operation_id: ::String,
|
|
193674
|
+
column_id_mappings: Array[
|
|
193675
|
+
{
|
|
193676
|
+
source_column_id: ::String,
|
|
193677
|
+
target_column_id: ::String
|
|
193678
|
+
},
|
|
193679
|
+
]?
|
|
193680
|
+
},
|
|
193681
|
+
group_by_column_names: Array[::String]?,
|
|
193682
|
+
value_column_configuration: {
|
|
193683
|
+
aggregation_function: {
|
|
193684
|
+
simple_aggregation: {
|
|
193685
|
+
input_column_name: ::String?,
|
|
193686
|
+
function_type: ("COUNT" | "DISTINCT_COUNT" | "SUM" | "AVERAGE" | "MAX" | "MIN")
|
|
193687
|
+
}?,
|
|
193688
|
+
list_aggregation: {
|
|
193689
|
+
input_column_name: ::String?,
|
|
193690
|
+
separator: ::String,
|
|
193691
|
+
distinct: bool
|
|
193692
|
+
}?
|
|
193693
|
+
}?
|
|
193694
|
+
},
|
|
193695
|
+
pivot_configuration: {
|
|
193696
|
+
label_column_name: ::String?,
|
|
193697
|
+
pivoted_labels: Array[
|
|
193698
|
+
{
|
|
193699
|
+
label_name: ::String,
|
|
193700
|
+
new_column_name: ::String,
|
|
193701
|
+
new_column_id: ::String
|
|
193702
|
+
},
|
|
193703
|
+
]
|
|
193704
|
+
}
|
|
193705
|
+
}?,
|
|
193706
|
+
unpivot_step: {
|
|
193707
|
+
alias: ::String,
|
|
193708
|
+
source: {
|
|
193709
|
+
transform_operation_id: ::String,
|
|
193710
|
+
column_id_mappings: Array[
|
|
193711
|
+
{
|
|
193712
|
+
source_column_id: ::String,
|
|
193713
|
+
target_column_id: ::String
|
|
193714
|
+
},
|
|
193715
|
+
]?
|
|
193716
|
+
},
|
|
193717
|
+
columns_to_unpivot: Array[
|
|
193718
|
+
{
|
|
193719
|
+
column_name: ::String?,
|
|
193720
|
+
new_value: ::String?
|
|
193721
|
+
},
|
|
193722
|
+
],
|
|
193723
|
+
unpivoted_label_column_name: ::String,
|
|
193724
|
+
unpivoted_label_column_id: ::String,
|
|
193725
|
+
unpivoted_value_column_name: ::String,
|
|
193726
|
+
unpivoted_value_column_id: ::String
|
|
193727
|
+
}?,
|
|
193728
|
+
append_step: {
|
|
193729
|
+
alias: ::String,
|
|
193730
|
+
first_source: {
|
|
193731
|
+
transform_operation_id: ::String,
|
|
193732
|
+
column_id_mappings: Array[
|
|
193733
|
+
{
|
|
193734
|
+
source_column_id: ::String,
|
|
193735
|
+
target_column_id: ::String
|
|
193736
|
+
},
|
|
193737
|
+
]?
|
|
193738
|
+
}?,
|
|
193739
|
+
second_source: {
|
|
193740
|
+
transform_operation_id: ::String,
|
|
193741
|
+
column_id_mappings: Array[
|
|
193742
|
+
{
|
|
193743
|
+
source_column_id: ::String,
|
|
193744
|
+
target_column_id: ::String
|
|
193745
|
+
},
|
|
193746
|
+
]?
|
|
193747
|
+
}?,
|
|
193748
|
+
appended_columns: Array[
|
|
193749
|
+
{
|
|
193750
|
+
column_name: ::String,
|
|
193751
|
+
new_column_id: ::String
|
|
193752
|
+
},
|
|
193753
|
+
]
|
|
193754
|
+
}?
|
|
193755
|
+
}],
|
|
193756
|
+
destination_table_map: Hash[::String, {
|
|
193757
|
+
alias: ::String,
|
|
193758
|
+
source: {
|
|
193759
|
+
transform_operation_id: ::String
|
|
193760
|
+
}
|
|
193761
|
+
}]
|
|
193762
|
+
},
|
|
193763
|
+
?semantic_model_configuration: {
|
|
193764
|
+
table_map: Hash[::String, {
|
|
193765
|
+
alias: ::String,
|
|
193766
|
+
destination_table_id: ::String,
|
|
193767
|
+
row_level_permission_configuration: {
|
|
193768
|
+
tag_configuration: {
|
|
193769
|
+
status: ("ENABLED" | "DISABLED")?,
|
|
193770
|
+
tag_rules: Array[
|
|
193771
|
+
{
|
|
193772
|
+
tag_key: ::String,
|
|
193773
|
+
column_name: ::String,
|
|
193774
|
+
tag_multi_value_delimiter: ::String?,
|
|
193775
|
+
match_all_value: ::String?
|
|
193776
|
+
},
|
|
193777
|
+
],
|
|
193778
|
+
tag_rule_configurations: Array[
|
|
193779
|
+
Array[::String],
|
|
193780
|
+
]?
|
|
193781
|
+
}?,
|
|
193782
|
+
row_level_permission_data_set: {
|
|
193783
|
+
namespace: ::String?,
|
|
193784
|
+
arn: ::String,
|
|
193785
|
+
permission_policy: ("GRANT_ACCESS" | "DENY_ACCESS"),
|
|
193786
|
+
format_version: ("VERSION_1" | "VERSION_2")?,
|
|
193787
|
+
status: ("ENABLED" | "DISABLED")?
|
|
193788
|
+
}?
|
|
193789
|
+
}?
|
|
193790
|
+
}]?
|
|
192885
193791
|
}
|
|
192886
193792
|
) -> _UpdateDataSetResponseSuccess
|
|
192887
193793
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataSetResponseSuccess
|