aws-sdk-datazone 1.14.0 → 1.16.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.
@@ -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.
@@ -3009,72 +3215,6 @@ module Aws::DataZone
3009
3215
  include Aws::Structure
3010
3216
  end
3011
3217
 
3012
- # @!attribute [rw] domain_id
3013
- # @return [String]
3014
- #
3015
- # @!attribute [rw] item_id
3016
- # @return [String]
3017
- #
3018
- # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductItem AWS API Documentation
3019
- #
3020
- class DataProductItem < Struct.new(
3021
- :domain_id,
3022
- :item_id)
3023
- SENSITIVE = []
3024
- include Aws::Structure
3025
- end
3026
-
3027
- # @!attribute [rw] created_at
3028
- # @return [Time]
3029
- #
3030
- # @!attribute [rw] created_by
3031
- # @return [String]
3032
- #
3033
- # @!attribute [rw] data_product_items
3034
- # @return [Array<Types::DataProductItem>]
3035
- #
3036
- # @!attribute [rw] description
3037
- # @return [String]
3038
- #
3039
- # @!attribute [rw] domain_id
3040
- # @return [String]
3041
- #
3042
- # @!attribute [rw] glossary_terms
3043
- # @return [Array<String>]
3044
- #
3045
- # @!attribute [rw] id
3046
- # @return [String]
3047
- #
3048
- # @!attribute [rw] name
3049
- # @return [String]
3050
- #
3051
- # @!attribute [rw] owning_project_id
3052
- # @return [String]
3053
- #
3054
- # @!attribute [rw] updated_at
3055
- # @return [Time]
3056
- #
3057
- # @!attribute [rw] updated_by
3058
- # @return [String]
3059
- #
3060
- # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductSummary AWS API Documentation
3061
- #
3062
- class DataProductSummary < Struct.new(
3063
- :created_at,
3064
- :created_by,
3065
- :data_product_items,
3066
- :description,
3067
- :domain_id,
3068
- :glossary_terms,
3069
- :id,
3070
- :name,
3071
- :owning_project_id,
3072
- :updated_at,
3073
- :updated_by)
3074
- SENSITIVE = [:description, :name]
3075
- include Aws::Structure
3076
- end
3077
-
3078
3218
  # The configuration of the data source.
3079
3219
  #
3080
3220
  # @note DataSourceConfigurationInput is a union - when making an API calls you must set exactly one of the members.
@@ -3358,6 +3498,28 @@ module Aws::DataZone
3358
3498
  include Aws::Structure
3359
3499
  end
3360
3500
 
3501
+ # @!attribute [rw] asset_identifier
3502
+ # The ID of the data asset.
3503
+ # @return [String]
3504
+ #
3505
+ # @!attribute [rw] domain_identifier
3506
+ # The ID of the domain where you want to delete an asset filter.
3507
+ # @return [String]
3508
+ #
3509
+ # @!attribute [rw] identifier
3510
+ # The ID of the asset filter that you want to delete.
3511
+ # @return [String]
3512
+ #
3513
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteAssetFilterInput AWS API Documentation
3514
+ #
3515
+ class DeleteAssetFilterInput < Struct.new(
3516
+ :asset_identifier,
3517
+ :domain_identifier,
3518
+ :identifier)
3519
+ SENSITIVE = []
3520
+ include Aws::Structure
3521
+ end
3522
+
3361
3523
  # @!attribute [rw] domain_identifier
3362
3524
  # The ID of the Amazon DataZone domain in which the asset is deleted.
3363
3525
  # @return [String]
@@ -4216,6 +4378,10 @@ module Aws::DataZone
4216
4378
  # blueprint configuration.
4217
4379
  # @return [String]
4218
4380
  #
4381
+ # @!attribute [rw] provisioning_configurations
4382
+ # The provisioning configuration of a blueprint.
4383
+ # @return [Array<Types::ProvisioningConfiguration>]
4384
+ #
4219
4385
  # @!attribute [rw] provisioning_role_arn
4220
4386
  # The ARN of the provisioning role specified in the environment
4221
4387
  # blueprint configuration.
@@ -4237,6 +4403,7 @@ module Aws::DataZone
4237
4403
  :enabled_regions,
4238
4404
  :environment_blueprint_id,
4239
4405
  :manage_access_role_arn,
4406
+ :provisioning_configurations,
4240
4407
  :provisioning_role_arn,
4241
4408
  :regional_parameters,
4242
4409
  :updated_at)
@@ -4473,6 +4640,25 @@ module Aws::DataZone
4473
4640
  include Aws::Structure
4474
4641
  end
4475
4642
 
4643
+ # Specifies whether the value is equal to an expression.
4644
+ #
4645
+ # @!attribute [rw] column_name
4646
+ # The name of the column.
4647
+ # @return [String]
4648
+ #
4649
+ # @!attribute [rw] value
4650
+ # The value that might be equal to an expression.
4651
+ # @return [String]
4652
+ #
4653
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EqualToExpression AWS API Documentation
4654
+ #
4655
+ class EqualToExpression < Struct.new(
4656
+ :column_name,
4657
+ :value)
4658
+ SENSITIVE = []
4659
+ include Aws::Structure
4660
+ end
4661
+
4476
4662
  # Specifies the error message that is returned if the operation cannot
4477
4663
  # be successfully completed.
4478
4664
  #
@@ -4737,6 +4923,91 @@ module Aws::DataZone
4737
4923
  include Aws::Structure
4738
4924
  end
4739
4925
 
4926
+ # @!attribute [rw] asset_identifier
4927
+ # The ID of the data asset.
4928
+ # @return [String]
4929
+ #
4930
+ # @!attribute [rw] domain_identifier
4931
+ # The ID of the domain where you want to get an asset filter.
4932
+ # @return [String]
4933
+ #
4934
+ # @!attribute [rw] identifier
4935
+ # The ID of the asset filter.
4936
+ # @return [String]
4937
+ #
4938
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetAssetFilterInput AWS API Documentation
4939
+ #
4940
+ class GetAssetFilterInput < Struct.new(
4941
+ :asset_identifier,
4942
+ :domain_identifier,
4943
+ :identifier)
4944
+ SENSITIVE = []
4945
+ include Aws::Structure
4946
+ end
4947
+
4948
+ # @!attribute [rw] asset_id
4949
+ # The ID of the data asset.
4950
+ # @return [String]
4951
+ #
4952
+ # @!attribute [rw] configuration
4953
+ # The configuration of the asset filter.
4954
+ # @return [Types::AssetFilterConfiguration]
4955
+ #
4956
+ # @!attribute [rw] created_at
4957
+ # The timestamp at which the asset filter was created.
4958
+ # @return [Time]
4959
+ #
4960
+ # @!attribute [rw] description
4961
+ # The description of the asset filter.
4962
+ # @return [String]
4963
+ #
4964
+ # @!attribute [rw] domain_id
4965
+ # The ID of the domain where you want to get an asset filter.
4966
+ # @return [String]
4967
+ #
4968
+ # @!attribute [rw] effective_column_names
4969
+ # The column names of the asset filter.
4970
+ # @return [Array<String>]
4971
+ #
4972
+ # @!attribute [rw] effective_row_filter
4973
+ # The row filter of the asset filter.
4974
+ # @return [String]
4975
+ #
4976
+ # @!attribute [rw] error_message
4977
+ # The error message that is displayed if the action does not complete
4978
+ # successfully.
4979
+ # @return [String]
4980
+ #
4981
+ # @!attribute [rw] id
4982
+ # The ID of the asset filter.
4983
+ # @return [String]
4984
+ #
4985
+ # @!attribute [rw] name
4986
+ # The name of the asset filter.
4987
+ # @return [String]
4988
+ #
4989
+ # @!attribute [rw] status
4990
+ # The status of the asset filter.
4991
+ # @return [String]
4992
+ #
4993
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetAssetFilterOutput AWS API Documentation
4994
+ #
4995
+ class GetAssetFilterOutput < Struct.new(
4996
+ :asset_id,
4997
+ :configuration,
4998
+ :created_at,
4999
+ :description,
5000
+ :domain_id,
5001
+ :effective_column_names,
5002
+ :effective_row_filter,
5003
+ :error_message,
5004
+ :id,
5005
+ :name,
5006
+ :status)
5007
+ SENSITIVE = [:description, :name]
5008
+ include Aws::Structure
5009
+ end
5010
+
4740
5011
  # @!attribute [rw] domain_identifier
4741
5012
  # The ID of the Amazon DataZone domain to which the asset belongs.
4742
5013
  # @return [String]
@@ -5362,6 +5633,10 @@ module Aws::DataZone
5362
5633
  # created.
5363
5634
  # @return [String]
5364
5635
  #
5636
+ # @!attribute [rw] provisioning_configurations
5637
+ # The provisioning configuration of a blueprint.
5638
+ # @return [Array<Types::ProvisioningConfiguration>]
5639
+ #
5365
5640
  # @!attribute [rw] provisioning_role_arn
5366
5641
  # The ARN of the provisioning role with which this blueprint is
5367
5642
  # created.
@@ -5383,6 +5658,7 @@ module Aws::DataZone
5383
5658
  :enabled_regions,
5384
5659
  :environment_blueprint_id,
5385
5660
  :manage_access_role_arn,
5661
+ :provisioning_configurations,
5386
5662
  :provisioning_role_arn,
5387
5663
  :regional_parameters,
5388
5664
  :updated_at)
@@ -7090,6 +7366,44 @@ module Aws::DataZone
7090
7366
  class Unknown < GrantedEntityInput; end
7091
7367
  end
7092
7368
 
7369
+ # Specifies whether the value is greater than an expression.
7370
+ #
7371
+ # @!attribute [rw] column_name
7372
+ # The name of the column.
7373
+ # @return [String]
7374
+ #
7375
+ # @!attribute [rw] value
7376
+ # The value that might be greater than an expression.
7377
+ # @return [String]
7378
+ #
7379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GreaterThanExpression AWS API Documentation
7380
+ #
7381
+ class GreaterThanExpression < Struct.new(
7382
+ :column_name,
7383
+ :value)
7384
+ SENSITIVE = []
7385
+ include Aws::Structure
7386
+ end
7387
+
7388
+ # Specifies whether the value is greater than or equal to an expression.
7389
+ #
7390
+ # @!attribute [rw] column_name
7391
+ # The name of the column.
7392
+ # @return [String]
7393
+ #
7394
+ # @!attribute [rw] value
7395
+ # The value that might be greater than or equal to an expression.
7396
+ # @return [String]
7397
+ #
7398
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GreaterThanOrEqualToExpression AWS API Documentation
7399
+ #
7400
+ class GreaterThanOrEqualToExpression < Struct.new(
7401
+ :column_name,
7402
+ :value)
7403
+ SENSITIVE = []
7404
+ include Aws::Structure
7405
+ end
7406
+
7093
7407
  # The details of a group in Amazon DataZone.
7094
7408
  #
7095
7409
  # @!attribute [rw] group_id
@@ -7133,49 +7447,175 @@ module Aws::DataZone
7133
7447
  include Aws::Structure
7134
7448
  end
7135
7449
 
7136
- # The details of an IAM user profile in Amazon DataZone.
7450
+ # The details of an IAM user profile in Amazon DataZone.
7451
+ #
7452
+ # @!attribute [rw] arn
7453
+ # The ARN of an IAM user profile in Amazon DataZone.
7454
+ # @return [String]
7455
+ #
7456
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IamUserProfileDetails AWS API Documentation
7457
+ #
7458
+ class IamUserProfileDetails < Struct.new(
7459
+ :arn)
7460
+ SENSITIVE = []
7461
+ include Aws::Structure
7462
+ end
7463
+
7464
+ # The details of the import of the metadata form type.
7465
+ #
7466
+ # @!attribute [rw] name
7467
+ # The name of the import.
7468
+ # @return [String]
7469
+ #
7470
+ # @!attribute [rw] revision
7471
+ # The revision of the import.
7472
+ # @return [String]
7473
+ #
7474
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/Import AWS API Documentation
7475
+ #
7476
+ class Import < Struct.new(
7477
+ :name,
7478
+ :revision)
7479
+ SENSITIVE = [:name]
7480
+ include Aws::Structure
7481
+ end
7482
+
7483
+ # Specifies whether values are in the expression.
7484
+ #
7485
+ # @!attribute [rw] column_name
7486
+ # The name of the column.
7487
+ # @return [String]
7488
+ #
7489
+ # @!attribute [rw] values
7490
+ # The values that might be in the expression.
7491
+ # @return [Array<String>]
7492
+ #
7493
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/InExpression AWS API Documentation
7494
+ #
7495
+ class InExpression < Struct.new(
7496
+ :column_name,
7497
+ :values)
7498
+ SENSITIVE = []
7499
+ include Aws::Structure
7500
+ end
7501
+
7502
+ # The request has failed because of an unknown error, exception or
7503
+ # failure.
7504
+ #
7505
+ # @!attribute [rw] message
7506
+ # @return [String]
7507
+ #
7508
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/InternalServerException AWS API Documentation
7509
+ #
7510
+ class InternalServerException < Struct.new(
7511
+ :message)
7512
+ SENSITIVE = []
7513
+ include Aws::Structure
7514
+ end
7515
+
7516
+ # Specifies that the expression is not null.
7517
+ #
7518
+ # @!attribute [rw] column_name
7519
+ # The name of the column.
7520
+ # @return [String]
7521
+ #
7522
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IsNotNullExpression AWS API Documentation
7523
+ #
7524
+ class IsNotNullExpression < Struct.new(
7525
+ :column_name)
7526
+ SENSITIVE = []
7527
+ include Aws::Structure
7528
+ end
7529
+
7530
+ # Specifies that the expression is null.
7531
+ #
7532
+ # @!attribute [rw] column_name
7533
+ # The name of the column.
7534
+ # @return [String]
7535
+ #
7536
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IsNullExpression AWS API Documentation
7537
+ #
7538
+ class IsNullExpression < Struct.new(
7539
+ :column_name)
7540
+ SENSITIVE = []
7541
+ include Aws::Structure
7542
+ end
7543
+
7544
+ # The Lake Formation configuration of the Data Lake blueprint.
7545
+ #
7546
+ # @!attribute [rw] location_registration_exclude_s3_locations
7547
+ # Specifies certain Amazon S3 locations if you do not want Amazon
7548
+ # DataZone to automatically register them in hybrid mode.
7549
+ # @return [Array<String>]
7550
+ #
7551
+ # @!attribute [rw] location_registration_role
7552
+ # The role that is used to manage read/write access to the chosen
7553
+ # Amazon S3 bucket(s) for Data Lake using AWS Lake Formation hybrid
7554
+ # access mode.
7555
+ # @return [String]
7556
+ #
7557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LakeFormationConfiguration AWS API Documentation
7558
+ #
7559
+ class LakeFormationConfiguration < Struct.new(
7560
+ :location_registration_exclude_s3_locations,
7561
+ :location_registration_role)
7562
+ SENSITIVE = []
7563
+ include Aws::Structure
7564
+ end
7565
+
7566
+ # Specifies that a value is less than an expression.
7137
7567
  #
7138
- # @!attribute [rw] arn
7139
- # The ARN of an IAM user profile in Amazon DataZone.
7568
+ # @!attribute [rw] column_name
7569
+ # The name of the column.
7140
7570
  # @return [String]
7141
7571
  #
7142
- # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IamUserProfileDetails AWS API Documentation
7572
+ # @!attribute [rw] value
7573
+ # The value that might be less than the expression.
7574
+ # @return [String]
7143
7575
  #
7144
- class IamUserProfileDetails < Struct.new(
7145
- :arn)
7576
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LessThanExpression AWS API Documentation
7577
+ #
7578
+ class LessThanExpression < Struct.new(
7579
+ :column_name,
7580
+ :value)
7146
7581
  SENSITIVE = []
7147
7582
  include Aws::Structure
7148
7583
  end
7149
7584
 
7150
- # The details of the import of the metadata form type.
7585
+ # Specifies that a value is less than or equal to an expression.
7151
7586
  #
7152
- # @!attribute [rw] name
7153
- # The name of the import.
7587
+ # @!attribute [rw] column_name
7588
+ # The name of the column.
7154
7589
  # @return [String]
7155
7590
  #
7156
- # @!attribute [rw] revision
7157
- # The revision of the import.
7591
+ # @!attribute [rw] value
7592
+ # The value that might be less than or equal to an expression.
7158
7593
  # @return [String]
7159
7594
  #
7160
- # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/Import AWS API Documentation
7595
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LessThanOrEqualToExpression AWS API Documentation
7161
7596
  #
7162
- class Import < Struct.new(
7163
- :name,
7164
- :revision)
7165
- SENSITIVE = [:name]
7597
+ class LessThanOrEqualToExpression < Struct.new(
7598
+ :column_name,
7599
+ :value)
7600
+ SENSITIVE = []
7166
7601
  include Aws::Structure
7167
7602
  end
7168
7603
 
7169
- # The request has failed because of an unknown error, exception or
7170
- # failure.
7604
+ # Specifies that a value is like the expression.
7171
7605
  #
7172
- # @!attribute [rw] message
7606
+ # @!attribute [rw] column_name
7607
+ # The name of the column.
7173
7608
  # @return [String]
7174
7609
  #
7175
- # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/InternalServerException AWS API Documentation
7610
+ # @!attribute [rw] value
7611
+ # The value that might be like the expression.
7612
+ # @return [String]
7176
7613
  #
7177
- class InternalServerException < Struct.new(
7178
- :message)
7614
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LikeExpression AWS API Documentation
7615
+ #
7616
+ class LikeExpression < Struct.new(
7617
+ :column_name,
7618
+ :value)
7179
7619
  SENSITIVE = []
7180
7620
  include Aws::Structure
7181
7621
  end
@@ -7322,6 +7762,69 @@ module Aws::DataZone
7322
7762
  include Aws::Structure
7323
7763
  end
7324
7764
 
7765
+ # @!attribute [rw] asset_identifier
7766
+ # The ID of the data asset.
7767
+ # @return [String]
7768
+ #
7769
+ # @!attribute [rw] domain_identifier
7770
+ # The ID of the domain where you want to list asset filters.
7771
+ # @return [String]
7772
+ #
7773
+ # @!attribute [rw] max_results
7774
+ # The maximum number of asset filters to return in a single call to
7775
+ # `ListAssetFilters`. When the number of asset filters to be listed is
7776
+ # greater than the value of `MaxResults`, the response contains a
7777
+ # `NextToken` value that you can use in a subsequent call to
7778
+ # `ListAssetFilters` to list the next set of asset filters.
7779
+ # @return [Integer]
7780
+ #
7781
+ # @!attribute [rw] next_token
7782
+ # When the number of asset filters is greater than the default value
7783
+ # for the `MaxResults` parameter, or if you explicitly specify a value
7784
+ # for `MaxResults` that is less than the number of asset filters, the
7785
+ # response includes a pagination token named `NextToken`. You can
7786
+ # specify this `NextToken` value in a subsequent call to
7787
+ # `ListAssetFilters` to list the next set of asset filters.
7788
+ # @return [String]
7789
+ #
7790
+ # @!attribute [rw] status
7791
+ # The status of the asset filter.
7792
+ # @return [String]
7793
+ #
7794
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAssetFiltersInput AWS API Documentation
7795
+ #
7796
+ class ListAssetFiltersInput < Struct.new(
7797
+ :asset_identifier,
7798
+ :domain_identifier,
7799
+ :max_results,
7800
+ :next_token,
7801
+ :status)
7802
+ SENSITIVE = []
7803
+ include Aws::Structure
7804
+ end
7805
+
7806
+ # @!attribute [rw] items
7807
+ # The results of the `ListAssetFilters` action.
7808
+ # @return [Array<Types::AssetFilterSummary>]
7809
+ #
7810
+ # @!attribute [rw] next_token
7811
+ # When the number of asset filters is greater than the default value
7812
+ # for the `MaxResults` parameter, or if you explicitly specify a value
7813
+ # for `MaxResults` that is less than the number of asset filters, the
7814
+ # response includes a pagination token named `NextToken`. You can
7815
+ # specify this `NextToken` value in a subsequent call to
7816
+ # `ListAssetFilters` to list the next set of asset filters.
7817
+ # @return [String]
7818
+ #
7819
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAssetFiltersOutput AWS API Documentation
7820
+ #
7821
+ class ListAssetFiltersOutput < Struct.new(
7822
+ :items,
7823
+ :next_token)
7824
+ SENSITIVE = []
7825
+ include Aws::Structure
7826
+ end
7827
+
7325
7828
  # @!attribute [rw] domain_identifier
7326
7829
  # The identifier of the domain.
7327
7830
  # @return [String]
@@ -9026,6 +9529,63 @@ module Aws::DataZone
9026
9529
  class Unknown < Model; end
9027
9530
  end
9028
9531
 
9532
+ # Specifies that a value is not equal to the expression.
9533
+ #
9534
+ # @!attribute [rw] column_name
9535
+ # The name of the column.
9536
+ # @return [String]
9537
+ #
9538
+ # @!attribute [rw] value
9539
+ # The value that might not be equal to the expression.
9540
+ # @return [String]
9541
+ #
9542
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NotEqualToExpression AWS API Documentation
9543
+ #
9544
+ class NotEqualToExpression < Struct.new(
9545
+ :column_name,
9546
+ :value)
9547
+ SENSITIVE = []
9548
+ include Aws::Structure
9549
+ end
9550
+
9551
+ # Specifies that a value is not in the expression.
9552
+ #
9553
+ # @!attribute [rw] column_name
9554
+ # The name of the column.
9555
+ # @return [String]
9556
+ #
9557
+ # @!attribute [rw] values
9558
+ # The value that might not be in the expression.
9559
+ # @return [Array<String>]
9560
+ #
9561
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NotInExpression AWS API Documentation
9562
+ #
9563
+ class NotInExpression < Struct.new(
9564
+ :column_name,
9565
+ :values)
9566
+ SENSITIVE = []
9567
+ include Aws::Structure
9568
+ end
9569
+
9570
+ # Specifies that a value might be not like the expression.
9571
+ #
9572
+ # @!attribute [rw] column_name
9573
+ # The name of the column.
9574
+ # @return [String]
9575
+ #
9576
+ # @!attribute [rw] value
9577
+ # The value that might not be like the expression.
9578
+ # @return [String]
9579
+ #
9580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NotLikeExpression AWS API Documentation
9581
+ #
9582
+ class NotLikeExpression < Struct.new(
9583
+ :column_name,
9584
+ :value)
9585
+ SENSITIVE = []
9586
+ include Aws::Structure
9587
+ end
9588
+
9029
9589
  # The details of a notification generated in Amazon DataZone.
9030
9590
  #
9031
9591
  # @!attribute [rw] action_link
@@ -9321,6 +9881,29 @@ module Aws::DataZone
9321
9881
  include Aws::Structure
9322
9882
  end
9323
9883
 
9884
+ # The provisioning configuration of the blueprint.
9885
+ #
9886
+ # @note ProvisioningConfiguration is a union - when making an API calls you must set exactly one of the members.
9887
+ #
9888
+ # @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.
9889
+ #
9890
+ # @!attribute [rw] lake_formation_configuration
9891
+ # The Lake Formation configuration of the Data Lake blueprint.
9892
+ # @return [Types::LakeFormationConfiguration]
9893
+ #
9894
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ProvisioningConfiguration AWS API Documentation
9895
+ #
9896
+ class ProvisioningConfiguration < Struct.new(
9897
+ :lake_formation_configuration,
9898
+ :unknown)
9899
+ SENSITIVE = []
9900
+ include Aws::Structure
9901
+ include Aws::Structure::Union
9902
+
9903
+ class LakeFormationConfiguration < ProvisioningConfiguration; end
9904
+ class Unknown < ProvisioningConfiguration; end
9905
+ end
9906
+
9324
9907
  # The provisioning properties of an environment blueprint.
9325
9908
  #
9326
9909
  # @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 +9942,10 @@ module Aws::DataZone
9359
9942
  # The ARN of the manage access role.
9360
9943
  # @return [String]
9361
9944
  #
9945
+ # @!attribute [rw] provisioning_configurations
9946
+ # The provisioning configuration of a blueprint.
9947
+ # @return [Array<Types::ProvisioningConfiguration>]
9948
+ #
9362
9949
  # @!attribute [rw] provisioning_role_arn
9363
9950
  # The ARN of the provisioning role.
9364
9951
  # @return [String]
@@ -9374,6 +9961,7 @@ module Aws::DataZone
9374
9961
  :enabled_regions,
9375
9962
  :environment_blueprint_identifier,
9376
9963
  :manage_access_role_arn,
9964
+ :provisioning_configurations,
9377
9965
  :provisioning_role_arn,
9378
9966
  :regional_parameters)
9379
9967
  SENSITIVE = []
@@ -9400,6 +9988,10 @@ module Aws::DataZone
9400
9988
  # The ARN of the manage access role.
9401
9989
  # @return [String]
9402
9990
  #
9991
+ # @!attribute [rw] provisioning_configurations
9992
+ # The provisioning configuration of a blueprint.
9993
+ # @return [Array<Types::ProvisioningConfiguration>]
9994
+ #
9403
9995
  # @!attribute [rw] provisioning_role_arn
9404
9996
  # The ARN of the provisioning role.
9405
9997
  # @return [String]
@@ -9420,6 +10012,7 @@ module Aws::DataZone
9420
10012
  :enabled_regions,
9421
10013
  :environment_blueprint_id,
9422
10014
  :manage_access_role_arn,
10015
+ :provisioning_configurations,
9423
10016
  :provisioning_role_arn,
9424
10017
  :regional_parameters,
9425
10018
  :updated_at)
@@ -9974,6 +10567,149 @@ module Aws::DataZone
9974
10567
  include Aws::Structure
9975
10568
  end
9976
10569
 
10570
+ # The row filter.
10571
+ #
10572
+ # @note RowFilter is a union - when making an API calls you must set exactly one of the members.
10573
+ #
10574
+ # @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.
10575
+ #
10576
+ # @!attribute [rw] and
10577
+ # The 'and' clause of the row filter.
10578
+ # @return [Array<Types::RowFilter>]
10579
+ #
10580
+ # @!attribute [rw] expression
10581
+ # The expression of the row filter.
10582
+ # @return [Types::RowFilterExpression]
10583
+ #
10584
+ # @!attribute [rw] or
10585
+ # The 'or' clause of the row filter.
10586
+ # @return [Array<Types::RowFilter>]
10587
+ #
10588
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RowFilter AWS API Documentation
10589
+ #
10590
+ class RowFilter < Struct.new(
10591
+ :and,
10592
+ :expression,
10593
+ :or,
10594
+ :unknown)
10595
+ SENSITIVE = []
10596
+ include Aws::Structure
10597
+ include Aws::Structure::Union
10598
+
10599
+ class And < RowFilter; end
10600
+ class Expression < RowFilter; end
10601
+ class Or < RowFilter; end
10602
+ class Unknown < RowFilter; end
10603
+ end
10604
+
10605
+ # The row filter configuration details.
10606
+ #
10607
+ # @!attribute [rw] row_filter
10608
+ # The row filter.
10609
+ # @return [Types::RowFilter]
10610
+ #
10611
+ # @!attribute [rw] sensitive
10612
+ # Specifies whether the row filter is sensitive.
10613
+ # @return [Boolean]
10614
+ #
10615
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RowFilterConfiguration AWS API Documentation
10616
+ #
10617
+ class RowFilterConfiguration < Struct.new(
10618
+ :row_filter,
10619
+ :sensitive)
10620
+ SENSITIVE = []
10621
+ include Aws::Structure
10622
+ end
10623
+
10624
+ # The row filter expression.
10625
+ #
10626
+ # @note RowFilterExpression is a union - when making an API calls you must set exactly one of the members.
10627
+ #
10628
+ # @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.
10629
+ #
10630
+ # @!attribute [rw] equal_to
10631
+ # The 'equal to' clause of the row filter expression.
10632
+ # @return [Types::EqualToExpression]
10633
+ #
10634
+ # @!attribute [rw] greater_than
10635
+ # The 'greater than' clause of the row filter expression.
10636
+ # @return [Types::GreaterThanExpression]
10637
+ #
10638
+ # @!attribute [rw] greater_than_or_equal_to
10639
+ # The 'greater than or equal to' clause of the filter expression.
10640
+ # @return [Types::GreaterThanOrEqualToExpression]
10641
+ #
10642
+ # @!attribute [rw] in
10643
+ # The 'in' clause of the row filter expression.
10644
+ # @return [Types::InExpression]
10645
+ #
10646
+ # @!attribute [rw] is_not_null
10647
+ # The 'is not null' clause of the row filter expression.
10648
+ # @return [Types::IsNotNullExpression]
10649
+ #
10650
+ # @!attribute [rw] is_null
10651
+ # The 'is null' clause of the row filter expression.
10652
+ # @return [Types::IsNullExpression]
10653
+ #
10654
+ # @!attribute [rw] less_than
10655
+ # The 'less than' clause of the row filter expression.
10656
+ # @return [Types::LessThanExpression]
10657
+ #
10658
+ # @!attribute [rw] less_than_or_equal_to
10659
+ # The 'less than or equal to' clause of the row filter expression.
10660
+ # @return [Types::LessThanOrEqualToExpression]
10661
+ #
10662
+ # @!attribute [rw] like
10663
+ # The 'like' clause of the row filter expression.
10664
+ # @return [Types::LikeExpression]
10665
+ #
10666
+ # @!attribute [rw] not_equal_to
10667
+ # The 'no equal to' clause of the row filter expression.
10668
+ # @return [Types::NotEqualToExpression]
10669
+ #
10670
+ # @!attribute [rw] not_in
10671
+ # The 'not in' clause of the row filter expression.
10672
+ # @return [Types::NotInExpression]
10673
+ #
10674
+ # @!attribute [rw] not_like
10675
+ # The 'not like' clause of the row filter expression.
10676
+ # @return [Types::NotLikeExpression]
10677
+ #
10678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RowFilterExpression AWS API Documentation
10679
+ #
10680
+ class RowFilterExpression < Struct.new(
10681
+ :equal_to,
10682
+ :greater_than,
10683
+ :greater_than_or_equal_to,
10684
+ :in,
10685
+ :is_not_null,
10686
+ :is_null,
10687
+ :less_than,
10688
+ :less_than_or_equal_to,
10689
+ :like,
10690
+ :not_equal_to,
10691
+ :not_in,
10692
+ :not_like,
10693
+ :unknown)
10694
+ SENSITIVE = []
10695
+ include Aws::Structure
10696
+ include Aws::Structure::Union
10697
+
10698
+ class EqualTo < RowFilterExpression; end
10699
+ class GreaterThan < RowFilterExpression; end
10700
+ class GreaterThanOrEqualTo < RowFilterExpression; end
10701
+ class In < RowFilterExpression; end
10702
+ class IsNotNull < RowFilterExpression; end
10703
+ class IsNull < RowFilterExpression; end
10704
+ class LessThan < RowFilterExpression; end
10705
+ class LessThanOrEqualTo < RowFilterExpression; end
10706
+ class Like < RowFilterExpression; end
10707
+ class NotEqualTo < RowFilterExpression; end
10708
+ class NotIn < RowFilterExpression; end
10709
+ class NotLike < RowFilterExpression; end
10710
+ class Unknown < RowFilterExpression; end
10711
+ end
10712
+
9977
10713
  # The asset statistics from the data source run.
9978
10714
  #
9979
10715
  # @!attribute [rw] added
@@ -10179,10 +10915,6 @@ module Aws::DataZone
10179
10915
  # The asset item included in the search results.
10180
10916
  # @return [Types::AssetItem]
10181
10917
  #
10182
- # @!attribute [rw] data_product_item
10183
- # The data product item included in the search results.
10184
- # @return [Types::DataProductSummary]
10185
- #
10186
10918
  # @!attribute [rw] glossary_item
10187
10919
  # The glossary item included in the search results.
10188
10920
  # @return [Types::GlossaryItem]
@@ -10195,7 +10927,6 @@ module Aws::DataZone
10195
10927
  #
10196
10928
  class SearchInventoryResultItem < Struct.new(
10197
10929
  :asset_item,
10198
- :data_product_item,
10199
10930
  :glossary_item,
10200
10931
  :glossary_term_item,
10201
10932
  :unknown)
@@ -10204,7 +10935,6 @@ module Aws::DataZone
10204
10935
  include Aws::Structure::Union
10205
10936
 
10206
10937
  class AssetItem < SearchInventoryResultItem; end
10207
- class DataProductItem < SearchInventoryResultItem; end
10208
10938
  class GlossaryItem < SearchInventoryResultItem; end
10209
10939
  class GlossaryTermItem < SearchInventoryResultItem; end
10210
10940
  class Unknown < SearchInventoryResultItem; end
@@ -11627,6 +12357,106 @@ module Aws::DataZone
11627
12357
  #
11628
12358
  class UntagResourceResponse < Aws::EmptyStructure; end
11629
12359
 
12360
+ # @!attribute [rw] asset_identifier
12361
+ # The ID of the data asset.
12362
+ # @return [String]
12363
+ #
12364
+ # @!attribute [rw] configuration
12365
+ # The configuration of the asset filter.
12366
+ # @return [Types::AssetFilterConfiguration]
12367
+ #
12368
+ # @!attribute [rw] description
12369
+ # The description of the asset filter.
12370
+ # @return [String]
12371
+ #
12372
+ # @!attribute [rw] domain_identifier
12373
+ # The ID of the domain where you want to update an asset filter.
12374
+ # @return [String]
12375
+ #
12376
+ # @!attribute [rw] identifier
12377
+ # The ID of the asset filter.
12378
+ # @return [String]
12379
+ #
12380
+ # @!attribute [rw] name
12381
+ # The name of the asset filter.
12382
+ # @return [String]
12383
+ #
12384
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateAssetFilterInput AWS API Documentation
12385
+ #
12386
+ class UpdateAssetFilterInput < Struct.new(
12387
+ :asset_identifier,
12388
+ :configuration,
12389
+ :description,
12390
+ :domain_identifier,
12391
+ :identifier,
12392
+ :name)
12393
+ SENSITIVE = [:description]
12394
+ include Aws::Structure
12395
+ end
12396
+
12397
+ # @!attribute [rw] asset_id
12398
+ # The ID of the data asset.
12399
+ # @return [String]
12400
+ #
12401
+ # @!attribute [rw] configuration
12402
+ # The configuration of the asset filter.
12403
+ # @return [Types::AssetFilterConfiguration]
12404
+ #
12405
+ # @!attribute [rw] created_at
12406
+ # The timestamp at which the asset filter was created.
12407
+ # @return [Time]
12408
+ #
12409
+ # @!attribute [rw] description
12410
+ # The description of the asset filter.
12411
+ # @return [String]
12412
+ #
12413
+ # @!attribute [rw] domain_id
12414
+ # The ID of the domain where the asset filter was created.
12415
+ # @return [String]
12416
+ #
12417
+ # @!attribute [rw] effective_column_names
12418
+ # The column names of the asset filter.
12419
+ # @return [Array<String>]
12420
+ #
12421
+ # @!attribute [rw] effective_row_filter
12422
+ # The row filter of the asset filter.
12423
+ # @return [String]
12424
+ #
12425
+ # @!attribute [rw] error_message
12426
+ # The error message that is displayed if the action is not completed
12427
+ # successfully.
12428
+ # @return [String]
12429
+ #
12430
+ # @!attribute [rw] id
12431
+ # The ID of the asset filter.
12432
+ # @return [String]
12433
+ #
12434
+ # @!attribute [rw] name
12435
+ # The name of the asset filter.
12436
+ # @return [String]
12437
+ #
12438
+ # @!attribute [rw] status
12439
+ # The status of the asset filter.
12440
+ # @return [String]
12441
+ #
12442
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateAssetFilterOutput AWS API Documentation
12443
+ #
12444
+ class UpdateAssetFilterOutput < Struct.new(
12445
+ :asset_id,
12446
+ :configuration,
12447
+ :created_at,
12448
+ :description,
12449
+ :domain_id,
12450
+ :effective_column_names,
12451
+ :effective_row_filter,
12452
+ :error_message,
12453
+ :id,
12454
+ :name,
12455
+ :status)
12456
+ SENSITIVE = [:description, :name]
12457
+ include Aws::Structure
12458
+ end
12459
+
11630
12460
  # @!attribute [rw] asset_forms_input
11631
12461
  # The asset forms to be updated as part of the `UpdateDataSource`
11632
12462
  # action.