aws-sdk-datazone 1.13.0 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +547 -1
- data/lib/aws-sdk-datazone/client_api.rb +335 -3
- data/lib/aws-sdk-datazone/endpoints.rb +65 -0
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-datazone/types.rb +920 -18
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +231 -0
- data/sig/types.rbs +285 -0
- metadata +2 -2
@@ -260,6 +260,94 @@ module Aws::DataZone
|
|
260
260
|
class Unknown < ActionParameters; end
|
261
261
|
end
|
262
262
|
|
263
|
+
# The configuration details of the asset filter.
|
264
|
+
#
|
265
|
+
# @note AssetFilterConfiguration is a union - when making an API calls you must set exactly one of the members.
|
266
|
+
#
|
267
|
+
# @note AssetFilterConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AssetFilterConfiguration corresponding to the set member.
|
268
|
+
#
|
269
|
+
# @!attribute [rw] column_configuration
|
270
|
+
# The column configuration of the asset filter.
|
271
|
+
# @return [Types::ColumnFilterConfiguration]
|
272
|
+
#
|
273
|
+
# @!attribute [rw] row_configuration
|
274
|
+
# The row configuration of the asset filter.
|
275
|
+
# @return [Types::RowFilterConfiguration]
|
276
|
+
#
|
277
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssetFilterConfiguration AWS API Documentation
|
278
|
+
#
|
279
|
+
class AssetFilterConfiguration < Struct.new(
|
280
|
+
:column_configuration,
|
281
|
+
:row_configuration,
|
282
|
+
:unknown)
|
283
|
+
SENSITIVE = []
|
284
|
+
include Aws::Structure
|
285
|
+
include Aws::Structure::Union
|
286
|
+
|
287
|
+
class ColumnConfiguration < AssetFilterConfiguration; end
|
288
|
+
class RowConfiguration < AssetFilterConfiguration; end
|
289
|
+
class Unknown < AssetFilterConfiguration; end
|
290
|
+
end
|
291
|
+
|
292
|
+
# The summary of the asset filter.
|
293
|
+
#
|
294
|
+
# @!attribute [rw] asset_id
|
295
|
+
# The ID of the data asset.
|
296
|
+
# @return [String]
|
297
|
+
#
|
298
|
+
# @!attribute [rw] created_at
|
299
|
+
# The timestamp at which the asset filter was created.
|
300
|
+
# @return [Time]
|
301
|
+
#
|
302
|
+
# @!attribute [rw] description
|
303
|
+
# The description of the asset filter.
|
304
|
+
# @return [String]
|
305
|
+
#
|
306
|
+
# @!attribute [rw] domain_id
|
307
|
+
# The ID of the domain where the asset filter lives.
|
308
|
+
# @return [String]
|
309
|
+
#
|
310
|
+
# @!attribute [rw] effective_column_names
|
311
|
+
# The effective column names of the asset filter.
|
312
|
+
# @return [Array<String>]
|
313
|
+
#
|
314
|
+
# @!attribute [rw] effective_row_filter
|
315
|
+
# The effective row filter of the asset filter.
|
316
|
+
# @return [String]
|
317
|
+
#
|
318
|
+
# @!attribute [rw] error_message
|
319
|
+
# The error message that is displayed if the action does not succeed.
|
320
|
+
# @return [String]
|
321
|
+
#
|
322
|
+
# @!attribute [rw] id
|
323
|
+
# The ID of the asset filter.
|
324
|
+
# @return [String]
|
325
|
+
#
|
326
|
+
# @!attribute [rw] name
|
327
|
+
# The name of the asset filter.
|
328
|
+
# @return [String]
|
329
|
+
#
|
330
|
+
# @!attribute [rw] status
|
331
|
+
# The status of the asset filter.
|
332
|
+
# @return [String]
|
333
|
+
#
|
334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssetFilterSummary AWS API Documentation
|
335
|
+
#
|
336
|
+
class AssetFilterSummary < Struct.new(
|
337
|
+
:asset_id,
|
338
|
+
:created_at,
|
339
|
+
:description,
|
340
|
+
:domain_id,
|
341
|
+
:effective_column_names,
|
342
|
+
:effective_row_filter,
|
343
|
+
:error_message,
|
344
|
+
:id,
|
345
|
+
:name,
|
346
|
+
:status)
|
347
|
+
SENSITIVE = [:description, :name]
|
348
|
+
include Aws::Structure
|
349
|
+
end
|
350
|
+
|
263
351
|
# A Amazon DataZone inventory asset.
|
264
352
|
#
|
265
353
|
# @!attribute [rw] additional_attributes
|
@@ -850,6 +938,20 @@ module Aws::DataZone
|
|
850
938
|
include Aws::Structure
|
851
939
|
end
|
852
940
|
|
941
|
+
# The column configuration of the asset filter.
|
942
|
+
#
|
943
|
+
# @!attribute [rw] included_column_names
|
944
|
+
# Specifies whether to include column names.
|
945
|
+
# @return [Array<String>]
|
946
|
+
#
|
947
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ColumnFilterConfiguration AWS API Documentation
|
948
|
+
#
|
949
|
+
class ColumnFilterConfiguration < Struct.new(
|
950
|
+
:included_column_names)
|
951
|
+
SENSITIVE = []
|
952
|
+
include Aws::Structure
|
953
|
+
end
|
954
|
+
|
853
955
|
# The details of the parameters for the configurable environment action.
|
854
956
|
#
|
855
957
|
# @!attribute [rw] key
|
@@ -908,6 +1010,110 @@ module Aws::DataZone
|
|
908
1010
|
include Aws::Structure
|
909
1011
|
end
|
910
1012
|
|
1013
|
+
# @!attribute [rw] asset_identifier
|
1014
|
+
# The ID of the data asset.
|
1015
|
+
# @return [String]
|
1016
|
+
#
|
1017
|
+
# @!attribute [rw] client_token
|
1018
|
+
# A unique, case-sensitive identifier that is provided to ensure the
|
1019
|
+
# idempotency of the request.
|
1020
|
+
#
|
1021
|
+
# **A suitable default value is auto-generated.** You should normally
|
1022
|
+
# not need to pass this option.
|
1023
|
+
# @return [String]
|
1024
|
+
#
|
1025
|
+
# @!attribute [rw] configuration
|
1026
|
+
# The configuration of the asset filter.
|
1027
|
+
# @return [Types::AssetFilterConfiguration]
|
1028
|
+
#
|
1029
|
+
# @!attribute [rw] description
|
1030
|
+
# The description of the asset filter.
|
1031
|
+
# @return [String]
|
1032
|
+
#
|
1033
|
+
# @!attribute [rw] domain_identifier
|
1034
|
+
# The ID of the domain in which you want to create an asset filter.
|
1035
|
+
# @return [String]
|
1036
|
+
#
|
1037
|
+
# @!attribute [rw] name
|
1038
|
+
# The name of the asset filter.
|
1039
|
+
# @return [String]
|
1040
|
+
#
|
1041
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateAssetFilterInput AWS API Documentation
|
1042
|
+
#
|
1043
|
+
class CreateAssetFilterInput < Struct.new(
|
1044
|
+
:asset_identifier,
|
1045
|
+
:client_token,
|
1046
|
+
:configuration,
|
1047
|
+
:description,
|
1048
|
+
:domain_identifier,
|
1049
|
+
:name)
|
1050
|
+
SENSITIVE = [:description, :name]
|
1051
|
+
include Aws::Structure
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
# @!attribute [rw] asset_id
|
1055
|
+
# The ID of the asset.
|
1056
|
+
# @return [String]
|
1057
|
+
#
|
1058
|
+
# @!attribute [rw] configuration
|
1059
|
+
# The configuration of the asset filter.
|
1060
|
+
# @return [Types::AssetFilterConfiguration]
|
1061
|
+
#
|
1062
|
+
# @!attribute [rw] created_at
|
1063
|
+
# The timestamp at which the asset filter was created.
|
1064
|
+
# @return [Time]
|
1065
|
+
#
|
1066
|
+
# @!attribute [rw] description
|
1067
|
+
# The description of the asset filter.
|
1068
|
+
# @return [String]
|
1069
|
+
#
|
1070
|
+
# @!attribute [rw] domain_id
|
1071
|
+
# The ID of the domain where the asset filter is created.
|
1072
|
+
# @return [String]
|
1073
|
+
#
|
1074
|
+
# @!attribute [rw] effective_column_names
|
1075
|
+
# The column names in the asset filter.
|
1076
|
+
# @return [Array<String>]
|
1077
|
+
#
|
1078
|
+
# @!attribute [rw] effective_row_filter
|
1079
|
+
# The row filter in the asset filter.
|
1080
|
+
# @return [String]
|
1081
|
+
#
|
1082
|
+
# @!attribute [rw] error_message
|
1083
|
+
# The error message that is displayed if the asset filter is not
|
1084
|
+
# created successfully.
|
1085
|
+
# @return [String]
|
1086
|
+
#
|
1087
|
+
# @!attribute [rw] id
|
1088
|
+
# The ID of the asset filter.
|
1089
|
+
# @return [String]
|
1090
|
+
#
|
1091
|
+
# @!attribute [rw] name
|
1092
|
+
# The name of the asset filter.
|
1093
|
+
# @return [String]
|
1094
|
+
#
|
1095
|
+
# @!attribute [rw] status
|
1096
|
+
# The status of the asset filter.
|
1097
|
+
# @return [String]
|
1098
|
+
#
|
1099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateAssetFilterOutput AWS API Documentation
|
1100
|
+
#
|
1101
|
+
class CreateAssetFilterOutput < Struct.new(
|
1102
|
+
:asset_id,
|
1103
|
+
:configuration,
|
1104
|
+
:created_at,
|
1105
|
+
:description,
|
1106
|
+
:domain_id,
|
1107
|
+
:effective_column_names,
|
1108
|
+
:effective_row_filter,
|
1109
|
+
:error_message,
|
1110
|
+
:id,
|
1111
|
+
:name,
|
1112
|
+
:status)
|
1113
|
+
SENSITIVE = [:description, :name]
|
1114
|
+
include Aws::Structure
|
1115
|
+
end
|
1116
|
+
|
911
1117
|
# @!attribute [rw] client_token
|
912
1118
|
# A unique, case-sensitive identifier that is provided to ensure the
|
913
1119
|
# idempotency of the request.
|
@@ -3358,6 +3564,28 @@ module Aws::DataZone
|
|
3358
3564
|
include Aws::Structure
|
3359
3565
|
end
|
3360
3566
|
|
3567
|
+
# @!attribute [rw] asset_identifier
|
3568
|
+
# The ID of the data asset.
|
3569
|
+
# @return [String]
|
3570
|
+
#
|
3571
|
+
# @!attribute [rw] domain_identifier
|
3572
|
+
# The ID of the domain where you want to delete an asset filter.
|
3573
|
+
# @return [String]
|
3574
|
+
#
|
3575
|
+
# @!attribute [rw] identifier
|
3576
|
+
# The ID of the asset filter that you want to delete.
|
3577
|
+
# @return [String]
|
3578
|
+
#
|
3579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteAssetFilterInput AWS API Documentation
|
3580
|
+
#
|
3581
|
+
class DeleteAssetFilterInput < Struct.new(
|
3582
|
+
:asset_identifier,
|
3583
|
+
:domain_identifier,
|
3584
|
+
:identifier)
|
3585
|
+
SENSITIVE = []
|
3586
|
+
include Aws::Structure
|
3587
|
+
end
|
3588
|
+
|
3361
3589
|
# @!attribute [rw] domain_identifier
|
3362
3590
|
# The ID of the Amazon DataZone domain in which the asset is deleted.
|
3363
3591
|
# @return [String]
|
@@ -4216,6 +4444,10 @@ module Aws::DataZone
|
|
4216
4444
|
# blueprint configuration.
|
4217
4445
|
# @return [String]
|
4218
4446
|
#
|
4447
|
+
# @!attribute [rw] provisioning_configurations
|
4448
|
+
# The provisioning configuration of a blueprint.
|
4449
|
+
# @return [Array<Types::ProvisioningConfiguration>]
|
4450
|
+
#
|
4219
4451
|
# @!attribute [rw] provisioning_role_arn
|
4220
4452
|
# The ARN of the provisioning role specified in the environment
|
4221
4453
|
# blueprint configuration.
|
@@ -4237,6 +4469,7 @@ module Aws::DataZone
|
|
4237
4469
|
:enabled_regions,
|
4238
4470
|
:environment_blueprint_id,
|
4239
4471
|
:manage_access_role_arn,
|
4472
|
+
:provisioning_configurations,
|
4240
4473
|
:provisioning_role_arn,
|
4241
4474
|
:regional_parameters,
|
4242
4475
|
:updated_at)
|
@@ -4473,6 +4706,25 @@ module Aws::DataZone
|
|
4473
4706
|
include Aws::Structure
|
4474
4707
|
end
|
4475
4708
|
|
4709
|
+
# Specifies whether the value is equal to an expression.
|
4710
|
+
#
|
4711
|
+
# @!attribute [rw] column_name
|
4712
|
+
# The name of the column.
|
4713
|
+
# @return [String]
|
4714
|
+
#
|
4715
|
+
# @!attribute [rw] value
|
4716
|
+
# The value that might be equal to an expression.
|
4717
|
+
# @return [String]
|
4718
|
+
#
|
4719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EqualToExpression AWS API Documentation
|
4720
|
+
#
|
4721
|
+
class EqualToExpression < Struct.new(
|
4722
|
+
:column_name,
|
4723
|
+
:value)
|
4724
|
+
SENSITIVE = []
|
4725
|
+
include Aws::Structure
|
4726
|
+
end
|
4727
|
+
|
4476
4728
|
# Specifies the error message that is returned if the operation cannot
|
4477
4729
|
# be successfully completed.
|
4478
4730
|
#
|
@@ -4737,6 +4989,91 @@ module Aws::DataZone
|
|
4737
4989
|
include Aws::Structure
|
4738
4990
|
end
|
4739
4991
|
|
4992
|
+
# @!attribute [rw] asset_identifier
|
4993
|
+
# The ID of the data asset.
|
4994
|
+
# @return [String]
|
4995
|
+
#
|
4996
|
+
# @!attribute [rw] domain_identifier
|
4997
|
+
# The ID of the domain where you want to get an asset filter.
|
4998
|
+
# @return [String]
|
4999
|
+
#
|
5000
|
+
# @!attribute [rw] identifier
|
5001
|
+
# The ID of the asset filter.
|
5002
|
+
# @return [String]
|
5003
|
+
#
|
5004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetAssetFilterInput AWS API Documentation
|
5005
|
+
#
|
5006
|
+
class GetAssetFilterInput < Struct.new(
|
5007
|
+
:asset_identifier,
|
5008
|
+
:domain_identifier,
|
5009
|
+
:identifier)
|
5010
|
+
SENSITIVE = []
|
5011
|
+
include Aws::Structure
|
5012
|
+
end
|
5013
|
+
|
5014
|
+
# @!attribute [rw] asset_id
|
5015
|
+
# The ID of the data asset.
|
5016
|
+
# @return [String]
|
5017
|
+
#
|
5018
|
+
# @!attribute [rw] configuration
|
5019
|
+
# The configuration of the asset filter.
|
5020
|
+
# @return [Types::AssetFilterConfiguration]
|
5021
|
+
#
|
5022
|
+
# @!attribute [rw] created_at
|
5023
|
+
# The timestamp at which the asset filter was created.
|
5024
|
+
# @return [Time]
|
5025
|
+
#
|
5026
|
+
# @!attribute [rw] description
|
5027
|
+
# The description of the asset filter.
|
5028
|
+
# @return [String]
|
5029
|
+
#
|
5030
|
+
# @!attribute [rw] domain_id
|
5031
|
+
# The ID of the domain where you want to get an asset filter.
|
5032
|
+
# @return [String]
|
5033
|
+
#
|
5034
|
+
# @!attribute [rw] effective_column_names
|
5035
|
+
# The column names of the asset filter.
|
5036
|
+
# @return [Array<String>]
|
5037
|
+
#
|
5038
|
+
# @!attribute [rw] effective_row_filter
|
5039
|
+
# The row filter of the asset filter.
|
5040
|
+
# @return [String]
|
5041
|
+
#
|
5042
|
+
# @!attribute [rw] error_message
|
5043
|
+
# The error message that is displayed if the action does not complete
|
5044
|
+
# successfully.
|
5045
|
+
# @return [String]
|
5046
|
+
#
|
5047
|
+
# @!attribute [rw] id
|
5048
|
+
# The ID of the asset filter.
|
5049
|
+
# @return [String]
|
5050
|
+
#
|
5051
|
+
# @!attribute [rw] name
|
5052
|
+
# The name of the asset filter.
|
5053
|
+
# @return [String]
|
5054
|
+
#
|
5055
|
+
# @!attribute [rw] status
|
5056
|
+
# The status of the asset filter.
|
5057
|
+
# @return [String]
|
5058
|
+
#
|
5059
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetAssetFilterOutput AWS API Documentation
|
5060
|
+
#
|
5061
|
+
class GetAssetFilterOutput < Struct.new(
|
5062
|
+
:asset_id,
|
5063
|
+
:configuration,
|
5064
|
+
:created_at,
|
5065
|
+
:description,
|
5066
|
+
:domain_id,
|
5067
|
+
:effective_column_names,
|
5068
|
+
:effective_row_filter,
|
5069
|
+
:error_message,
|
5070
|
+
:id,
|
5071
|
+
:name,
|
5072
|
+
:status)
|
5073
|
+
SENSITIVE = [:description, :name]
|
5074
|
+
include Aws::Structure
|
5075
|
+
end
|
5076
|
+
|
4740
5077
|
# @!attribute [rw] domain_identifier
|
4741
5078
|
# The ID of the Amazon DataZone domain to which the asset belongs.
|
4742
5079
|
# @return [String]
|
@@ -5362,6 +5699,10 @@ module Aws::DataZone
|
|
5362
5699
|
# created.
|
5363
5700
|
# @return [String]
|
5364
5701
|
#
|
5702
|
+
# @!attribute [rw] provisioning_configurations
|
5703
|
+
# The provisioning configuration of a blueprint.
|
5704
|
+
# @return [Array<Types::ProvisioningConfiguration>]
|
5705
|
+
#
|
5365
5706
|
# @!attribute [rw] provisioning_role_arn
|
5366
5707
|
# The ARN of the provisioning role with which this blueprint is
|
5367
5708
|
# created.
|
@@ -5383,6 +5724,7 @@ module Aws::DataZone
|
|
5383
5724
|
:enabled_regions,
|
5384
5725
|
:environment_blueprint_id,
|
5385
5726
|
:manage_access_role_arn,
|
5727
|
+
:provisioning_configurations,
|
5386
5728
|
:provisioning_role_arn,
|
5387
5729
|
:regional_parameters,
|
5388
5730
|
:updated_at)
|
@@ -7090,37 +7432,75 @@ module Aws::DataZone
|
|
7090
7432
|
class Unknown < GrantedEntityInput; end
|
7091
7433
|
end
|
7092
7434
|
|
7093
|
-
#
|
7435
|
+
# Specifies whether the value is greater than an expression.
|
7094
7436
|
#
|
7095
|
-
# @!attribute [rw]
|
7096
|
-
# The
|
7437
|
+
# @!attribute [rw] column_name
|
7438
|
+
# The name of the column.
|
7097
7439
|
# @return [String]
|
7098
7440
|
#
|
7099
|
-
#
|
7441
|
+
# @!attribute [rw] value
|
7442
|
+
# The value that might be greater than an expression.
|
7443
|
+
# @return [String]
|
7100
7444
|
#
|
7101
|
-
|
7102
|
-
|
7445
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GreaterThanExpression AWS API Documentation
|
7446
|
+
#
|
7447
|
+
class GreaterThanExpression < Struct.new(
|
7448
|
+
:column_name,
|
7449
|
+
:value)
|
7103
7450
|
SENSITIVE = []
|
7104
7451
|
include Aws::Structure
|
7105
7452
|
end
|
7106
7453
|
|
7107
|
-
#
|
7108
|
-
#
|
7109
|
-
# @!attribute [rw] domain_id
|
7110
|
-
# The ID of the Amazon DataZone domain of a group profile.
|
7111
|
-
# @return [String]
|
7454
|
+
# Specifies whether the value is greater than or equal to an expression.
|
7112
7455
|
#
|
7113
|
-
# @!attribute [rw]
|
7114
|
-
# The
|
7456
|
+
# @!attribute [rw] column_name
|
7457
|
+
# The name of the column.
|
7115
7458
|
# @return [String]
|
7116
7459
|
#
|
7117
|
-
# @!attribute [rw]
|
7118
|
-
# The
|
7460
|
+
# @!attribute [rw] value
|
7461
|
+
# The value that might be greater than or equal to an expression.
|
7119
7462
|
# @return [String]
|
7120
7463
|
#
|
7121
|
-
#
|
7122
|
-
#
|
7123
|
-
|
7464
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GreaterThanOrEqualToExpression AWS API Documentation
|
7465
|
+
#
|
7466
|
+
class GreaterThanOrEqualToExpression < Struct.new(
|
7467
|
+
:column_name,
|
7468
|
+
:value)
|
7469
|
+
SENSITIVE = []
|
7470
|
+
include Aws::Structure
|
7471
|
+
end
|
7472
|
+
|
7473
|
+
# The details of a group in Amazon DataZone.
|
7474
|
+
#
|
7475
|
+
# @!attribute [rw] group_id
|
7476
|
+
# The identifier of the group in Amazon DataZone.
|
7477
|
+
# @return [String]
|
7478
|
+
#
|
7479
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GroupDetails AWS API Documentation
|
7480
|
+
#
|
7481
|
+
class GroupDetails < Struct.new(
|
7482
|
+
:group_id)
|
7483
|
+
SENSITIVE = []
|
7484
|
+
include Aws::Structure
|
7485
|
+
end
|
7486
|
+
|
7487
|
+
# The details of a group profile.
|
7488
|
+
#
|
7489
|
+
# @!attribute [rw] domain_id
|
7490
|
+
# The ID of the Amazon DataZone domain of a group profile.
|
7491
|
+
# @return [String]
|
7492
|
+
#
|
7493
|
+
# @!attribute [rw] group_name
|
7494
|
+
# The group name of a group profile.
|
7495
|
+
# @return [String]
|
7496
|
+
#
|
7497
|
+
# @!attribute [rw] id
|
7498
|
+
# The ID of a group profile.
|
7499
|
+
# @return [String]
|
7500
|
+
#
|
7501
|
+
# @!attribute [rw] status
|
7502
|
+
# The status of a group profile.
|
7503
|
+
# @return [String]
|
7124
7504
|
#
|
7125
7505
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GroupProfileSummary AWS API Documentation
|
7126
7506
|
#
|
@@ -7166,6 +7546,25 @@ module Aws::DataZone
|
|
7166
7546
|
include Aws::Structure
|
7167
7547
|
end
|
7168
7548
|
|
7549
|
+
# Specifies whether values are in the expression.
|
7550
|
+
#
|
7551
|
+
# @!attribute [rw] column_name
|
7552
|
+
# The name of the column.
|
7553
|
+
# @return [String]
|
7554
|
+
#
|
7555
|
+
# @!attribute [rw] values
|
7556
|
+
# The values that might be in the expression.
|
7557
|
+
# @return [Array<String>]
|
7558
|
+
#
|
7559
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/InExpression AWS API Documentation
|
7560
|
+
#
|
7561
|
+
class InExpression < Struct.new(
|
7562
|
+
:column_name,
|
7563
|
+
:values)
|
7564
|
+
SENSITIVE = []
|
7565
|
+
include Aws::Structure
|
7566
|
+
end
|
7567
|
+
|
7169
7568
|
# The request has failed because of an unknown error, exception or
|
7170
7569
|
# failure.
|
7171
7570
|
#
|
@@ -7180,6 +7579,113 @@ module Aws::DataZone
|
|
7180
7579
|
include Aws::Structure
|
7181
7580
|
end
|
7182
7581
|
|
7582
|
+
# Specifies that the expression is not null.
|
7583
|
+
#
|
7584
|
+
# @!attribute [rw] column_name
|
7585
|
+
# The name of the column.
|
7586
|
+
# @return [String]
|
7587
|
+
#
|
7588
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IsNotNullExpression AWS API Documentation
|
7589
|
+
#
|
7590
|
+
class IsNotNullExpression < Struct.new(
|
7591
|
+
:column_name)
|
7592
|
+
SENSITIVE = []
|
7593
|
+
include Aws::Structure
|
7594
|
+
end
|
7595
|
+
|
7596
|
+
# Specifies that the expression is null.
|
7597
|
+
#
|
7598
|
+
# @!attribute [rw] column_name
|
7599
|
+
# The name of the column.
|
7600
|
+
# @return [String]
|
7601
|
+
#
|
7602
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IsNullExpression AWS API Documentation
|
7603
|
+
#
|
7604
|
+
class IsNullExpression < Struct.new(
|
7605
|
+
:column_name)
|
7606
|
+
SENSITIVE = []
|
7607
|
+
include Aws::Structure
|
7608
|
+
end
|
7609
|
+
|
7610
|
+
# The Lake Formation configuration of the Data Lake blueprint.
|
7611
|
+
#
|
7612
|
+
# @!attribute [rw] location_registration_exclude_s3_locations
|
7613
|
+
# Specifies certain Amazon S3 locations if you do not want Amazon
|
7614
|
+
# DataZone to automatically register them in hybrid mode.
|
7615
|
+
# @return [Array<String>]
|
7616
|
+
#
|
7617
|
+
# @!attribute [rw] location_registration_role
|
7618
|
+
# The role that is used to manage read/write access to the chosen
|
7619
|
+
# Amazon S3 bucket(s) for Data Lake using AWS Lake Formation hybrid
|
7620
|
+
# access mode.
|
7621
|
+
# @return [String]
|
7622
|
+
#
|
7623
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LakeFormationConfiguration AWS API Documentation
|
7624
|
+
#
|
7625
|
+
class LakeFormationConfiguration < Struct.new(
|
7626
|
+
:location_registration_exclude_s3_locations,
|
7627
|
+
:location_registration_role)
|
7628
|
+
SENSITIVE = []
|
7629
|
+
include Aws::Structure
|
7630
|
+
end
|
7631
|
+
|
7632
|
+
# Specifies that a value is less than an expression.
|
7633
|
+
#
|
7634
|
+
# @!attribute [rw] column_name
|
7635
|
+
# The name of the column.
|
7636
|
+
# @return [String]
|
7637
|
+
#
|
7638
|
+
# @!attribute [rw] value
|
7639
|
+
# The value that might be less than the expression.
|
7640
|
+
# @return [String]
|
7641
|
+
#
|
7642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LessThanExpression AWS API Documentation
|
7643
|
+
#
|
7644
|
+
class LessThanExpression < Struct.new(
|
7645
|
+
:column_name,
|
7646
|
+
:value)
|
7647
|
+
SENSITIVE = []
|
7648
|
+
include Aws::Structure
|
7649
|
+
end
|
7650
|
+
|
7651
|
+
# Specifies that a value is less than or equal to an expression.
|
7652
|
+
#
|
7653
|
+
# @!attribute [rw] column_name
|
7654
|
+
# The name of the column.
|
7655
|
+
# @return [String]
|
7656
|
+
#
|
7657
|
+
# @!attribute [rw] value
|
7658
|
+
# The value that might be less than or equal to an expression.
|
7659
|
+
# @return [String]
|
7660
|
+
#
|
7661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LessThanOrEqualToExpression AWS API Documentation
|
7662
|
+
#
|
7663
|
+
class LessThanOrEqualToExpression < Struct.new(
|
7664
|
+
:column_name,
|
7665
|
+
:value)
|
7666
|
+
SENSITIVE = []
|
7667
|
+
include Aws::Structure
|
7668
|
+
end
|
7669
|
+
|
7670
|
+
# Specifies that a value is like the expression.
|
7671
|
+
#
|
7672
|
+
# @!attribute [rw] column_name
|
7673
|
+
# The name of the column.
|
7674
|
+
# @return [String]
|
7675
|
+
#
|
7676
|
+
# @!attribute [rw] value
|
7677
|
+
# The value that might be like the expression.
|
7678
|
+
# @return [String]
|
7679
|
+
#
|
7680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LikeExpression AWS API Documentation
|
7681
|
+
#
|
7682
|
+
class LikeExpression < Struct.new(
|
7683
|
+
:column_name,
|
7684
|
+
:value)
|
7685
|
+
SENSITIVE = []
|
7686
|
+
include Aws::Structure
|
7687
|
+
end
|
7688
|
+
|
7183
7689
|
# The reference details for the data lineage node.
|
7184
7690
|
#
|
7185
7691
|
# @!attribute [rw] event_timestamp
|
@@ -7322,6 +7828,69 @@ module Aws::DataZone
|
|
7322
7828
|
include Aws::Structure
|
7323
7829
|
end
|
7324
7830
|
|
7831
|
+
# @!attribute [rw] asset_identifier
|
7832
|
+
# The ID of the data asset.
|
7833
|
+
# @return [String]
|
7834
|
+
#
|
7835
|
+
# @!attribute [rw] domain_identifier
|
7836
|
+
# The ID of the domain where you want to list asset filters.
|
7837
|
+
# @return [String]
|
7838
|
+
#
|
7839
|
+
# @!attribute [rw] max_results
|
7840
|
+
# The maximum number of asset filters to return in a single call to
|
7841
|
+
# `ListAssetFilters`. When the number of asset filters to be listed is
|
7842
|
+
# greater than the value of `MaxResults`, the response contains a
|
7843
|
+
# `NextToken` value that you can use in a subsequent call to
|
7844
|
+
# `ListAssetFilters` to list the next set of asset filters.
|
7845
|
+
# @return [Integer]
|
7846
|
+
#
|
7847
|
+
# @!attribute [rw] next_token
|
7848
|
+
# When the number of asset filters is greater than the default value
|
7849
|
+
# for the `MaxResults` parameter, or if you explicitly specify a value
|
7850
|
+
# for `MaxResults` that is less than the number of asset filters, the
|
7851
|
+
# response includes a pagination token named `NextToken`. You can
|
7852
|
+
# specify this `NextToken` value in a subsequent call to
|
7853
|
+
# `ListAssetFilters` to list the next set of asset filters.
|
7854
|
+
# @return [String]
|
7855
|
+
#
|
7856
|
+
# @!attribute [rw] status
|
7857
|
+
# The status of the asset filter.
|
7858
|
+
# @return [String]
|
7859
|
+
#
|
7860
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAssetFiltersInput AWS API Documentation
|
7861
|
+
#
|
7862
|
+
class ListAssetFiltersInput < Struct.new(
|
7863
|
+
:asset_identifier,
|
7864
|
+
:domain_identifier,
|
7865
|
+
:max_results,
|
7866
|
+
:next_token,
|
7867
|
+
:status)
|
7868
|
+
SENSITIVE = []
|
7869
|
+
include Aws::Structure
|
7870
|
+
end
|
7871
|
+
|
7872
|
+
# @!attribute [rw] items
|
7873
|
+
# The results of the `ListAssetFilters` action.
|
7874
|
+
# @return [Array<Types::AssetFilterSummary>]
|
7875
|
+
#
|
7876
|
+
# @!attribute [rw] next_token
|
7877
|
+
# When the number of asset filters is greater than the default value
|
7878
|
+
# for the `MaxResults` parameter, or if you explicitly specify a value
|
7879
|
+
# for `MaxResults` that is less than the number of asset filters, the
|
7880
|
+
# response includes a pagination token named `NextToken`. You can
|
7881
|
+
# specify this `NextToken` value in a subsequent call to
|
7882
|
+
# `ListAssetFilters` to list the next set of asset filters.
|
7883
|
+
# @return [String]
|
7884
|
+
#
|
7885
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAssetFiltersOutput AWS API Documentation
|
7886
|
+
#
|
7887
|
+
class ListAssetFiltersOutput < Struct.new(
|
7888
|
+
:items,
|
7889
|
+
:next_token)
|
7890
|
+
SENSITIVE = []
|
7891
|
+
include Aws::Structure
|
7892
|
+
end
|
7893
|
+
|
7325
7894
|
# @!attribute [rw] domain_identifier
|
7326
7895
|
# The identifier of the domain.
|
7327
7896
|
# @return [String]
|
@@ -9026,6 +9595,63 @@ module Aws::DataZone
|
|
9026
9595
|
class Unknown < Model; end
|
9027
9596
|
end
|
9028
9597
|
|
9598
|
+
# Specifies that a value is not equal to the expression.
|
9599
|
+
#
|
9600
|
+
# @!attribute [rw] column_name
|
9601
|
+
# The name of the column.
|
9602
|
+
# @return [String]
|
9603
|
+
#
|
9604
|
+
# @!attribute [rw] value
|
9605
|
+
# The value that might not be equal to the expression.
|
9606
|
+
# @return [String]
|
9607
|
+
#
|
9608
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NotEqualToExpression AWS API Documentation
|
9609
|
+
#
|
9610
|
+
class NotEqualToExpression < Struct.new(
|
9611
|
+
:column_name,
|
9612
|
+
:value)
|
9613
|
+
SENSITIVE = []
|
9614
|
+
include Aws::Structure
|
9615
|
+
end
|
9616
|
+
|
9617
|
+
# Specifies that a value is not in the expression.
|
9618
|
+
#
|
9619
|
+
# @!attribute [rw] column_name
|
9620
|
+
# The name of the column.
|
9621
|
+
# @return [String]
|
9622
|
+
#
|
9623
|
+
# @!attribute [rw] values
|
9624
|
+
# The value that might not be in the expression.
|
9625
|
+
# @return [Array<String>]
|
9626
|
+
#
|
9627
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NotInExpression AWS API Documentation
|
9628
|
+
#
|
9629
|
+
class NotInExpression < Struct.new(
|
9630
|
+
:column_name,
|
9631
|
+
:values)
|
9632
|
+
SENSITIVE = []
|
9633
|
+
include Aws::Structure
|
9634
|
+
end
|
9635
|
+
|
9636
|
+
# Specifies that a value might be not like the expression.
|
9637
|
+
#
|
9638
|
+
# @!attribute [rw] column_name
|
9639
|
+
# The name of the column.
|
9640
|
+
# @return [String]
|
9641
|
+
#
|
9642
|
+
# @!attribute [rw] value
|
9643
|
+
# The value that might not be like the expression.
|
9644
|
+
# @return [String]
|
9645
|
+
#
|
9646
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NotLikeExpression AWS API Documentation
|
9647
|
+
#
|
9648
|
+
class NotLikeExpression < Struct.new(
|
9649
|
+
:column_name,
|
9650
|
+
:value)
|
9651
|
+
SENSITIVE = []
|
9652
|
+
include Aws::Structure
|
9653
|
+
end
|
9654
|
+
|
9029
9655
|
# The details of a notification generated in Amazon DataZone.
|
9030
9656
|
#
|
9031
9657
|
# @!attribute [rw] action_link
|
@@ -9321,6 +9947,29 @@ module Aws::DataZone
|
|
9321
9947
|
include Aws::Structure
|
9322
9948
|
end
|
9323
9949
|
|
9950
|
+
# The provisioning configuration of the blueprint.
|
9951
|
+
#
|
9952
|
+
# @note ProvisioningConfiguration is a union - when making an API calls you must set exactly one of the members.
|
9953
|
+
#
|
9954
|
+
# @note ProvisioningConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProvisioningConfiguration corresponding to the set member.
|
9955
|
+
#
|
9956
|
+
# @!attribute [rw] lake_formation_configuration
|
9957
|
+
# The Lake Formation configuration of the Data Lake blueprint.
|
9958
|
+
# @return [Types::LakeFormationConfiguration]
|
9959
|
+
#
|
9960
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ProvisioningConfiguration AWS API Documentation
|
9961
|
+
#
|
9962
|
+
class ProvisioningConfiguration < Struct.new(
|
9963
|
+
:lake_formation_configuration,
|
9964
|
+
:unknown)
|
9965
|
+
SENSITIVE = []
|
9966
|
+
include Aws::Structure
|
9967
|
+
include Aws::Structure::Union
|
9968
|
+
|
9969
|
+
class LakeFormationConfiguration < ProvisioningConfiguration; end
|
9970
|
+
class Unknown < ProvisioningConfiguration; end
|
9971
|
+
end
|
9972
|
+
|
9324
9973
|
# The provisioning properties of an environment blueprint.
|
9325
9974
|
#
|
9326
9975
|
# @note ProvisioningProperties is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProvisioningProperties corresponding to the set member.
|
@@ -9359,6 +10008,10 @@ module Aws::DataZone
|
|
9359
10008
|
# The ARN of the manage access role.
|
9360
10009
|
# @return [String]
|
9361
10010
|
#
|
10011
|
+
# @!attribute [rw] provisioning_configurations
|
10012
|
+
# The provisioning configuration of a blueprint.
|
10013
|
+
# @return [Array<Types::ProvisioningConfiguration>]
|
10014
|
+
#
|
9362
10015
|
# @!attribute [rw] provisioning_role_arn
|
9363
10016
|
# The ARN of the provisioning role.
|
9364
10017
|
# @return [String]
|
@@ -9374,6 +10027,7 @@ module Aws::DataZone
|
|
9374
10027
|
:enabled_regions,
|
9375
10028
|
:environment_blueprint_identifier,
|
9376
10029
|
:manage_access_role_arn,
|
10030
|
+
:provisioning_configurations,
|
9377
10031
|
:provisioning_role_arn,
|
9378
10032
|
:regional_parameters)
|
9379
10033
|
SENSITIVE = []
|
@@ -9400,6 +10054,10 @@ module Aws::DataZone
|
|
9400
10054
|
# The ARN of the manage access role.
|
9401
10055
|
# @return [String]
|
9402
10056
|
#
|
10057
|
+
# @!attribute [rw] provisioning_configurations
|
10058
|
+
# The provisioning configuration of a blueprint.
|
10059
|
+
# @return [Array<Types::ProvisioningConfiguration>]
|
10060
|
+
#
|
9403
10061
|
# @!attribute [rw] provisioning_role_arn
|
9404
10062
|
# The ARN of the provisioning role.
|
9405
10063
|
# @return [String]
|
@@ -9420,6 +10078,7 @@ module Aws::DataZone
|
|
9420
10078
|
:enabled_regions,
|
9421
10079
|
:environment_blueprint_id,
|
9422
10080
|
:manage_access_role_arn,
|
10081
|
+
:provisioning_configurations,
|
9423
10082
|
:provisioning_role_arn,
|
9424
10083
|
:regional_parameters,
|
9425
10084
|
:updated_at)
|
@@ -9974,6 +10633,149 @@ module Aws::DataZone
|
|
9974
10633
|
include Aws::Structure
|
9975
10634
|
end
|
9976
10635
|
|
10636
|
+
# The row filter.
|
10637
|
+
#
|
10638
|
+
# @note RowFilter is a union - when making an API calls you must set exactly one of the members.
|
10639
|
+
#
|
10640
|
+
# @note RowFilter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RowFilter corresponding to the set member.
|
10641
|
+
#
|
10642
|
+
# @!attribute [rw] and
|
10643
|
+
# The 'and' clause of the row filter.
|
10644
|
+
# @return [Array<Types::RowFilter>]
|
10645
|
+
#
|
10646
|
+
# @!attribute [rw] expression
|
10647
|
+
# The expression of the row filter.
|
10648
|
+
# @return [Types::RowFilterExpression]
|
10649
|
+
#
|
10650
|
+
# @!attribute [rw] or
|
10651
|
+
# The 'or' clause of the row filter.
|
10652
|
+
# @return [Array<Types::RowFilter>]
|
10653
|
+
#
|
10654
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RowFilter AWS API Documentation
|
10655
|
+
#
|
10656
|
+
class RowFilter < Struct.new(
|
10657
|
+
:and,
|
10658
|
+
:expression,
|
10659
|
+
:or,
|
10660
|
+
:unknown)
|
10661
|
+
SENSITIVE = []
|
10662
|
+
include Aws::Structure
|
10663
|
+
include Aws::Structure::Union
|
10664
|
+
|
10665
|
+
class And < RowFilter; end
|
10666
|
+
class Expression < RowFilter; end
|
10667
|
+
class Or < RowFilter; end
|
10668
|
+
class Unknown < RowFilter; end
|
10669
|
+
end
|
10670
|
+
|
10671
|
+
# The row filter configuration details.
|
10672
|
+
#
|
10673
|
+
# @!attribute [rw] row_filter
|
10674
|
+
# The row filter.
|
10675
|
+
# @return [Types::RowFilter]
|
10676
|
+
#
|
10677
|
+
# @!attribute [rw] sensitive
|
10678
|
+
# Specifies whether the row filter is sensitive.
|
10679
|
+
# @return [Boolean]
|
10680
|
+
#
|
10681
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RowFilterConfiguration AWS API Documentation
|
10682
|
+
#
|
10683
|
+
class RowFilterConfiguration < Struct.new(
|
10684
|
+
:row_filter,
|
10685
|
+
:sensitive)
|
10686
|
+
SENSITIVE = []
|
10687
|
+
include Aws::Structure
|
10688
|
+
end
|
10689
|
+
|
10690
|
+
# The row filter expression.
|
10691
|
+
#
|
10692
|
+
# @note RowFilterExpression is a union - when making an API calls you must set exactly one of the members.
|
10693
|
+
#
|
10694
|
+
# @note RowFilterExpression is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RowFilterExpression corresponding to the set member.
|
10695
|
+
#
|
10696
|
+
# @!attribute [rw] equal_to
|
10697
|
+
# The 'equal to' clause of the row filter expression.
|
10698
|
+
# @return [Types::EqualToExpression]
|
10699
|
+
#
|
10700
|
+
# @!attribute [rw] greater_than
|
10701
|
+
# The 'greater than' clause of the row filter expression.
|
10702
|
+
# @return [Types::GreaterThanExpression]
|
10703
|
+
#
|
10704
|
+
# @!attribute [rw] greater_than_or_equal_to
|
10705
|
+
# The 'greater than or equal to' clause of the filter expression.
|
10706
|
+
# @return [Types::GreaterThanOrEqualToExpression]
|
10707
|
+
#
|
10708
|
+
# @!attribute [rw] in
|
10709
|
+
# The 'in' clause of the row filter expression.
|
10710
|
+
# @return [Types::InExpression]
|
10711
|
+
#
|
10712
|
+
# @!attribute [rw] is_not_null
|
10713
|
+
# The 'is not null' clause of the row filter expression.
|
10714
|
+
# @return [Types::IsNotNullExpression]
|
10715
|
+
#
|
10716
|
+
# @!attribute [rw] is_null
|
10717
|
+
# The 'is null' clause of the row filter expression.
|
10718
|
+
# @return [Types::IsNullExpression]
|
10719
|
+
#
|
10720
|
+
# @!attribute [rw] less_than
|
10721
|
+
# The 'less than' clause of the row filter expression.
|
10722
|
+
# @return [Types::LessThanExpression]
|
10723
|
+
#
|
10724
|
+
# @!attribute [rw] less_than_or_equal_to
|
10725
|
+
# The 'less than or equal to' clause of the row filter expression.
|
10726
|
+
# @return [Types::LessThanOrEqualToExpression]
|
10727
|
+
#
|
10728
|
+
# @!attribute [rw] like
|
10729
|
+
# The 'like' clause of the row filter expression.
|
10730
|
+
# @return [Types::LikeExpression]
|
10731
|
+
#
|
10732
|
+
# @!attribute [rw] not_equal_to
|
10733
|
+
# The 'no equal to' clause of the row filter expression.
|
10734
|
+
# @return [Types::NotEqualToExpression]
|
10735
|
+
#
|
10736
|
+
# @!attribute [rw] not_in
|
10737
|
+
# The 'not in' clause of the row filter expression.
|
10738
|
+
# @return [Types::NotInExpression]
|
10739
|
+
#
|
10740
|
+
# @!attribute [rw] not_like
|
10741
|
+
# The 'not like' clause of the row filter expression.
|
10742
|
+
# @return [Types::NotLikeExpression]
|
10743
|
+
#
|
10744
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RowFilterExpression AWS API Documentation
|
10745
|
+
#
|
10746
|
+
class RowFilterExpression < Struct.new(
|
10747
|
+
:equal_to,
|
10748
|
+
:greater_than,
|
10749
|
+
:greater_than_or_equal_to,
|
10750
|
+
:in,
|
10751
|
+
:is_not_null,
|
10752
|
+
:is_null,
|
10753
|
+
:less_than,
|
10754
|
+
:less_than_or_equal_to,
|
10755
|
+
:like,
|
10756
|
+
:not_equal_to,
|
10757
|
+
:not_in,
|
10758
|
+
:not_like,
|
10759
|
+
:unknown)
|
10760
|
+
SENSITIVE = []
|
10761
|
+
include Aws::Structure
|
10762
|
+
include Aws::Structure::Union
|
10763
|
+
|
10764
|
+
class EqualTo < RowFilterExpression; end
|
10765
|
+
class GreaterThan < RowFilterExpression; end
|
10766
|
+
class GreaterThanOrEqualTo < RowFilterExpression; end
|
10767
|
+
class In < RowFilterExpression; end
|
10768
|
+
class IsNotNull < RowFilterExpression; end
|
10769
|
+
class IsNull < RowFilterExpression; end
|
10770
|
+
class LessThan < RowFilterExpression; end
|
10771
|
+
class LessThanOrEqualTo < RowFilterExpression; end
|
10772
|
+
class Like < RowFilterExpression; end
|
10773
|
+
class NotEqualTo < RowFilterExpression; end
|
10774
|
+
class NotIn < RowFilterExpression; end
|
10775
|
+
class NotLike < RowFilterExpression; end
|
10776
|
+
class Unknown < RowFilterExpression; end
|
10777
|
+
end
|
10778
|
+
|
9977
10779
|
# The asset statistics from the data source run.
|
9978
10780
|
#
|
9979
10781
|
# @!attribute [rw] added
|
@@ -11627,6 +12429,106 @@ module Aws::DataZone
|
|
11627
12429
|
#
|
11628
12430
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
11629
12431
|
|
12432
|
+
# @!attribute [rw] asset_identifier
|
12433
|
+
# The ID of the data asset.
|
12434
|
+
# @return [String]
|
12435
|
+
#
|
12436
|
+
# @!attribute [rw] configuration
|
12437
|
+
# The configuration of the asset filter.
|
12438
|
+
# @return [Types::AssetFilterConfiguration]
|
12439
|
+
#
|
12440
|
+
# @!attribute [rw] description
|
12441
|
+
# The description of the asset filter.
|
12442
|
+
# @return [String]
|
12443
|
+
#
|
12444
|
+
# @!attribute [rw] domain_identifier
|
12445
|
+
# The ID of the domain where you want to update an asset filter.
|
12446
|
+
# @return [String]
|
12447
|
+
#
|
12448
|
+
# @!attribute [rw] identifier
|
12449
|
+
# The ID of the asset filter.
|
12450
|
+
# @return [String]
|
12451
|
+
#
|
12452
|
+
# @!attribute [rw] name
|
12453
|
+
# The name of the asset filter.
|
12454
|
+
# @return [String]
|
12455
|
+
#
|
12456
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateAssetFilterInput AWS API Documentation
|
12457
|
+
#
|
12458
|
+
class UpdateAssetFilterInput < Struct.new(
|
12459
|
+
:asset_identifier,
|
12460
|
+
:configuration,
|
12461
|
+
:description,
|
12462
|
+
:domain_identifier,
|
12463
|
+
:identifier,
|
12464
|
+
:name)
|
12465
|
+
SENSITIVE = [:description]
|
12466
|
+
include Aws::Structure
|
12467
|
+
end
|
12468
|
+
|
12469
|
+
# @!attribute [rw] asset_id
|
12470
|
+
# The ID of the data asset.
|
12471
|
+
# @return [String]
|
12472
|
+
#
|
12473
|
+
# @!attribute [rw] configuration
|
12474
|
+
# The configuration of the asset filter.
|
12475
|
+
# @return [Types::AssetFilterConfiguration]
|
12476
|
+
#
|
12477
|
+
# @!attribute [rw] created_at
|
12478
|
+
# The timestamp at which the asset filter was created.
|
12479
|
+
# @return [Time]
|
12480
|
+
#
|
12481
|
+
# @!attribute [rw] description
|
12482
|
+
# The description of the asset filter.
|
12483
|
+
# @return [String]
|
12484
|
+
#
|
12485
|
+
# @!attribute [rw] domain_id
|
12486
|
+
# The ID of the domain where the asset filter was created.
|
12487
|
+
# @return [String]
|
12488
|
+
#
|
12489
|
+
# @!attribute [rw] effective_column_names
|
12490
|
+
# The column names of the asset filter.
|
12491
|
+
# @return [Array<String>]
|
12492
|
+
#
|
12493
|
+
# @!attribute [rw] effective_row_filter
|
12494
|
+
# The row filter of the asset filter.
|
12495
|
+
# @return [String]
|
12496
|
+
#
|
12497
|
+
# @!attribute [rw] error_message
|
12498
|
+
# The error message that is displayed if the action is not completed
|
12499
|
+
# successfully.
|
12500
|
+
# @return [String]
|
12501
|
+
#
|
12502
|
+
# @!attribute [rw] id
|
12503
|
+
# The ID of the asset filter.
|
12504
|
+
# @return [String]
|
12505
|
+
#
|
12506
|
+
# @!attribute [rw] name
|
12507
|
+
# The name of the asset filter.
|
12508
|
+
# @return [String]
|
12509
|
+
#
|
12510
|
+
# @!attribute [rw] status
|
12511
|
+
# The status of the asset filter.
|
12512
|
+
# @return [String]
|
12513
|
+
#
|
12514
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateAssetFilterOutput AWS API Documentation
|
12515
|
+
#
|
12516
|
+
class UpdateAssetFilterOutput < Struct.new(
|
12517
|
+
:asset_id,
|
12518
|
+
:configuration,
|
12519
|
+
:created_at,
|
12520
|
+
:description,
|
12521
|
+
:domain_id,
|
12522
|
+
:effective_column_names,
|
12523
|
+
:effective_row_filter,
|
12524
|
+
:error_message,
|
12525
|
+
:id,
|
12526
|
+
:name,
|
12527
|
+
:status)
|
12528
|
+
SENSITIVE = [:description, :name]
|
12529
|
+
include Aws::Structure
|
12530
|
+
end
|
12531
|
+
|
11630
12532
|
# @!attribute [rw] asset_forms_input
|
11631
12533
|
# The asset forms to be updated as part of the `UpdateDataSource`
|
11632
12534
|
# action.
|