aws-sdk-datazone 1.19.0 → 1.21.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -126,6 +126,10 @@ module Aws::DataZone
126
126
  include Aws::Structure
127
127
  end
128
128
 
129
+ # @!attribute [rw] asset_scopes
130
+ # The asset scopes of the accept subscription request.
131
+ # @return [Array<Types::AcceptedAssetScope>]
132
+ #
129
133
  # @!attribute [rw] decision_comment
130
134
  # A description that specifies the reason for accepting the specified
131
135
  # subscription request.
@@ -144,6 +148,7 @@ module Aws::DataZone
144
148
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AcceptSubscriptionRequestInput AWS API Documentation
145
149
  #
146
150
  class AcceptSubscriptionRequestInput < Struct.new(
151
+ :asset_scopes,
147
152
  :decision_comment,
148
153
  :domain_identifier,
149
154
  :identifier)
@@ -224,6 +229,25 @@ module Aws::DataZone
224
229
  include Aws::Structure
225
230
  end
226
231
 
232
+ # The accepted asset scope.
233
+ #
234
+ # @!attribute [rw] asset_id
235
+ # The asset ID of the accepted asset scope.
236
+ # @return [String]
237
+ #
238
+ # @!attribute [rw] filter_ids
239
+ # The filter IDs of the accepted asset scope.
240
+ # @return [Array<String>]
241
+ #
242
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AcceptedAssetScope AWS API Documentation
243
+ #
244
+ class AcceptedAssetScope < Struct.new(
245
+ :asset_id,
246
+ :filter_ids)
247
+ SENSITIVE = []
248
+ include Aws::Structure
249
+ end
250
+
227
251
  # You do not have sufficient access to perform this action.
228
252
  #
229
253
  # @!attribute [rw] message
@@ -260,6 +284,127 @@ module Aws::DataZone
260
284
  class Unknown < ActionParameters; end
261
285
  end
262
286
 
287
+ # @!attribute [rw] client_token
288
+ # A unique, case-sensitive identifier that is provided to ensure the
289
+ # idempotency of the request.
290
+ #
291
+ # **A suitable default value is auto-generated.** You should normally
292
+ # not need to pass this option.
293
+ # @return [String]
294
+ #
295
+ # @!attribute [rw] domain_identifier
296
+ # The ID of the domain in which you want to add the entity owner.
297
+ # @return [String]
298
+ #
299
+ # @!attribute [rw] entity_identifier
300
+ # The ID of the entity to which you want to add an owner.
301
+ # @return [String]
302
+ #
303
+ # @!attribute [rw] entity_type
304
+ # The type of an entity.
305
+ # @return [String]
306
+ #
307
+ # @!attribute [rw] owner
308
+ # The owner that you want to add to the entity.
309
+ # @return [Types::OwnerProperties]
310
+ #
311
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AddEntityOwnerInput AWS API Documentation
312
+ #
313
+ class AddEntityOwnerInput < Struct.new(
314
+ :client_token,
315
+ :domain_identifier,
316
+ :entity_identifier,
317
+ :entity_type,
318
+ :owner)
319
+ SENSITIVE = []
320
+ include Aws::Structure
321
+ end
322
+
323
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AddEntityOwnerOutput AWS API Documentation
324
+ #
325
+ class AddEntityOwnerOutput < Aws::EmptyStructure; end
326
+
327
+ # @!attribute [rw] client_token
328
+ # A unique, case-sensitive identifier that is provided to ensure the
329
+ # idempotency of the request.
330
+ #
331
+ # **A suitable default value is auto-generated.** You should normally
332
+ # not need to pass this option.
333
+ # @return [String]
334
+ #
335
+ # @!attribute [rw] detail
336
+ # The details of the policy grant.
337
+ # @return [Types::PolicyGrantDetail]
338
+ #
339
+ # @!attribute [rw] domain_identifier
340
+ # The ID of the domain where you want to add a policy grant.
341
+ # @return [String]
342
+ #
343
+ # @!attribute [rw] entity_identifier
344
+ # The ID of the entity (resource) to which you want to add a policy
345
+ # grant.
346
+ # @return [String]
347
+ #
348
+ # @!attribute [rw] entity_type
349
+ # The type of entity (resource) to which the grant is added.
350
+ # @return [String]
351
+ #
352
+ # @!attribute [rw] policy_type
353
+ # The type of policy that you want to grant.
354
+ # @return [String]
355
+ #
356
+ # @!attribute [rw] principal
357
+ # The principal to whom the permissions are granted.
358
+ # @return [Types::PolicyGrantPrincipal]
359
+ #
360
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AddPolicyGrantInput AWS API Documentation
361
+ #
362
+ class AddPolicyGrantInput < Struct.new(
363
+ :client_token,
364
+ :detail,
365
+ :domain_identifier,
366
+ :entity_identifier,
367
+ :entity_type,
368
+ :policy_type,
369
+ :principal)
370
+ SENSITIVE = []
371
+ include Aws::Structure
372
+ end
373
+
374
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AddPolicyGrantOutput AWS API Documentation
375
+ #
376
+ class AddPolicyGrantOutput < Aws::EmptyStructure; end
377
+
378
+ # The details of the policy grant.
379
+ #
380
+ # @!attribute [rw] include_child_domain_units
381
+ # Specifies whether the policy grant is applied to child domain units.
382
+ # @return [Boolean]
383
+ #
384
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AddToProjectMemberPoolPolicyGrantDetail AWS API Documentation
385
+ #
386
+ class AddToProjectMemberPoolPolicyGrantDetail < Struct.new(
387
+ :include_child_domain_units)
388
+ SENSITIVE = []
389
+ include Aws::Structure
390
+ end
391
+
392
+ # The grant filter for all domain units.
393
+ #
394
+ # @api private
395
+ #
396
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AllDomainUnitsGrantFilter AWS API Documentation
397
+ #
398
+ class AllDomainUnitsGrantFilter < Aws::EmptyStructure; end
399
+
400
+ # The all users grant filter.
401
+ #
402
+ # @api private
403
+ #
404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AllUsersGrantFilter AWS API Documentation
405
+ #
406
+ class AllUsersGrantFilter < Aws::EmptyStructure; end
407
+
263
408
  # The configuration details of the asset filter.
264
409
  #
265
410
  # @note AssetFilterConfiguration is a union - when making an API calls you must set exactly one of the members.
@@ -690,6 +835,35 @@ module Aws::DataZone
690
835
  include Aws::Structure
691
836
  end
692
837
 
838
+ # The asset scope.
839
+ #
840
+ # @!attribute [rw] asset_id
841
+ # The asset ID of the asset scope.
842
+ # @return [String]
843
+ #
844
+ # @!attribute [rw] error_message
845
+ # The error message of the asset scope.
846
+ # @return [String]
847
+ #
848
+ # @!attribute [rw] filter_ids
849
+ # The filter IDs of the asset scope.
850
+ # @return [Array<String>]
851
+ #
852
+ # @!attribute [rw] status
853
+ # The status of the asset scope.
854
+ # @return [String]
855
+ #
856
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssetScope AWS API Documentation
857
+ #
858
+ class AssetScope < Struct.new(
859
+ :asset_id,
860
+ :error_message,
861
+ :filter_ids,
862
+ :status)
863
+ SENSITIVE = []
864
+ include Aws::Structure
865
+ end
866
+
693
867
  # The name map for assets.
694
868
  #
695
869
  # @!attribute [rw] asset_id
@@ -1582,6 +1756,20 @@ module Aws::DataZone
1582
1756
  include Aws::Structure
1583
1757
  end
1584
1758
 
1759
+ # The details of the policy grant.
1760
+ #
1761
+ # @!attribute [rw] include_child_domain_units
1762
+ # Specifies whether the policy grant is applied to child domain units.
1763
+ # @return [Boolean]
1764
+ #
1765
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateAssetTypePolicyGrantDetail AWS API Documentation
1766
+ #
1767
+ class CreateAssetTypePolicyGrantDetail < Struct.new(
1768
+ :include_child_domain_units)
1769
+ SENSITIVE = []
1770
+ include Aws::Structure
1771
+ end
1772
+
1585
1773
  # @!attribute [rw] client_token
1586
1774
  # A unique, case-sensitive identifier that is provided to ensure the
1587
1775
  # idempotency of the request.
@@ -2121,6 +2309,10 @@ module Aws::DataZone
2121
2309
  # The URL of the data portal for this Amazon DataZone domain.
2122
2310
  # @return [String]
2123
2311
  #
2312
+ # @!attribute [rw] root_domain_unit_id
2313
+ # The ID of the root domain unit.
2314
+ # @return [String]
2315
+ #
2124
2316
  # @!attribute [rw] single_sign_on
2125
2317
  # The single-sign on configuration of the Amazon DataZone domain.
2126
2318
  # @return [Types::SingleSignOn]
@@ -2143,6 +2335,7 @@ module Aws::DataZone
2143
2335
  :kms_key_identifier,
2144
2336
  :name,
2145
2337
  :portal_url,
2338
+ :root_domain_unit_id,
2146
2339
  :single_sign_on,
2147
2340
  :status,
2148
2341
  :tags)
@@ -2150,6 +2343,108 @@ module Aws::DataZone
2150
2343
  include Aws::Structure
2151
2344
  end
2152
2345
 
2346
+ # @!attribute [rw] client_token
2347
+ # A unique, case-sensitive identifier that is provided to ensure the
2348
+ # idempotency of the request.
2349
+ #
2350
+ # **A suitable default value is auto-generated.** You should normally
2351
+ # not need to pass this option.
2352
+ # @return [String]
2353
+ #
2354
+ # @!attribute [rw] description
2355
+ # The description of the domain unit.
2356
+ # @return [String]
2357
+ #
2358
+ # @!attribute [rw] domain_identifier
2359
+ # The ID of the domain where you want to crate a domain unit.
2360
+ # @return [String]
2361
+ #
2362
+ # @!attribute [rw] name
2363
+ # The name of the domain unit.
2364
+ # @return [String]
2365
+ #
2366
+ # @!attribute [rw] parent_domain_unit_identifier
2367
+ # The ID of the parent domain unit.
2368
+ # @return [String]
2369
+ #
2370
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateDomainUnitInput AWS API Documentation
2371
+ #
2372
+ class CreateDomainUnitInput < Struct.new(
2373
+ :client_token,
2374
+ :description,
2375
+ :domain_identifier,
2376
+ :name,
2377
+ :parent_domain_unit_identifier)
2378
+ SENSITIVE = [:description, :name]
2379
+ include Aws::Structure
2380
+ end
2381
+
2382
+ # @!attribute [rw] ancestor_domain_unit_ids
2383
+ # The IDs of the ancestor domain units.
2384
+ # @return [Array<String>]
2385
+ #
2386
+ # @!attribute [rw] created_at
2387
+ # The timestamp at which the domain unit was created.
2388
+ # @return [Time]
2389
+ #
2390
+ # @!attribute [rw] created_by
2391
+ # The user who created the domain unit.
2392
+ # @return [String]
2393
+ #
2394
+ # @!attribute [rw] description
2395
+ # The description of the domain unit.
2396
+ # @return [String]
2397
+ #
2398
+ # @!attribute [rw] domain_id
2399
+ # The ID of the domain where the domain unit was created.
2400
+ # @return [String]
2401
+ #
2402
+ # @!attribute [rw] id
2403
+ # The ID of the domain unit.
2404
+ # @return [String]
2405
+ #
2406
+ # @!attribute [rw] name
2407
+ # The name of the domain unit.
2408
+ # @return [String]
2409
+ #
2410
+ # @!attribute [rw] owners
2411
+ # The owners of the domain unit.
2412
+ # @return [Array<Types::DomainUnitOwnerProperties>]
2413
+ #
2414
+ # @!attribute [rw] parent_domain_unit_id
2415
+ # The ID of the parent domain unit.
2416
+ # @return [String]
2417
+ #
2418
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateDomainUnitOutput AWS API Documentation
2419
+ #
2420
+ class CreateDomainUnitOutput < Struct.new(
2421
+ :ancestor_domain_unit_ids,
2422
+ :created_at,
2423
+ :created_by,
2424
+ :description,
2425
+ :domain_id,
2426
+ :id,
2427
+ :name,
2428
+ :owners,
2429
+ :parent_domain_unit_id)
2430
+ SENSITIVE = [:description, :name]
2431
+ include Aws::Structure
2432
+ end
2433
+
2434
+ # The details of the policy grant.
2435
+ #
2436
+ # @!attribute [rw] include_child_domain_units
2437
+ # Specifies whether the policy grant is applied to child domain units.
2438
+ # @return [Boolean]
2439
+ #
2440
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateDomainUnitPolicyGrantDetail AWS API Documentation
2441
+ #
2442
+ class CreateDomainUnitPolicyGrantDetail < Struct.new(
2443
+ :include_child_domain_units)
2444
+ SENSITIVE = []
2445
+ include Aws::Structure
2446
+ end
2447
+
2153
2448
  # @!attribute [rw] description
2154
2449
  # The description of the environment action that is being created in
2155
2450
  # the environment.
@@ -2527,6 +2822,20 @@ module Aws::DataZone
2527
2822
  include Aws::Structure
2528
2823
  end
2529
2824
 
2825
+ # The details of the policy grant.
2826
+ #
2827
+ # @!attribute [rw] domain_unit_id
2828
+ # The ID of the domain unit.
2829
+ # @return [String]
2830
+ #
2831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentProfilePolicyGrantDetail AWS API Documentation
2832
+ #
2833
+ class CreateEnvironmentProfilePolicyGrantDetail < Struct.new(
2834
+ :domain_unit_id)
2835
+ SENSITIVE = []
2836
+ include Aws::Structure
2837
+ end
2838
+
2530
2839
  # @!attribute [rw] description
2531
2840
  # The description of this Amazon DataZone metadata form type.
2532
2841
  # @return [String]
@@ -2612,6 +2921,20 @@ module Aws::DataZone
2612
2921
  include Aws::Structure
2613
2922
  end
2614
2923
 
2924
+ # The details of the policy grant.
2925
+ #
2926
+ # @!attribute [rw] include_child_domain_units
2927
+ # Specifies whether the policy grant is applied to child domain units.
2928
+ # @return [Boolean]
2929
+ #
2930
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateFormTypePolicyGrantDetail AWS API Documentation
2931
+ #
2932
+ class CreateFormTypePolicyGrantDetail < Struct.new(
2933
+ :include_child_domain_units)
2934
+ SENSITIVE = []
2935
+ include Aws::Structure
2936
+ end
2937
+
2615
2938
  # @!attribute [rw] client_token
2616
2939
  # A unique, case-sensitive identifier that is provided to ensure the
2617
2940
  # idempotency of the request.
@@ -2692,6 +3015,20 @@ module Aws::DataZone
2692
3015
  include Aws::Structure
2693
3016
  end
2694
3017
 
3018
+ # The details of the policy grant.
3019
+ #
3020
+ # @!attribute [rw] include_child_domain_units
3021
+ # Specifies whether the policy grant is applied to child domain units.
3022
+ # @return [Boolean]
3023
+ #
3024
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateGlossaryPolicyGrantDetail AWS API Documentation
3025
+ #
3026
+ class CreateGlossaryPolicyGrantDetail < Struct.new(
3027
+ :include_child_domain_units)
3028
+ SENSITIVE = []
3029
+ include Aws::Structure
3030
+ end
3031
+
2695
3032
  # @!attribute [rw] client_token
2696
3033
  # A unique, case-sensitive identifier that is provided to ensure the
2697
3034
  # idempotency of the request.
@@ -2919,6 +3256,12 @@ module Aws::DataZone
2919
3256
  # created.
2920
3257
  # @return [String]
2921
3258
  #
3259
+ # @!attribute [rw] domain_unit_id
3260
+ # The ID of the domain unit. This parameter is not required and if it
3261
+ # is not specified, then the project is created at the root domain
3262
+ # unit level.
3263
+ # @return [String]
3264
+ #
2922
3265
  # @!attribute [rw] glossary_terms
2923
3266
  # The glossary terms that can be used in this Amazon DataZone project.
2924
3267
  # @return [Array<String>]
@@ -2932,6 +3275,7 @@ module Aws::DataZone
2932
3275
  class CreateProjectInput < Struct.new(
2933
3276
  :description,
2934
3277
  :domain_identifier,
3278
+ :domain_unit_id,
2935
3279
  :glossary_terms,
2936
3280
  :name)
2937
3281
  SENSITIVE = [:description, :name]
@@ -2987,6 +3331,10 @@ module Aws::DataZone
2987
3331
  # was created.
2988
3332
  # @return [String]
2989
3333
  #
3334
+ # @!attribute [rw] domain_unit_id
3335
+ # The ID of the domain unit.
3336
+ # @return [String]
3337
+ #
2990
3338
  # @!attribute [rw] failure_reasons
2991
3339
  # Specifies the error message that is returned if the operation cannot
2992
3340
  # be successfully completed.
@@ -3019,6 +3367,7 @@ module Aws::DataZone
3019
3367
  :created_by,
3020
3368
  :description,
3021
3369
  :domain_id,
3370
+ :domain_unit_id,
3022
3371
  :failure_reasons,
3023
3372
  :glossary_terms,
3024
3373
  :id,
@@ -3029,6 +3378,20 @@ module Aws::DataZone
3029
3378
  include Aws::Structure
3030
3379
  end
3031
3380
 
3381
+ # The details of the policy grant.
3382
+ #
3383
+ # @!attribute [rw] include_child_domain_units
3384
+ # Specifies whether the policy grant is applied to child domain units.
3385
+ # @return [Boolean]
3386
+ #
3387
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectPolicyGrantDetail AWS API Documentation
3388
+ #
3389
+ class CreateProjectPolicyGrantDetail < Struct.new(
3390
+ :include_child_domain_units)
3391
+ SENSITIVE = []
3392
+ include Aws::Structure
3393
+ end
3394
+
3032
3395
  # @!attribute [rw] asset_target_names
3033
3396
  # The names of the assets for which the subscription grant is created.
3034
3397
  # @return [Array<Types::AssetTargetNameMap>]
@@ -4315,6 +4678,27 @@ module Aws::DataZone
4315
4678
  include Aws::Structure
4316
4679
  end
4317
4680
 
4681
+ # @!attribute [rw] domain_identifier
4682
+ # The ID of the domain where you want to delete a domain unit.
4683
+ # @return [String]
4684
+ #
4685
+ # @!attribute [rw] identifier
4686
+ # The ID of the domain unit that you want to delete.
4687
+ # @return [String]
4688
+ #
4689
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDomainUnitInput AWS API Documentation
4690
+ #
4691
+ class DeleteDomainUnitInput < Struct.new(
4692
+ :domain_identifier,
4693
+ :identifier)
4694
+ SENSITIVE = []
4695
+ include Aws::Structure
4696
+ end
4697
+
4698
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDomainUnitOutput AWS API Documentation
4699
+ #
4700
+ class DeleteDomainUnitOutput < Aws::EmptyStructure; end
4701
+
4318
4702
  # @!attribute [rw] domain_identifier
4319
4703
  # The ID of the Amazon DataZone domain in which an environment action
4320
4704
  # is deleted.
@@ -4872,23 +5256,165 @@ module Aws::DataZone
4872
5256
  include Aws::Structure
4873
5257
  end
4874
5258
 
4875
- # The details about the specified action configured for an environment.
4876
- # For example, the details of the specified console links for an
4877
- # analytics tool that is available in this environment.
5259
+ # The domain unit filter of the project grant filter.
4878
5260
  #
4879
- # @!attribute [rw] description
4880
- # The environment action description.
5261
+ # @!attribute [rw] domain_unit
5262
+ # The domain unit ID to use in the filter.
4881
5263
  # @return [String]
4882
5264
  #
4883
- # @!attribute [rw] domain_id
4884
- # The Amazon DataZone domain ID of the environment action.
4885
- # @return [String]
5265
+ # @!attribute [rw] include_child_domain_units
5266
+ # Specifies whether to include child domain units.
5267
+ # @return [Boolean]
4886
5268
  #
4887
- # @!attribute [rw] environment_id
4888
- # The environment ID of the environment action.
4889
- # @return [String]
5269
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DomainUnitFilterForProject AWS API Documentation
4890
5270
  #
4891
- # @!attribute [rw] id
5271
+ class DomainUnitFilterForProject < Struct.new(
5272
+ :domain_unit,
5273
+ :include_child_domain_units)
5274
+ SENSITIVE = []
5275
+ include Aws::Structure
5276
+ end
5277
+
5278
+ # The grant filter for the domain unit. In the current release of Amazon
5279
+ # DataZone, the only supported filter is the
5280
+ # `allDomainUnitsGrantFilter`.
5281
+ #
5282
+ # @note DomainUnitGrantFilter is a union - when making an API calls you must set exactly one of the members.
5283
+ #
5284
+ # @note DomainUnitGrantFilter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DomainUnitGrantFilter corresponding to the set member.
5285
+ #
5286
+ # @!attribute [rw] all_domain_units_grant_filter
5287
+ # Specifies a grant filter containing all domain units.
5288
+ # @return [Types::AllDomainUnitsGrantFilter]
5289
+ #
5290
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DomainUnitGrantFilter AWS API Documentation
5291
+ #
5292
+ class DomainUnitGrantFilter < Struct.new(
5293
+ :all_domain_units_grant_filter,
5294
+ :unknown)
5295
+ SENSITIVE = []
5296
+ include Aws::Structure
5297
+ include Aws::Structure::Union
5298
+
5299
+ class AllDomainUnitsGrantFilter < DomainUnitGrantFilter; end
5300
+ class Unknown < DomainUnitGrantFilter; end
5301
+ end
5302
+
5303
+ # The properties of a domain unit group.
5304
+ #
5305
+ # @!attribute [rw] group_id
5306
+ # The ID of the domain unit group.
5307
+ # @return [String]
5308
+ #
5309
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DomainUnitGroupProperties AWS API Documentation
5310
+ #
5311
+ class DomainUnitGroupProperties < Struct.new(
5312
+ :group_id)
5313
+ SENSITIVE = []
5314
+ include Aws::Structure
5315
+ end
5316
+
5317
+ # The properties of the domain unit owner.
5318
+ #
5319
+ # @note DomainUnitOwnerProperties is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DomainUnitOwnerProperties corresponding to the set member.
5320
+ #
5321
+ # @!attribute [rw] group
5322
+ # Indicates that the domain unit owner is a group.
5323
+ # @return [Types::DomainUnitGroupProperties]
5324
+ #
5325
+ # @!attribute [rw] user
5326
+ # Indicates that the domain unit owner is a user.
5327
+ # @return [Types::DomainUnitUserProperties]
5328
+ #
5329
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DomainUnitOwnerProperties AWS API Documentation
5330
+ #
5331
+ class DomainUnitOwnerProperties < Struct.new(
5332
+ :group,
5333
+ :user,
5334
+ :unknown)
5335
+ SENSITIVE = []
5336
+ include Aws::Structure
5337
+ include Aws::Structure::Union
5338
+
5339
+ class Group < DomainUnitOwnerProperties; end
5340
+ class User < DomainUnitOwnerProperties; end
5341
+ class Unknown < DomainUnitOwnerProperties; end
5342
+ end
5343
+
5344
+ # The domain unit principal to whom the policy is granted.
5345
+ #
5346
+ # @!attribute [rw] domain_unit_designation
5347
+ # Specifes the designation of the domain unit users.
5348
+ # @return [String]
5349
+ #
5350
+ # @!attribute [rw] domain_unit_grant_filter
5351
+ # The grant filter for the domain unit.
5352
+ # @return [Types::DomainUnitGrantFilter]
5353
+ #
5354
+ # @!attribute [rw] domain_unit_identifier
5355
+ # The ID of the domain unit.
5356
+ # @return [String]
5357
+ #
5358
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DomainUnitPolicyGrantPrincipal AWS API Documentation
5359
+ #
5360
+ class DomainUnitPolicyGrantPrincipal < Struct.new(
5361
+ :domain_unit_designation,
5362
+ :domain_unit_grant_filter,
5363
+ :domain_unit_identifier)
5364
+ SENSITIVE = []
5365
+ include Aws::Structure
5366
+ end
5367
+
5368
+ # The summary of the domain unit.
5369
+ #
5370
+ # @!attribute [rw] id
5371
+ # The ID of the domain unit summary.
5372
+ # @return [String]
5373
+ #
5374
+ # @!attribute [rw] name
5375
+ # The name of the domain unit summary.
5376
+ # @return [String]
5377
+ #
5378
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DomainUnitSummary AWS API Documentation
5379
+ #
5380
+ class DomainUnitSummary < Struct.new(
5381
+ :id,
5382
+ :name)
5383
+ SENSITIVE = []
5384
+ include Aws::Structure
5385
+ end
5386
+
5387
+ # The properties of the domain unit user.
5388
+ #
5389
+ # @!attribute [rw] user_id
5390
+ # The ID of teh domain unit user.
5391
+ # @return [String]
5392
+ #
5393
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DomainUnitUserProperties AWS API Documentation
5394
+ #
5395
+ class DomainUnitUserProperties < Struct.new(
5396
+ :user_id)
5397
+ SENSITIVE = []
5398
+ include Aws::Structure
5399
+ end
5400
+
5401
+ # The details about the specified action configured for an environment.
5402
+ # For example, the details of the specified console links for an
5403
+ # analytics tool that is available in this environment.
5404
+ #
5405
+ # @!attribute [rw] description
5406
+ # The environment action description.
5407
+ # @return [String]
5408
+ #
5409
+ # @!attribute [rw] domain_id
5410
+ # The Amazon DataZone domain ID of the environment action.
5411
+ # @return [String]
5412
+ #
5413
+ # @!attribute [rw] environment_id
5414
+ # The environment ID of the environment action.
5415
+ # @return [String]
5416
+ #
5417
+ # @!attribute [rw] id
4892
5418
  # The ID of the environment action.
4893
5419
  # @return [String]
4894
5420
  #
@@ -6163,6 +6689,10 @@ module Aws::DataZone
6163
6689
  # The URL of the data portal for this Amazon DataZone domain.
6164
6690
  # @return [String]
6165
6691
  #
6692
+ # @!attribute [rw] root_domain_unit_id
6693
+ # The ID of the root domain in Amazon Datazone.
6694
+ # @return [String]
6695
+ #
6166
6696
  # @!attribute [rw] single_sign_on
6167
6697
  # The single sing-on option of the specified Amazon DataZone domain.
6168
6698
  # @return [Types::SingleSignOn]
@@ -6187,6 +6717,7 @@ module Aws::DataZone
6187
6717
  :last_updated_at,
6188
6718
  :name,
6189
6719
  :portal_url,
6720
+ :root_domain_unit_id,
6190
6721
  :single_sign_on,
6191
6722
  :status,
6192
6723
  :tags)
@@ -6194,6 +6725,80 @@ module Aws::DataZone
6194
6725
  include Aws::Structure
6195
6726
  end
6196
6727
 
6728
+ # @!attribute [rw] domain_identifier
6729
+ # The ID of the domain where you want to get a domain unit.
6730
+ # @return [String]
6731
+ #
6732
+ # @!attribute [rw] identifier
6733
+ # The identifier of the domain unit that you want to get.
6734
+ # @return [String]
6735
+ #
6736
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetDomainUnitInput AWS API Documentation
6737
+ #
6738
+ class GetDomainUnitInput < Struct.new(
6739
+ :domain_identifier,
6740
+ :identifier)
6741
+ SENSITIVE = []
6742
+ include Aws::Structure
6743
+ end
6744
+
6745
+ # @!attribute [rw] created_at
6746
+ # The time stamp at which the domain unit was created.
6747
+ # @return [Time]
6748
+ #
6749
+ # @!attribute [rw] created_by
6750
+ # The user who created the domain unit.
6751
+ # @return [String]
6752
+ #
6753
+ # @!attribute [rw] description
6754
+ # The description of the domain unit.
6755
+ # @return [String]
6756
+ #
6757
+ # @!attribute [rw] domain_id
6758
+ # The ID of the domain in which the domain unit lives.
6759
+ # @return [String]
6760
+ #
6761
+ # @!attribute [rw] id
6762
+ # The ID of the domain unit.
6763
+ # @return [String]
6764
+ #
6765
+ # @!attribute [rw] last_updated_at
6766
+ # The timestamp at which the domain unit was last updated.
6767
+ # @return [Time]
6768
+ #
6769
+ # @!attribute [rw] last_updated_by
6770
+ # The user who last updated the domain unit.
6771
+ # @return [String]
6772
+ #
6773
+ # @!attribute [rw] name
6774
+ # The name of the domain unit.
6775
+ # @return [String]
6776
+ #
6777
+ # @!attribute [rw] owners
6778
+ # The owners of the domain unit.
6779
+ # @return [Array<Types::DomainUnitOwnerProperties>]
6780
+ #
6781
+ # @!attribute [rw] parent_domain_unit_id
6782
+ # The ID of the parent domain unit.
6783
+ # @return [String]
6784
+ #
6785
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetDomainUnitOutput AWS API Documentation
6786
+ #
6787
+ class GetDomainUnitOutput < Struct.new(
6788
+ :created_at,
6789
+ :created_by,
6790
+ :description,
6791
+ :domain_id,
6792
+ :id,
6793
+ :last_updated_at,
6794
+ :last_updated_by,
6795
+ :name,
6796
+ :owners,
6797
+ :parent_domain_unit_id)
6798
+ SENSITIVE = [:description, :name]
6799
+ include Aws::Structure
6800
+ end
6801
+
6197
6802
  # @!attribute [rw] domain_identifier
6198
6803
  # The ID of the Amazon DataZone domain in which the
6199
6804
  # `GetEnvironmentAction` API is invoked.
@@ -7293,6 +7898,10 @@ module Aws::DataZone
7293
7898
  # The ID of the Amazon DataZone domain in which the project exists.
7294
7899
  # @return [String]
7295
7900
  #
7901
+ # @!attribute [rw] domain_unit_id
7902
+ # The ID of the domain unit.
7903
+ # @return [String]
7904
+ #
7296
7905
  # @!attribute [rw] failure_reasons
7297
7906
  # Specifies the error message that is returned if the operation cannot
7298
7907
  # be successfully completed.
@@ -7325,6 +7934,7 @@ module Aws::DataZone
7325
7934
  :created_by,
7326
7935
  :description,
7327
7936
  :domain_id,
7937
+ :domain_unit_id,
7328
7938
  :failure_reasons,
7329
7939
  :glossary_terms,
7330
7940
  :id,
@@ -8123,6 +8733,29 @@ module Aws::DataZone
8123
8733
  include Aws::Structure
8124
8734
  end
8125
8735
 
8736
+ # The group principal to whom the policy is granted.
8737
+ #
8738
+ # @note GroupPolicyGrantPrincipal is a union - when making an API calls you must set exactly one of the members.
8739
+ #
8740
+ # @note GroupPolicyGrantPrincipal is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of GroupPolicyGrantPrincipal corresponding to the set member.
8741
+ #
8742
+ # @!attribute [rw] group_identifier
8743
+ # The ID Of the group of the group principal.
8744
+ # @return [String]
8745
+ #
8746
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GroupPolicyGrantPrincipal AWS API Documentation
8747
+ #
8748
+ class GroupPolicyGrantPrincipal < Struct.new(
8749
+ :group_identifier,
8750
+ :unknown)
8751
+ SENSITIVE = []
8752
+ include Aws::Structure
8753
+ include Aws::Structure::Union
8754
+
8755
+ class GroupIdentifier < GroupPolicyGrantPrincipal; end
8756
+ class Unknown < GroupPolicyGrantPrincipal; end
8757
+ end
8758
+
8126
8759
  # The details of a group profile.
8127
8760
  #
8128
8761
  # @!attribute [rw] domain_id
@@ -8857,6 +9490,65 @@ module Aws::DataZone
8857
9490
  include Aws::Structure
8858
9491
  end
8859
9492
 
9493
+ # @!attribute [rw] domain_identifier
9494
+ # The ID of the domain in which you want to list domain units for a
9495
+ # parent domain unit.
9496
+ # @return [String]
9497
+ #
9498
+ # @!attribute [rw] max_results
9499
+ # The maximum number of domain units to return in a single call to
9500
+ # ListDomainUnitsForParent. When the number of domain units to be
9501
+ # listed is greater than the value of MaxResults, the response
9502
+ # contains a NextToken value that you can use in a subsequent call to
9503
+ # ListDomainUnitsForParent to list the next set of domain units.
9504
+ # @return [Integer]
9505
+ #
9506
+ # @!attribute [rw] next_token
9507
+ # When the number of domain units is greater than the default value
9508
+ # for the MaxResults parameter, or if you explicitly specify a value
9509
+ # for MaxResults that is less than the number of domain units, the
9510
+ # response includes a pagination token named NextToken. You can
9511
+ # specify this NextToken value in a subsequent call to
9512
+ # ListDomainUnitsForParent to list the next set of domain units.
9513
+ # @return [String]
9514
+ #
9515
+ # @!attribute [rw] parent_domain_unit_identifier
9516
+ # The ID of the parent domain unit.
9517
+ # @return [String]
9518
+ #
9519
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListDomainUnitsForParentInput AWS API Documentation
9520
+ #
9521
+ class ListDomainUnitsForParentInput < Struct.new(
9522
+ :domain_identifier,
9523
+ :max_results,
9524
+ :next_token,
9525
+ :parent_domain_unit_identifier)
9526
+ SENSITIVE = []
9527
+ include Aws::Structure
9528
+ end
9529
+
9530
+ # @!attribute [rw] items
9531
+ # The results returned by this action.
9532
+ # @return [Array<Types::DomainUnitSummary>]
9533
+ #
9534
+ # @!attribute [rw] next_token
9535
+ # When the number of domain units is greater than the default value
9536
+ # for the MaxResults parameter, or if you explicitly specify a value
9537
+ # for MaxResults that is less than the number of domain units, the
9538
+ # response includes a pagination token named NextToken. You can
9539
+ # specify this NextToken value in a subsequent call to
9540
+ # ListDomainUnitsForParent to list the next set of domain units.
9541
+ # @return [String]
9542
+ #
9543
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListDomainUnitsForParentOutput AWS API Documentation
9544
+ #
9545
+ class ListDomainUnitsForParentOutput < Struct.new(
9546
+ :items,
9547
+ :next_token)
9548
+ SENSITIVE = []
9549
+ include Aws::Structure
9550
+ end
9551
+
8860
9552
  # @!attribute [rw] max_results
8861
9553
  # The maximum number of domains to return in a single call to
8862
9554
  # `ListDomains`. When the number of domains to be listed is greater
@@ -8910,6 +9602,69 @@ module Aws::DataZone
8910
9602
  include Aws::Structure
8911
9603
  end
8912
9604
 
9605
+ # @!attribute [rw] domain_identifier
9606
+ # The ID of the domain where you want to list entity owners.
9607
+ # @return [String]
9608
+ #
9609
+ # @!attribute [rw] entity_identifier
9610
+ # The ID of the entity that you want to list.
9611
+ # @return [String]
9612
+ #
9613
+ # @!attribute [rw] entity_type
9614
+ # The type of the entity that you want to list.
9615
+ # @return [String]
9616
+ #
9617
+ # @!attribute [rw] max_results
9618
+ # The maximum number of entities to return in a single call to
9619
+ # `ListEntityOwners`. When the number of entities to be listed is
9620
+ # greater than the value of `MaxResults`, the response contains a
9621
+ # `NextToken` value that you can use in a subsequent call to
9622
+ # `ListEntityOwners` to list the next set of entities.
9623
+ # @return [Integer]
9624
+ #
9625
+ # @!attribute [rw] next_token
9626
+ # When the number of entities is greater than the default value for
9627
+ # the `MaxResults` parameter, or if you explicitly specify a value for
9628
+ # `MaxResults` that is less than the number of entities, the response
9629
+ # includes a pagination token named `NextToken`. You can specify this
9630
+ # `NextToken` value in a subsequent call to `ListEntityOwners` to list
9631
+ # the next set of entities.
9632
+ # @return [String]
9633
+ #
9634
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListEntityOwnersInput AWS API Documentation
9635
+ #
9636
+ class ListEntityOwnersInput < Struct.new(
9637
+ :domain_identifier,
9638
+ :entity_identifier,
9639
+ :entity_type,
9640
+ :max_results,
9641
+ :next_token)
9642
+ SENSITIVE = []
9643
+ include Aws::Structure
9644
+ end
9645
+
9646
+ # @!attribute [rw] next_token
9647
+ # When the number of entities is greater than the default value for
9648
+ # the `MaxResults` parameter, or if you explicitly specify a value for
9649
+ # `MaxResults` that is less than the number of entities, the response
9650
+ # includes a pagination token named `NextToken`. You can specify this
9651
+ # `NextToken` value in a subsequent call to `ListEntityOwners` to list
9652
+ # the next set of entities.
9653
+ # @return [String]
9654
+ #
9655
+ # @!attribute [rw] owners
9656
+ # The owners of the entity.
9657
+ # @return [Array<Types::OwnerPropertiesOutput>]
9658
+ #
9659
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListEntityOwnersOutput AWS API Documentation
9660
+ #
9661
+ class ListEntityOwnersOutput < Struct.new(
9662
+ :next_token,
9663
+ :owners)
9664
+ SENSITIVE = []
9665
+ include Aws::Structure
9666
+ end
9667
+
8913
9668
  # @!attribute [rw] domain_identifier
8914
9669
  # The ID of the Amazon DataZone domain in which the environment
8915
9670
  # actions are listed.
@@ -9501,20 +10256,88 @@ module Aws::DataZone
9501
10256
  end
9502
10257
 
9503
10258
  # @!attribute [rw] domain_identifier
9504
- # The identifier of the Amazon DataZone domain in which you want to
9505
- # list project memberships.
10259
+ # The ID of the domain where you want to list policy grants.
10260
+ # @return [String]
10261
+ #
10262
+ # @!attribute [rw] entity_identifier
10263
+ # The ID of the entity for which you want to list policy grants.
10264
+ # @return [String]
10265
+ #
10266
+ # @!attribute [rw] entity_type
10267
+ # The type of entity for which you want to list policy grants.
9506
10268
  # @return [String]
9507
10269
  #
9508
10270
  # @!attribute [rw] max_results
9509
- # The maximum number of memberships to return in a single call to
9510
- # `ListProjectMemberships`. When the number of memberships to be
9511
- # listed is greater than the value of `MaxResults`, the response
9512
- # contains a `NextToken` value that you can use in a subsequent call
9513
- # to `ListProjectMemberships` to list the next set of memberships.
10271
+ # The maximum number of grants to return in a single call to
10272
+ # `ListPolicyGrants`. When the number of grants to be listed is
10273
+ # greater than the value of `MaxResults`, the response contains a
10274
+ # `NextToken` value that you can use in a subsequent call to
10275
+ # `ListPolicyGrants` to list the next set of grants.
9514
10276
  # @return [Integer]
9515
10277
  #
9516
10278
  # @!attribute [rw] next_token
9517
- # When the number of memberships is greater than the default value for
10279
+ # When the number of grants is greater than the default value for the
10280
+ # `MaxResults` parameter, or if you explicitly specify a value for
10281
+ # `MaxResults` that is less than the number of grants, the response
10282
+ # includes a pagination token named `NextToken`. You can specify this
10283
+ # `NextToken` value in a subsequent call to `ListPolicyGrants` to list
10284
+ # the next set of grants.
10285
+ # @return [String]
10286
+ #
10287
+ # @!attribute [rw] policy_type
10288
+ # The type of policy that you want to list.
10289
+ # @return [String]
10290
+ #
10291
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListPolicyGrantsInput AWS API Documentation
10292
+ #
10293
+ class ListPolicyGrantsInput < Struct.new(
10294
+ :domain_identifier,
10295
+ :entity_identifier,
10296
+ :entity_type,
10297
+ :max_results,
10298
+ :next_token,
10299
+ :policy_type)
10300
+ SENSITIVE = []
10301
+ include Aws::Structure
10302
+ end
10303
+
10304
+ # @!attribute [rw] grant_list
10305
+ # The results of this action - the listed grants.
10306
+ # @return [Array<Types::PolicyGrantMember>]
10307
+ #
10308
+ # @!attribute [rw] next_token
10309
+ # When the number of grants is greater than the default value for the
10310
+ # `MaxResults` parameter, or if you explicitly specify a value for
10311
+ # `MaxResults` that is less than the number of grants, the response
10312
+ # includes a pagination token named `NextToken`. You can specify this
10313
+ # `NextToken` value in a subsequent call to `ListPolicyGrants` to list
10314
+ # the next set of grants.
10315
+ # @return [String]
10316
+ #
10317
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListPolicyGrantsOutput AWS API Documentation
10318
+ #
10319
+ class ListPolicyGrantsOutput < Struct.new(
10320
+ :grant_list,
10321
+ :next_token)
10322
+ SENSITIVE = []
10323
+ include Aws::Structure
10324
+ end
10325
+
10326
+ # @!attribute [rw] domain_identifier
10327
+ # The identifier of the Amazon DataZone domain in which you want to
10328
+ # list project memberships.
10329
+ # @return [String]
10330
+ #
10331
+ # @!attribute [rw] max_results
10332
+ # The maximum number of memberships to return in a single call to
10333
+ # `ListProjectMemberships`. When the number of memberships to be
10334
+ # listed is greater than the value of `MaxResults`, the response
10335
+ # contains a `NextToken` value that you can use in a subsequent call
10336
+ # to `ListProjectMemberships` to list the next set of memberships.
10337
+ # @return [Integer]
10338
+ #
10339
+ # @!attribute [rw] next_token
10340
+ # When the number of memberships is greater than the default value for
9518
10341
  # the `MaxResults` parameter, or if you explicitly specify a value for
9519
10342
  # `MaxResults` that is less than the number of memberships, the
9520
10343
  # response includes a pagination token named `NextToken`. You can
@@ -10511,6 +11334,299 @@ module Aws::DataZone
10511
11334
  include Aws::Structure
10512
11335
  end
10513
11336
 
11337
+ # The grant details of the override domain unit owners policy.
11338
+ #
11339
+ # @!attribute [rw] include_child_domain_units
11340
+ # Specifies whether the policy is inherited by child domain units.
11341
+ # @return [Boolean]
11342
+ #
11343
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OverrideDomainUnitOwnersPolicyGrantDetail AWS API Documentation
11344
+ #
11345
+ class OverrideDomainUnitOwnersPolicyGrantDetail < Struct.new(
11346
+ :include_child_domain_units)
11347
+ SENSITIVE = []
11348
+ include Aws::Structure
11349
+ end
11350
+
11351
+ # The details of the override project owners policy grant.
11352
+ #
11353
+ # @!attribute [rw] include_child_domain_units
11354
+ # Specifies whether the policy is inherited by child domain units.
11355
+ # @return [Boolean]
11356
+ #
11357
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OverrideProjectOwnersPolicyGrantDetail AWS API Documentation
11358
+ #
11359
+ class OverrideProjectOwnersPolicyGrantDetail < Struct.new(
11360
+ :include_child_domain_units)
11361
+ SENSITIVE = []
11362
+ include Aws::Structure
11363
+ end
11364
+
11365
+ # The properties of the domain unit owners group.
11366
+ #
11367
+ # @!attribute [rw] group_identifier
11368
+ # The ID of the domain unit owners group.
11369
+ # @return [String]
11370
+ #
11371
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OwnerGroupProperties AWS API Documentation
11372
+ #
11373
+ class OwnerGroupProperties < Struct.new(
11374
+ :group_identifier)
11375
+ SENSITIVE = []
11376
+ include Aws::Structure
11377
+ end
11378
+
11379
+ # The properties of the domain unit owners group.
11380
+ #
11381
+ # @!attribute [rw] group_id
11382
+ # The ID of the domain unit owners group.
11383
+ # @return [String]
11384
+ #
11385
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OwnerGroupPropertiesOutput AWS API Documentation
11386
+ #
11387
+ class OwnerGroupPropertiesOutput < Struct.new(
11388
+ :group_id)
11389
+ SENSITIVE = []
11390
+ include Aws::Structure
11391
+ end
11392
+
11393
+ # The properties of a domain unit's owner.
11394
+ #
11395
+ # @note OwnerProperties is a union - when making an API calls you must set exactly one of the members.
11396
+ #
11397
+ # @!attribute [rw] group
11398
+ # Specifies that the domain unit owner is a group.
11399
+ # @return [Types::OwnerGroupProperties]
11400
+ #
11401
+ # @!attribute [rw] user
11402
+ # Specifies that the domain unit owner is a user.
11403
+ # @return [Types::OwnerUserProperties]
11404
+ #
11405
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OwnerProperties AWS API Documentation
11406
+ #
11407
+ class OwnerProperties < Struct.new(
11408
+ :group,
11409
+ :user,
11410
+ :unknown)
11411
+ SENSITIVE = []
11412
+ include Aws::Structure
11413
+ include Aws::Structure::Union
11414
+
11415
+ class Group < OwnerProperties; end
11416
+ class User < OwnerProperties; end
11417
+ class Unknown < OwnerProperties; end
11418
+ end
11419
+
11420
+ # The ID of the domain unit owners group.
11421
+ #
11422
+ # @note OwnerPropertiesOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OwnerPropertiesOutput corresponding to the set member.
11423
+ #
11424
+ # @!attribute [rw] group
11425
+ # Specifies that the domain unit owner is a group.
11426
+ # @return [Types::OwnerGroupPropertiesOutput]
11427
+ #
11428
+ # @!attribute [rw] user
11429
+ # Specifies that the domain unit owner is a user.
11430
+ # @return [Types::OwnerUserPropertiesOutput]
11431
+ #
11432
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OwnerPropertiesOutput AWS API Documentation
11433
+ #
11434
+ class OwnerPropertiesOutput < Struct.new(
11435
+ :group,
11436
+ :user,
11437
+ :unknown)
11438
+ SENSITIVE = []
11439
+ include Aws::Structure
11440
+ include Aws::Structure::Union
11441
+
11442
+ class Group < OwnerPropertiesOutput; end
11443
+ class User < OwnerPropertiesOutput; end
11444
+ class Unknown < OwnerPropertiesOutput; end
11445
+ end
11446
+
11447
+ # The properties of the owner user.
11448
+ #
11449
+ # @!attribute [rw] user_identifier
11450
+ # The ID of the owner user.
11451
+ # @return [String]
11452
+ #
11453
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OwnerUserProperties AWS API Documentation
11454
+ #
11455
+ class OwnerUserProperties < Struct.new(
11456
+ :user_identifier)
11457
+ SENSITIVE = []
11458
+ include Aws::Structure
11459
+ end
11460
+
11461
+ # The properties of the owner user.
11462
+ #
11463
+ # @!attribute [rw] user_id
11464
+ # The ID of the owner user.
11465
+ # @return [String]
11466
+ #
11467
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OwnerUserPropertiesOutput AWS API Documentation
11468
+ #
11469
+ class OwnerUserPropertiesOutput < Struct.new(
11470
+ :user_id)
11471
+ SENSITIVE = []
11472
+ include Aws::Structure
11473
+ end
11474
+
11475
+ # The details of the policy grant.
11476
+ #
11477
+ # @note PolicyGrantDetail is a union - when making an API calls you must set exactly one of the members.
11478
+ #
11479
+ # @note PolicyGrantDetail is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PolicyGrantDetail corresponding to the set member.
11480
+ #
11481
+ # @!attribute [rw] add_to_project_member_pool
11482
+ # Specifies that the policy grant is to be added to the members of the
11483
+ # project.
11484
+ # @return [Types::AddToProjectMemberPoolPolicyGrantDetail]
11485
+ #
11486
+ # @!attribute [rw] create_asset_type
11487
+ # Specifies that this is a create asset type policy.
11488
+ # @return [Types::CreateAssetTypePolicyGrantDetail]
11489
+ #
11490
+ # @!attribute [rw] create_domain_unit
11491
+ # Specifies that this is a create domain unit policy.
11492
+ # @return [Types::CreateDomainUnitPolicyGrantDetail]
11493
+ #
11494
+ # @!attribute [rw] create_environment
11495
+ # Specifies that this is a create environment policy.
11496
+ # @return [Types::Unit]
11497
+ #
11498
+ # @!attribute [rw] create_environment_profile
11499
+ # Specifies that this is a create environment profile policy.
11500
+ # @return [Types::CreateEnvironmentProfilePolicyGrantDetail]
11501
+ #
11502
+ # @!attribute [rw] create_form_type
11503
+ # Specifies that this is a create form type policy.
11504
+ # @return [Types::CreateFormTypePolicyGrantDetail]
11505
+ #
11506
+ # @!attribute [rw] create_glossary
11507
+ # Specifies that this is a create glossary policy.
11508
+ # @return [Types::CreateGlossaryPolicyGrantDetail]
11509
+ #
11510
+ # @!attribute [rw] create_project
11511
+ # Specifies that this is a create project policy.
11512
+ # @return [Types::CreateProjectPolicyGrantDetail]
11513
+ #
11514
+ # @!attribute [rw] delegate_create_environment_profile
11515
+ # Specifies that this is the delegation of the create environment
11516
+ # profile policy.
11517
+ # @return [Types::Unit]
11518
+ #
11519
+ # @!attribute [rw] override_domain_unit_owners
11520
+ # Specifies whether to override domain unit owners.
11521
+ # @return [Types::OverrideDomainUnitOwnersPolicyGrantDetail]
11522
+ #
11523
+ # @!attribute [rw] override_project_owners
11524
+ # Specifies whether to override project owners.
11525
+ # @return [Types::OverrideProjectOwnersPolicyGrantDetail]
11526
+ #
11527
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PolicyGrantDetail AWS API Documentation
11528
+ #
11529
+ class PolicyGrantDetail < Struct.new(
11530
+ :add_to_project_member_pool,
11531
+ :create_asset_type,
11532
+ :create_domain_unit,
11533
+ :create_environment,
11534
+ :create_environment_profile,
11535
+ :create_form_type,
11536
+ :create_glossary,
11537
+ :create_project,
11538
+ :delegate_create_environment_profile,
11539
+ :override_domain_unit_owners,
11540
+ :override_project_owners,
11541
+ :unknown)
11542
+ SENSITIVE = []
11543
+ include Aws::Structure
11544
+ include Aws::Structure::Union
11545
+
11546
+ class AddToProjectMemberPool < PolicyGrantDetail; end
11547
+ class CreateAssetType < PolicyGrantDetail; end
11548
+ class CreateDomainUnit < PolicyGrantDetail; end
11549
+ class CreateEnvironment < PolicyGrantDetail; end
11550
+ class CreateEnvironmentProfile < PolicyGrantDetail; end
11551
+ class CreateFormType < PolicyGrantDetail; end
11552
+ class CreateGlossary < PolicyGrantDetail; end
11553
+ class CreateProject < PolicyGrantDetail; end
11554
+ class DelegateCreateEnvironmentProfile < PolicyGrantDetail; end
11555
+ class OverrideDomainUnitOwners < PolicyGrantDetail; end
11556
+ class OverrideProjectOwners < PolicyGrantDetail; end
11557
+ class Unknown < PolicyGrantDetail; end
11558
+ end
11559
+
11560
+ # A member of the policy grant list.
11561
+ #
11562
+ # @!attribute [rw] created_at
11563
+ # Specifies the timestamp at which policy grant member was created.
11564
+ # @return [Time]
11565
+ #
11566
+ # @!attribute [rw] created_by
11567
+ # Specifies the user who created the policy grant member.
11568
+ # @return [String]
11569
+ #
11570
+ # @!attribute [rw] detail
11571
+ # The details of the policy grant member.
11572
+ # @return [Types::PolicyGrantDetail]
11573
+ #
11574
+ # @!attribute [rw] principal
11575
+ # The principal of the policy grant member.
11576
+ # @return [Types::PolicyGrantPrincipal]
11577
+ #
11578
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PolicyGrantMember AWS API Documentation
11579
+ #
11580
+ class PolicyGrantMember < Struct.new(
11581
+ :created_at,
11582
+ :created_by,
11583
+ :detail,
11584
+ :principal)
11585
+ SENSITIVE = []
11586
+ include Aws::Structure
11587
+ end
11588
+
11589
+ # The policy grant principal.
11590
+ #
11591
+ # @note PolicyGrantPrincipal is a union - when making an API calls you must set exactly one of the members.
11592
+ #
11593
+ # @note PolicyGrantPrincipal is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PolicyGrantPrincipal corresponding to the set member.
11594
+ #
11595
+ # @!attribute [rw] domain_unit
11596
+ # The domain unit of the policy grant principal.
11597
+ # @return [Types::DomainUnitPolicyGrantPrincipal]
11598
+ #
11599
+ # @!attribute [rw] group
11600
+ # The group of the policy grant principal.
11601
+ # @return [Types::GroupPolicyGrantPrincipal]
11602
+ #
11603
+ # @!attribute [rw] project
11604
+ # The project of the policy grant principal.
11605
+ # @return [Types::ProjectPolicyGrantPrincipal]
11606
+ #
11607
+ # @!attribute [rw] user
11608
+ # The user of the policy grant principal.
11609
+ # @return [Types::UserPolicyGrantPrincipal]
11610
+ #
11611
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PolicyGrantPrincipal AWS API Documentation
11612
+ #
11613
+ class PolicyGrantPrincipal < Struct.new(
11614
+ :domain_unit,
11615
+ :group,
11616
+ :project,
11617
+ :user,
11618
+ :unknown)
11619
+ SENSITIVE = []
11620
+ include Aws::Structure
11621
+ include Aws::Structure::Union
11622
+
11623
+ class DomainUnit < PolicyGrantPrincipal; end
11624
+ class Group < PolicyGrantPrincipal; end
11625
+ class Project < PolicyGrantPrincipal; end
11626
+ class User < PolicyGrantPrincipal; end
11627
+ class Unknown < PolicyGrantPrincipal; end
11628
+ end
11629
+
10514
11630
  # @!attribute [rw] client_token
10515
11631
  # A unique, case-sensitive identifier that is provided to ensure the
10516
11632
  # idempotency of the request.
@@ -10643,6 +11759,29 @@ module Aws::DataZone
10643
11759
  include Aws::Structure
10644
11760
  end
10645
11761
 
11762
+ # The project grant filter.
11763
+ #
11764
+ # @note ProjectGrantFilter is a union - when making an API calls you must set exactly one of the members.
11765
+ #
11766
+ # @note ProjectGrantFilter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProjectGrantFilter corresponding to the set member.
11767
+ #
11768
+ # @!attribute [rw] domain_unit_filter
11769
+ # The domain unit filter of the project grant filter.
11770
+ # @return [Types::DomainUnitFilterForProject]
11771
+ #
11772
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ProjectGrantFilter AWS API Documentation
11773
+ #
11774
+ class ProjectGrantFilter < Struct.new(
11775
+ :domain_unit_filter,
11776
+ :unknown)
11777
+ SENSITIVE = []
11778
+ include Aws::Structure
11779
+ include Aws::Structure::Union
11780
+
11781
+ class DomainUnitFilter < ProjectGrantFilter; end
11782
+ class Unknown < ProjectGrantFilter; end
11783
+ end
11784
+
10646
11785
  # The details of a project member.
10647
11786
  #
10648
11787
  # @!attribute [rw] designation
@@ -10662,6 +11801,30 @@ module Aws::DataZone
10662
11801
  include Aws::Structure
10663
11802
  end
10664
11803
 
11804
+ # The project policy grant principal.
11805
+ #
11806
+ # @!attribute [rw] project_designation
11807
+ # The project designation of the project policy grant principal.
11808
+ # @return [String]
11809
+ #
11810
+ # @!attribute [rw] project_grant_filter
11811
+ # The project grant filter of the project policy grant principal.
11812
+ # @return [Types::ProjectGrantFilter]
11813
+ #
11814
+ # @!attribute [rw] project_identifier
11815
+ # The project ID of the project policy grant principal.
11816
+ # @return [String]
11817
+ #
11818
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ProjectPolicyGrantPrincipal AWS API Documentation
11819
+ #
11820
+ class ProjectPolicyGrantPrincipal < Struct.new(
11821
+ :project_designation,
11822
+ :project_grant_filter,
11823
+ :project_identifier)
11824
+ SENSITIVE = []
11825
+ include Aws::Structure
11826
+ end
11827
+
10665
11828
  # The details of a Amazon DataZone project.
10666
11829
  #
10667
11830
  # @!attribute [rw] created_at
@@ -10680,6 +11843,10 @@ module Aws::DataZone
10680
11843
  # The identifier of a Amazon DataZone domain where the project exists.
10681
11844
  # @return [String]
10682
11845
  #
11846
+ # @!attribute [rw] domain_unit_id
11847
+ # The ID of the domain unit.
11848
+ # @return [String]
11849
+ #
10683
11850
  # @!attribute [rw] failure_reasons
10684
11851
  # Specifies the error message that is returned if the operation cannot
10685
11852
  # be successfully completed.
@@ -10708,6 +11875,7 @@ module Aws::DataZone
10708
11875
  :created_by,
10709
11876
  :description,
10710
11877
  :domain_id,
11878
+ :domain_unit_id,
10711
11879
  :failure_reasons,
10712
11880
  :id,
10713
11881
  :name,
@@ -11267,6 +12435,92 @@ module Aws::DataZone
11267
12435
  include Aws::Structure
11268
12436
  end
11269
12437
 
12438
+ # @!attribute [rw] client_token
12439
+ # A unique, case-sensitive identifier that is provided to ensure the
12440
+ # idempotency of the request.
12441
+ #
12442
+ # **A suitable default value is auto-generated.** You should normally
12443
+ # not need to pass this option.
12444
+ # @return [String]
12445
+ #
12446
+ # @!attribute [rw] domain_identifier
12447
+ # The ID of the domain where you want to remove an owner from an
12448
+ # entity.
12449
+ # @return [String]
12450
+ #
12451
+ # @!attribute [rw] entity_identifier
12452
+ # The ID of the entity from which you want to remove an owner.
12453
+ # @return [String]
12454
+ #
12455
+ # @!attribute [rw] entity_type
12456
+ # The type of the entity from which you want to remove an owner.
12457
+ # @return [String]
12458
+ #
12459
+ # @!attribute [rw] owner
12460
+ # The owner that you want to remove from an entity.
12461
+ # @return [Types::OwnerProperties]
12462
+ #
12463
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RemoveEntityOwnerInput AWS API Documentation
12464
+ #
12465
+ class RemoveEntityOwnerInput < Struct.new(
12466
+ :client_token,
12467
+ :domain_identifier,
12468
+ :entity_identifier,
12469
+ :entity_type,
12470
+ :owner)
12471
+ SENSITIVE = []
12472
+ include Aws::Structure
12473
+ end
12474
+
12475
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RemoveEntityOwnerOutput AWS API Documentation
12476
+ #
12477
+ class RemoveEntityOwnerOutput < Aws::EmptyStructure; end
12478
+
12479
+ # @!attribute [rw] client_token
12480
+ # A unique, case-sensitive identifier that is provided to ensure the
12481
+ # idempotency of the request.
12482
+ #
12483
+ # **A suitable default value is auto-generated.** You should normally
12484
+ # not need to pass this option.
12485
+ # @return [String]
12486
+ #
12487
+ # @!attribute [rw] domain_identifier
12488
+ # The ID of the domain where you want to remove a policy grant.
12489
+ # @return [String]
12490
+ #
12491
+ # @!attribute [rw] entity_identifier
12492
+ # The ID of the entity from which you want to remove a policy grant.
12493
+ # @return [String]
12494
+ #
12495
+ # @!attribute [rw] entity_type
12496
+ # The type of the entity from which you want to remove a policy grant.
12497
+ # @return [String]
12498
+ #
12499
+ # @!attribute [rw] policy_type
12500
+ # The type of the policy that you want to remove.
12501
+ # @return [String]
12502
+ #
12503
+ # @!attribute [rw] principal
12504
+ # The principal from which you want to remove a policy grant.
12505
+ # @return [Types::PolicyGrantPrincipal]
12506
+ #
12507
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RemovePolicyGrantInput AWS API Documentation
12508
+ #
12509
+ class RemovePolicyGrantInput < Struct.new(
12510
+ :client_token,
12511
+ :domain_identifier,
12512
+ :entity_identifier,
12513
+ :entity_type,
12514
+ :policy_type,
12515
+ :principal)
12516
+ SENSITIVE = []
12517
+ include Aws::Structure
12518
+ end
12519
+
12520
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RemovePolicyGrantOutput AWS API Documentation
12521
+ #
12522
+ class RemovePolicyGrantOutput < Aws::EmptyStructure; end
12523
+
11270
12524
  # The details of a provisioned resource of this Amazon DataZone
11271
12525
  # environment.
11272
12526
  #
@@ -12436,6 +13690,10 @@ module Aws::DataZone
12436
13690
  # created.
12437
13691
  # @return [String]
12438
13692
  #
13693
+ # @!attribute [rw] asset_scope
13694
+ # The asset scope of the subscribed asset.
13695
+ # @return [Types::AssetScope]
13696
+ #
12439
13697
  # @!attribute [rw] failure_cause
12440
13698
  # The failure cause included in the details of the asset for which the
12441
13699
  # subscription grant is created.
@@ -12465,6 +13723,7 @@ module Aws::DataZone
12465
13723
  class SubscribedAsset < Struct.new(
12466
13724
  :asset_id,
12467
13725
  :asset_revision,
13726
+ :asset_scope,
12468
13727
  :failure_cause,
12469
13728
  :failure_timestamp,
12470
13729
  :granted_timestamp,
@@ -12477,6 +13736,10 @@ module Aws::DataZone
12477
13736
  # The details of the published asset for which the subscription grant is
12478
13737
  # created.
12479
13738
  #
13739
+ # @!attribute [rw] asset_scope
13740
+ # The asset scope of the subscribed asset listing.
13741
+ # @return [Types::AssetScope]
13742
+ #
12480
13743
  # @!attribute [rw] entity_id
12481
13744
  # The identifier of the published asset for which the subscription
12482
13745
  # grant is created.
@@ -12505,6 +13768,7 @@ module Aws::DataZone
12505
13768
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedAssetListing AWS API Documentation
12506
13769
  #
12507
13770
  class SubscribedAssetListing < Struct.new(
13771
+ :asset_scope,
12508
13772
  :entity_id,
12509
13773
  :entity_revision,
12510
13774
  :entity_type,
@@ -13229,6 +14493,14 @@ module Aws::DataZone
13229
14493
  include Aws::Structure
13230
14494
  end
13231
14495
 
14496
+ # The details of the policy of creating an environment.
14497
+ #
14498
+ # @api private
14499
+ #
14500
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/Unit AWS API Documentation
14501
+ #
14502
+ class Unit < Aws::EmptyStructure; end
14503
+
13232
14504
  # @!attribute [rw] resource_arn
13233
14505
  # The ARN of the resource to be untagged in Amazon DataZone.
13234
14506
  # @return [String]
@@ -13610,6 +14882,10 @@ module Aws::DataZone
13610
14882
  # The name to be updated as part of the `UpdateDomain` action.
13611
14883
  # @return [String]
13612
14884
  #
14885
+ # @!attribute [rw] root_domain_unit_id
14886
+ # The ID of the root domain unit.
14887
+ # @return [String]
14888
+ #
13613
14889
  # @!attribute [rw] single_sign_on
13614
14890
  # The single sign-on option of the Amazon DataZone domain.
13615
14891
  # @return [Types::SingleSignOn]
@@ -13622,11 +14898,97 @@ module Aws::DataZone
13622
14898
  :id,
13623
14899
  :last_updated_at,
13624
14900
  :name,
14901
+ :root_domain_unit_id,
13625
14902
  :single_sign_on)
13626
14903
  SENSITIVE = []
13627
14904
  include Aws::Structure
13628
14905
  end
13629
14906
 
14907
+ # @!attribute [rw] description
14908
+ # The description of the domain unit that you want to update.
14909
+ # @return [String]
14910
+ #
14911
+ # @!attribute [rw] domain_identifier
14912
+ # The ID of the domain where you want to update a domain unit.
14913
+ # @return [String]
14914
+ #
14915
+ # @!attribute [rw] identifier
14916
+ # The ID of the domain unit that you want to update.
14917
+ # @return [String]
14918
+ #
14919
+ # @!attribute [rw] name
14920
+ # The name of the domain unit that you want to update.
14921
+ # @return [String]
14922
+ #
14923
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateDomainUnitInput AWS API Documentation
14924
+ #
14925
+ class UpdateDomainUnitInput < Struct.new(
14926
+ :description,
14927
+ :domain_identifier,
14928
+ :identifier,
14929
+ :name)
14930
+ SENSITIVE = [:description, :name]
14931
+ include Aws::Structure
14932
+ end
14933
+
14934
+ # @!attribute [rw] created_at
14935
+ # The time stamp at which the domain unit that you want to update was
14936
+ # created.
14937
+ # @return [Time]
14938
+ #
14939
+ # @!attribute [rw] created_by
14940
+ # The user who created the domain unit that you want to update.
14941
+ # @return [String]
14942
+ #
14943
+ # @!attribute [rw] description
14944
+ # The description of the domain unit that you want to update.
14945
+ # @return [String]
14946
+ #
14947
+ # @!attribute [rw] domain_id
14948
+ # The ID of the domain where you want to update the domain unit.
14949
+ # @return [String]
14950
+ #
14951
+ # @!attribute [rw] id
14952
+ # The ID of the domain unit that you want to update.
14953
+ # @return [String]
14954
+ #
14955
+ # @!attribute [rw] last_updated_at
14956
+ # The timestamp at which the domain unit was last updated.
14957
+ # @return [Time]
14958
+ #
14959
+ # @!attribute [rw] last_updated_by
14960
+ # The user who last updated the domain unit.
14961
+ # @return [String]
14962
+ #
14963
+ # @!attribute [rw] name
14964
+ # The name of the domain unit that you want to update.
14965
+ # @return [String]
14966
+ #
14967
+ # @!attribute [rw] owners
14968
+ # The owners of the domain unit that you want to update.
14969
+ # @return [Array<Types::DomainUnitOwnerProperties>]
14970
+ #
14971
+ # @!attribute [rw] parent_domain_unit_id
14972
+ # The ID of the parent domain unit.
14973
+ # @return [String]
14974
+ #
14975
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateDomainUnitOutput AWS API Documentation
14976
+ #
14977
+ class UpdateDomainUnitOutput < Struct.new(
14978
+ :created_at,
14979
+ :created_by,
14980
+ :description,
14981
+ :domain_id,
14982
+ :id,
14983
+ :last_updated_at,
14984
+ :last_updated_by,
14985
+ :name,
14986
+ :owners,
14987
+ :parent_domain_unit_id)
14988
+ SENSITIVE = [:description, :name]
14989
+ include Aws::Structure
14990
+ end
14991
+
13630
14992
  # @!attribute [rw] description
13631
14993
  # The description of the environment action.
13632
14994
  # @return [String]
@@ -14223,8 +15585,8 @@ module Aws::DataZone
14223
15585
  # @return [String]
14224
15586
  #
14225
15587
  # @!attribute [rw] domain_identifier
14226
- # The identifier of the Amazon DataZone domain in which a project is
14227
- # to be updated.
15588
+ # The ID of the Amazon DataZone domain where a project is being
15589
+ # updated.
14228
15590
  # @return [String]
14229
15591
  #
14230
15592
  # @!attribute [rw] glossary_terms
@@ -14269,6 +15631,10 @@ module Aws::DataZone
14269
15631
  # updated.
14270
15632
  # @return [String]
14271
15633
  #
15634
+ # @!attribute [rw] domain_unit_id
15635
+ # The ID of the domain unit.
15636
+ # @return [String]
15637
+ #
14272
15638
  # @!attribute [rw] failure_reasons
14273
15639
  # Specifies the error message that is returned if the operation cannot
14274
15640
  # be successfully completed.
@@ -14301,6 +15667,7 @@ module Aws::DataZone
14301
15667
  :created_by,
14302
15668
  :description,
14303
15669
  :domain_id,
15670
+ :domain_unit_id,
14304
15671
  :failure_reasons,
14305
15672
  :glossary_terms,
14306
15673
  :id,
@@ -14742,6 +16109,35 @@ module Aws::DataZone
14742
16109
  include Aws::Structure
14743
16110
  end
14744
16111
 
16112
+ # The user policy grant principal.
16113
+ #
16114
+ # @note UserPolicyGrantPrincipal is a union - when making an API calls you must set exactly one of the members.
16115
+ #
16116
+ # @note UserPolicyGrantPrincipal is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of UserPolicyGrantPrincipal corresponding to the set member.
16117
+ #
16118
+ # @!attribute [rw] all_users_grant_filter
16119
+ # The all users grant filter of the user policy grant principal.
16120
+ # @return [Types::AllUsersGrantFilter]
16121
+ #
16122
+ # @!attribute [rw] user_identifier
16123
+ # The user ID of the user policy grant principal.
16124
+ # @return [String]
16125
+ #
16126
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UserPolicyGrantPrincipal AWS API Documentation
16127
+ #
16128
+ class UserPolicyGrantPrincipal < Struct.new(
16129
+ :all_users_grant_filter,
16130
+ :user_identifier,
16131
+ :unknown)
16132
+ SENSITIVE = []
16133
+ include Aws::Structure
16134
+ include Aws::Structure::Union
16135
+
16136
+ class AllUsersGrantFilter < UserPolicyGrantPrincipal; end
16137
+ class UserIdentifier < UserPolicyGrantPrincipal; end
16138
+ class Unknown < UserPolicyGrantPrincipal; end
16139
+ end
16140
+
14745
16141
  # The details of the user profile in Amazon DataZone.
14746
16142
  #
14747
16143
  # @note UserProfileDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of UserProfileDetails corresponding to the set member.