aws-sdk-datazone 1.58.0 → 1.60.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.
@@ -126,6 +126,10 @@ module Aws::DataZone
126
126
  include Aws::Structure
127
127
  end
128
128
 
129
+ # @!attribute [rw] asset_permissions
130
+ # The asset permissions of the accept subscription request.
131
+ # @return [Array<Types::AssetPermission>]
132
+ #
129
133
  # @!attribute [rw] asset_scopes
130
134
  # The asset scopes of the accept subscription request.
131
135
  # @return [Array<Types::AcceptedAssetScope>]
@@ -148,6 +152,7 @@ module Aws::DataZone
148
152
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AcceptSubscriptionRequestInput AWS API Documentation
149
153
  #
150
154
  class AcceptSubscriptionRequestInput < Struct.new(
155
+ :asset_permissions,
151
156
  :asset_scopes,
152
157
  :decision_comment,
153
158
  :domain_identifier,
@@ -1087,6 +1092,25 @@ module Aws::DataZone
1087
1092
  include Aws::Structure
1088
1093
  end
1089
1094
 
1095
+ # The asset permissions.
1096
+ #
1097
+ # @!attribute [rw] asset_id
1098
+ # The asset ID as part of the asset permissions.
1099
+ # @return [String]
1100
+ #
1101
+ # @!attribute [rw] permissions
1102
+ # The details as part of the asset permissions.
1103
+ # @return [Types::Permissions]
1104
+ #
1105
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssetPermission AWS API Documentation
1106
+ #
1107
+ class AssetPermission < Struct.new(
1108
+ :asset_id,
1109
+ :permissions)
1110
+ SENSITIVE = []
1111
+ include Aws::Structure
1112
+ end
1113
+
1090
1114
  # The revision of an inventory asset.
1091
1115
  #
1092
1116
  # @!attribute [rw] created_at
@@ -1364,6 +1388,49 @@ module Aws::DataZone
1364
1388
  include Aws::Structure
1365
1389
  end
1366
1390
 
1391
+ # The attribute error.
1392
+ #
1393
+ # @!attribute [rw] attribute_identifier
1394
+ # The attribute ID as part of the attribute error.
1395
+ # @return [String]
1396
+ #
1397
+ # @!attribute [rw] code
1398
+ # The code generated as part of the attribute error.
1399
+ # @return [String]
1400
+ #
1401
+ # @!attribute [rw] message
1402
+ # The message generated as part of the attribute error.
1403
+ # @return [String]
1404
+ #
1405
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AttributeError AWS API Documentation
1406
+ #
1407
+ class AttributeError < Struct.new(
1408
+ :attribute_identifier,
1409
+ :code,
1410
+ :message)
1411
+ SENSITIVE = []
1412
+ include Aws::Structure
1413
+ end
1414
+
1415
+ # The attribute input.
1416
+ #
1417
+ # @!attribute [rw] attribute_identifier
1418
+ # The ID of the attribute.
1419
+ # @return [String]
1420
+ #
1421
+ # @!attribute [rw] forms
1422
+ # The metadata forms as part of the attribute input.
1423
+ # @return [Array<Types::FormInput>]
1424
+ #
1425
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AttributeInput AWS API Documentation
1426
+ #
1427
+ class AttributeInput < Struct.new(
1428
+ :attribute_identifier,
1429
+ :forms)
1430
+ SENSITIVE = [:forms]
1431
+ include Aws::Structure
1432
+ end
1433
+
1367
1434
  # The authentication configuration of a connection.
1368
1435
  #
1369
1436
  # @!attribute [rw] authentication_type
@@ -1558,6 +1625,144 @@ module Aws::DataZone
1558
1625
  include Aws::Structure
1559
1626
  end
1560
1627
 
1628
+ # The results of the BatchGetAttribute action.
1629
+ #
1630
+ # @!attribute [rw] attribute_identifier
1631
+ # The attribute ID.
1632
+ # @return [String]
1633
+ #
1634
+ # @!attribute [rw] forms
1635
+ # The metadata forms that are part of the results of the
1636
+ # BatchGetAttribute action.
1637
+ # @return [Array<Types::FormOutput>]
1638
+ #
1639
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchGetAttributeOutput AWS API Documentation
1640
+ #
1641
+ class BatchGetAttributeOutput < Struct.new(
1642
+ :attribute_identifier,
1643
+ :forms)
1644
+ SENSITIVE = []
1645
+ include Aws::Structure
1646
+ end
1647
+
1648
+ # @!attribute [rw] attribute_identifiers
1649
+ # The attribute identifier.
1650
+ # @return [Array<String>]
1651
+ #
1652
+ # @!attribute [rw] domain_identifier
1653
+ # The domain ID where you want to get the attribute metadata.
1654
+ # @return [String]
1655
+ #
1656
+ # @!attribute [rw] entity_identifier
1657
+ # The entity ID for which you want to get attribute metadata.
1658
+ # @return [String]
1659
+ #
1660
+ # @!attribute [rw] entity_revision
1661
+ # The entity revision for which you want to get attribute metadata.
1662
+ # @return [String]
1663
+ #
1664
+ # @!attribute [rw] entity_type
1665
+ # The entity type for which you want to get attribute metadata.
1666
+ # @return [String]
1667
+ #
1668
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchGetAttributesMetadataInput AWS API Documentation
1669
+ #
1670
+ class BatchGetAttributesMetadataInput < Struct.new(
1671
+ :attribute_identifiers,
1672
+ :domain_identifier,
1673
+ :entity_identifier,
1674
+ :entity_revision,
1675
+ :entity_type)
1676
+ SENSITIVE = []
1677
+ include Aws::Structure
1678
+ end
1679
+
1680
+ # @!attribute [rw] attributes
1681
+ # The results of the BatchGetAttributesMetadata action.
1682
+ # @return [Array<Types::BatchGetAttributeOutput>]
1683
+ #
1684
+ # @!attribute [rw] errors
1685
+ # The errors generated when the BatchGetAttributesMetadata action is
1686
+ # invoked.
1687
+ # @return [Array<Types::AttributeError>]
1688
+ #
1689
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchGetAttributesMetadataOutput AWS API Documentation
1690
+ #
1691
+ class BatchGetAttributesMetadataOutput < Struct.new(
1692
+ :attributes,
1693
+ :errors)
1694
+ SENSITIVE = []
1695
+ include Aws::Structure
1696
+ end
1697
+
1698
+ # The results of the BatchPutAttribute action.
1699
+ #
1700
+ # @!attribute [rw] attribute_identifier
1701
+ # The attribute ID.
1702
+ # @return [String]
1703
+ #
1704
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchPutAttributeOutput AWS API Documentation
1705
+ #
1706
+ class BatchPutAttributeOutput < Struct.new(
1707
+ :attribute_identifier)
1708
+ SENSITIVE = []
1709
+ include Aws::Structure
1710
+ end
1711
+
1712
+ # @!attribute [rw] attributes
1713
+ # The attributes of the metadata.
1714
+ # @return [Array<Types::AttributeInput>]
1715
+ #
1716
+ # @!attribute [rw] client_token
1717
+ # A unique, case-sensitive identifier to ensure idempotency of the
1718
+ # request. This field is automatically populated if not provided.
1719
+ #
1720
+ # **A suitable default value is auto-generated.** You should normally
1721
+ # not need to pass this option.
1722
+ # @return [String]
1723
+ #
1724
+ # @!attribute [rw] domain_identifier
1725
+ # The domain ID where you want to write the attribute metadata.
1726
+ # @return [String]
1727
+ #
1728
+ # @!attribute [rw] entity_identifier
1729
+ # The entity ID for which you want to write the attribute metadata.
1730
+ # @return [String]
1731
+ #
1732
+ # @!attribute [rw] entity_type
1733
+ # The entity type for which you want to write the attribute metadata.
1734
+ # @return [String]
1735
+ #
1736
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchPutAttributesMetadataInput AWS API Documentation
1737
+ #
1738
+ class BatchPutAttributesMetadataInput < Struct.new(
1739
+ :attributes,
1740
+ :client_token,
1741
+ :domain_identifier,
1742
+ :entity_identifier,
1743
+ :entity_type)
1744
+ SENSITIVE = []
1745
+ include Aws::Structure
1746
+ end
1747
+
1748
+ # @!attribute [rw] attributes
1749
+ # The results of the BatchPutAttributeMetadata action.
1750
+ # @return [Array<Types::BatchPutAttributeOutput>]
1751
+ #
1752
+ # @!attribute [rw] errors
1753
+ # The errors generated when the BatchPutAttributeMetadata action is
1754
+ # invoked.
1755
+ # @return [Array<Types::AttributeError>]
1756
+ #
1757
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BatchPutAttributesMetadataOutput AWS API Documentation
1758
+ #
1759
+ class BatchPutAttributesMetadataOutput < Struct.new(
1760
+ :attributes,
1761
+ :errors)
1762
+ SENSITIVE = []
1763
+ include Aws::Structure
1764
+ end
1765
+
1561
1766
  # The configuration of the business name generation.
1562
1767
  #
1563
1768
  # @!attribute [rw] enabled
@@ -4994,6 +5199,10 @@ module Aws::DataZone
4994
5199
  # is created.
4995
5200
  # @return [String]
4996
5201
  #
5202
+ # @!attribute [rw] environment_id
5203
+ # The environment ID for which subscription grant is created.
5204
+ # @return [String]
5205
+ #
4997
5206
  # @!attribute [rw] granted_entity
4998
5207
  # The entity to which the subscription is granted.
4999
5208
  # @return [Types::GrantedEntity]
@@ -5030,6 +5239,7 @@ module Aws::DataZone
5030
5239
  :created_at,
5031
5240
  :created_by,
5032
5241
  :domain_id,
5242
+ :environment_id,
5033
5243
  :granted_entity,
5034
5244
  :id,
5035
5245
  :status,
@@ -5041,6 +5251,14 @@ module Aws::DataZone
5041
5251
  include Aws::Structure
5042
5252
  end
5043
5253
 
5254
+ # @!attribute [rw] asset_permissions
5255
+ # The asset permissions of the subscription request.
5256
+ # @return [Array<Types::AssetPermission>]
5257
+ #
5258
+ # @!attribute [rw] asset_scopes
5259
+ # The asset scopes of the subscription request.
5260
+ # @return [Array<Types::AcceptedAssetScope>]
5261
+ #
5044
5262
  # @!attribute [rw] client_token
5045
5263
  # A unique, case-sensitive identifier that is provided to ensure the
5046
5264
  # idempotency of the request.
@@ -5075,6 +5293,8 @@ module Aws::DataZone
5075
5293
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateSubscriptionRequestInput AWS API Documentation
5076
5294
  #
5077
5295
  class CreateSubscriptionRequestInput < Struct.new(
5296
+ :asset_permissions,
5297
+ :asset_scopes,
5078
5298
  :client_token,
5079
5299
  :domain_identifier,
5080
5300
  :metadata_forms,
@@ -5345,7 +5565,7 @@ module Aws::DataZone
5345
5565
  end
5346
5566
 
5347
5567
  # @!attribute [rw] details
5348
- # The details of the user profile in Amazon DataZone.
5568
+ # The user profile details.
5349
5569
  # @return [Types::UserProfileDetails]
5350
5570
  #
5351
5571
  # @!attribute [rw] domain_id
@@ -6730,6 +6950,11 @@ module Aws::DataZone
6730
6950
  # is deleted.
6731
6951
  # @return [String]
6732
6952
  #
6953
+ # @!attribute [rw] environment_id
6954
+ # The ID of the environment in which the subscription grant is
6955
+ # deleted.
6956
+ # @return [String]
6957
+ #
6733
6958
  # @!attribute [rw] granted_entity
6734
6959
  # The entity to which the subscription is deleted.
6735
6960
  # @return [Types::GrantedEntity]
@@ -6769,6 +6994,7 @@ module Aws::DataZone
6769
6994
  :created_at,
6770
6995
  :created_by,
6771
6996
  :domain_id,
6997
+ :environment_id,
6772
6998
  :granted_entity,
6773
6999
  :id,
6774
7000
  :status,
@@ -10600,6 +10826,10 @@ module Aws::DataZone
10600
10826
  # exists.
10601
10827
  # @return [String]
10602
10828
  #
10829
+ # @!attribute [rw] environment_id
10830
+ # The environment ID of the subscription grant.
10831
+ # @return [String]
10832
+ #
10603
10833
  # @!attribute [rw] granted_entity
10604
10834
  # The entity to which the subscription is granted.
10605
10835
  # @return [Types::GrantedEntity]
@@ -10635,6 +10865,7 @@ module Aws::DataZone
10635
10865
  :created_at,
10636
10866
  :created_by,
10637
10867
  :domain_id,
10868
+ :environment_id,
10638
10869
  :granted_entity,
10639
10870
  :id,
10640
10871
  :status,
@@ -11027,7 +11258,7 @@ module Aws::DataZone
11027
11258
  end
11028
11259
 
11029
11260
  # @!attribute [rw] details
11030
- # The details of the user profile in Amazon DataZone.
11261
+ # The user profile details.
11031
11262
  # @return [Types::UserProfileDetails]
11032
11263
  #
11033
11264
  # @!attribute [rw] domain_id
@@ -11143,6 +11374,20 @@ module Aws::DataZone
11143
11374
  include Aws::Structure
11144
11375
  end
11145
11376
 
11377
+ # The enforcement details of a glossary term.
11378
+ #
11379
+ # @!attribute [rw] required_glossary_term_ids
11380
+ # The ID of the required glossary term.
11381
+ # @return [Array<String>]
11382
+ #
11383
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlossaryTermEnforcementDetail AWS API Documentation
11384
+ #
11385
+ class GlossaryTermEnforcementDetail < Struct.new(
11386
+ :required_glossary_term_ids)
11387
+ SENSITIVE = []
11388
+ include Aws::Structure
11389
+ end
11390
+
11146
11391
  # The details of a business glossary term.
11147
11392
  #
11148
11393
  # @!attribute [rw] additional_attributes
@@ -11845,14 +12090,14 @@ module Aws::DataZone
11845
12090
  include Aws::Structure
11846
12091
  end
11847
12092
 
11848
- # The details of an IAM user profile in Amazon DataZone.
12093
+ # The details of the IAM user profile.
11849
12094
  #
11850
12095
  # @!attribute [rw] arn
11851
- # The ARN of an IAM user profile in Amazon DataZone.
12096
+ # The ARN of the IAM user.
11852
12097
  # @return [String]
11853
12098
  #
11854
12099
  # @!attribute [rw] principal_id
11855
- # Principal ID of the IAM user.
12100
+ # The principal ID as part of the IAM user profile details.
11856
12101
  # @return [String]
11857
12102
  #
11858
12103
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IamUserProfileDetails AWS API Documentation
@@ -14309,10 +14554,18 @@ module Aws::DataZone
14309
14554
  # grants.
14310
14555
  # @return [String]
14311
14556
  #
14557
+ # @!attribute [rw] owning_group_id
14558
+ # The ID of the owning group.
14559
+ # @return [String]
14560
+ #
14312
14561
  # @!attribute [rw] owning_project_id
14313
14562
  # The ID of the owning project of the subscription grants.
14314
14563
  # @return [String]
14315
14564
  #
14565
+ # @!attribute [rw] owning_user_id
14566
+ # The ID of the owning user.
14567
+ # @return [String]
14568
+ #
14316
14569
  # @!attribute [rw] sort_by
14317
14570
  # Specifies the way of sorting the results of this action.
14318
14571
  # @return [String]
@@ -14340,7 +14593,9 @@ module Aws::DataZone
14340
14593
  :environment_id,
14341
14594
  :max_results,
14342
14595
  :next_token,
14596
+ :owning_group_id,
14343
14597
  :owning_project_id,
14598
+ :owning_user_id,
14344
14599
  :sort_by,
14345
14600
  :sort_order,
14346
14601
  :subscribed_listing_id,
@@ -14400,10 +14655,18 @@ module Aws::DataZone
14400
14655
  # subscription requests.
14401
14656
  # @return [String]
14402
14657
  #
14658
+ # @!attribute [rw] owning_group_id
14659
+ # The ID of the owning group.
14660
+ # @return [String]
14661
+ #
14403
14662
  # @!attribute [rw] owning_project_id
14404
14663
  # The identifier of the project for the subscription requests.
14405
14664
  # @return [String]
14406
14665
  #
14666
+ # @!attribute [rw] owning_user_id
14667
+ # The ID of the owning user.
14668
+ # @return [String]
14669
+ #
14407
14670
  # @!attribute [rw] sort_by
14408
14671
  # Specifies the way to sort the results of this action.
14409
14672
  # @return [String]
@@ -14432,7 +14695,9 @@ module Aws::DataZone
14432
14695
  :domain_identifier,
14433
14696
  :max_results,
14434
14697
  :next_token,
14698
+ :owning_group_id,
14435
14699
  :owning_project_id,
14700
+ :owning_user_id,
14436
14701
  :sort_by,
14437
14702
  :sort_order,
14438
14703
  :status,
@@ -14563,10 +14828,18 @@ module Aws::DataZone
14563
14828
  # `ListSubscriptions` to list the next set of subscriptions.
14564
14829
  # @return [String]
14565
14830
  #
14831
+ # @!attribute [rw] owning_group_id
14832
+ # The ID of the owning group.
14833
+ # @return [String]
14834
+ #
14566
14835
  # @!attribute [rw] owning_project_id
14567
14836
  # The identifier of the owning project.
14568
14837
  # @return [String]
14569
14838
  #
14839
+ # @!attribute [rw] owning_user_id
14840
+ # The ID of the owning user.
14841
+ # @return [String]
14842
+ #
14570
14843
  # @!attribute [rw] sort_by
14571
14844
  # Specifies the way in which the results of this action are to be
14572
14845
  # sorted.
@@ -14602,7 +14875,9 @@ module Aws::DataZone
14602
14875
  :domain_identifier,
14603
14876
  :max_results,
14604
14877
  :next_token,
14878
+ :owning_group_id,
14605
14879
  :owning_project_id,
14880
+ :owning_user_id,
14606
14881
  :sort_by,
14607
14882
  :sort_order,
14608
14883
  :status,
@@ -15570,6 +15845,29 @@ module Aws::DataZone
15570
15845
  include Aws::Structure
15571
15846
  end
15572
15847
 
15848
+ # The asset permissions.
15849
+ #
15850
+ # @note Permissions is a union - when making an API calls you must set exactly one of the members.
15851
+ #
15852
+ # @note Permissions is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Permissions corresponding to the set member.
15853
+ #
15854
+ # @!attribute [rw] s3
15855
+ # The S3 details of the asset permissions.
15856
+ # @return [Array<String>]
15857
+ #
15858
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/Permissions AWS API Documentation
15859
+ #
15860
+ class Permissions < Struct.new(
15861
+ :s3,
15862
+ :unknown)
15863
+ SENSITIVE = []
15864
+ include Aws::Structure
15865
+ include Aws::Structure::Union
15866
+
15867
+ class S3 < Permissions; end
15868
+ class Unknown < Permissions; end
15869
+ end
15870
+
15573
15871
  # Physical connection requirements of a connection.
15574
15872
  #
15575
15873
  # @!attribute [rw] availability_zone
@@ -17445,6 +17743,11 @@ module Aws::DataZone
17445
17743
  #
17446
17744
  # @note RuleDetail is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RuleDetail corresponding to the set member.
17447
17745
  #
17746
+ # @!attribute [rw] glossary_term_enforcement_detail
17747
+ # The enforcement details of a glossary term that's part of the
17748
+ # metadata rule.
17749
+ # @return [Types::GlossaryTermEnforcementDetail]
17750
+ #
17448
17751
  # @!attribute [rw] metadata_form_enforcement_detail
17449
17752
  # The enforcement detail of the metadata form.
17450
17753
  # @return [Types::MetadataFormEnforcementDetail]
@@ -17452,12 +17755,14 @@ module Aws::DataZone
17452
17755
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RuleDetail AWS API Documentation
17453
17756
  #
17454
17757
  class RuleDetail < Struct.new(
17758
+ :glossary_term_enforcement_detail,
17455
17759
  :metadata_form_enforcement_detail,
17456
17760
  :unknown)
17457
17761
  SENSITIVE = []
17458
17762
  include Aws::Structure
17459
17763
  include Aws::Structure::Union
17460
17764
 
17765
+ class GlossaryTermEnforcementDetail < RuleDetail; end
17461
17766
  class MetadataFormEnforcementDetail < RuleDetail; end
17462
17767
  class Unknown < RuleDetail; end
17463
17768
  end
@@ -18665,21 +18970,18 @@ module Aws::DataZone
18665
18970
  include Aws::Structure
18666
18971
  end
18667
18972
 
18668
- # The single sign-on details of the user profile.
18973
+ # The SSO user profile detail.
18669
18974
  #
18670
18975
  # @!attribute [rw] first_name
18671
- # The first name included in the single sign-on details of the user
18672
- # profile.
18976
+ # The first name as part of the SSO user profile detail.
18673
18977
  # @return [String]
18674
18978
  #
18675
18979
  # @!attribute [rw] last_name
18676
- # The last name included in the single sign-on details of the user
18677
- # profile.
18980
+ # The last name as part of the SSO user profile detail.
18678
18981
  # @return [String]
18679
18982
  #
18680
18983
  # @!attribute [rw] username
18681
- # The username included in the single sign-on details of the user
18682
- # profile.
18984
+ # The username as part of the SSO user profile detail.
18683
18985
  # @return [String]
18684
18986
  #
18685
18987
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SsoUserProfileDetails AWS API Documentation
@@ -18906,6 +19208,10 @@ module Aws::DataZone
18906
19208
  # created.
18907
19209
  # @return [Time]
18908
19210
  #
19211
+ # @!attribute [rw] permissions
19212
+ # The asset permissions.
19213
+ # @return [Types::Permissions]
19214
+ #
18909
19215
  # @!attribute [rw] status
18910
19216
  # The status of the asset for which the subscription grant is created.
18911
19217
  # @return [String]
@@ -18924,6 +19230,7 @@ module Aws::DataZone
18924
19230
  :failure_cause,
18925
19231
  :failure_timestamp,
18926
19232
  :granted_timestamp,
19233
+ :permissions,
18927
19234
  :status,
18928
19235
  :target_name)
18929
19236
  SENSITIVE = []
@@ -18962,6 +19269,10 @@ module Aws::DataZone
18962
19269
  # subscription grant is created.
18963
19270
  # @return [Array<Types::DetailedGlossaryTerm>]
18964
19271
  #
19272
+ # @!attribute [rw] permissions
19273
+ # The asset permissions.
19274
+ # @return [Types::Permissions]
19275
+ #
18965
19276
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedAssetListing AWS API Documentation
18966
19277
  #
18967
19278
  class SubscribedAssetListing < Struct.new(
@@ -18970,7 +19281,41 @@ module Aws::DataZone
18970
19281
  :entity_revision,
18971
19282
  :entity_type,
18972
19283
  :forms,
18973
- :glossary_terms)
19284
+ :glossary_terms,
19285
+ :permissions)
19286
+ SENSITIVE = []
19287
+ include Aws::Structure
19288
+ end
19289
+
19290
+ # The group that subscribes to the asset.
19291
+ #
19292
+ # @!attribute [rw] id
19293
+ # The ID of the subscribed group.
19294
+ # @return [String]
19295
+ #
19296
+ # @!attribute [rw] name
19297
+ # The name of the subscribed group.
19298
+ # @return [String]
19299
+ #
19300
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedGroup AWS API Documentation
19301
+ #
19302
+ class SubscribedGroup < Struct.new(
19303
+ :id,
19304
+ :name)
19305
+ SENSITIVE = [:name]
19306
+ include Aws::Structure
19307
+ end
19308
+
19309
+ # The details of the subscribed group.
19310
+ #
19311
+ # @!attribute [rw] identifier
19312
+ # The ID of the subscribed group.
19313
+ # @return [String]
19314
+ #
19315
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedGroupInput AWS API Documentation
19316
+ #
19317
+ class SubscribedGroupInput < Struct.new(
19318
+ :identifier)
18974
19319
  SENSITIVE = []
18975
19320
  include Aws::Structure
18976
19321
  end
@@ -19072,20 +19417,32 @@ module Aws::DataZone
19072
19417
  #
19073
19418
  # @note SubscribedPrincipal is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SubscribedPrincipal corresponding to the set member.
19074
19419
  #
19420
+ # @!attribute [rw] group
19421
+ # The subscribed group.
19422
+ # @return [Types::SubscribedGroup]
19423
+ #
19075
19424
  # @!attribute [rw] project
19076
19425
  # The project that has the subscription grant.
19077
19426
  # @return [Types::SubscribedProject]
19078
19427
  #
19428
+ # @!attribute [rw] user
19429
+ # The subscribed user.
19430
+ # @return [Types::SubscribedUser]
19431
+ #
19079
19432
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedPrincipal AWS API Documentation
19080
19433
  #
19081
19434
  class SubscribedPrincipal < Struct.new(
19435
+ :group,
19082
19436
  :project,
19437
+ :user,
19083
19438
  :unknown)
19084
19439
  SENSITIVE = []
19085
19440
  include Aws::Structure
19086
19441
  include Aws::Structure::Union
19087
19442
 
19443
+ class Group < SubscribedPrincipal; end
19088
19444
  class Project < SubscribedPrincipal; end
19445
+ class User < SubscribedPrincipal; end
19089
19446
  class Unknown < SubscribedPrincipal; end
19090
19447
  end
19091
19448
 
@@ -19093,20 +19450,32 @@ module Aws::DataZone
19093
19450
  #
19094
19451
  # @note SubscribedPrincipalInput is a union - when making an API calls you must set exactly one of the members.
19095
19452
  #
19453
+ # @!attribute [rw] group
19454
+ # The subscribed group.
19455
+ # @return [Types::SubscribedGroupInput]
19456
+ #
19096
19457
  # @!attribute [rw] project
19097
19458
  # The project that is to be given a subscription grant.
19098
19459
  # @return [Types::SubscribedProjectInput]
19099
19460
  #
19461
+ # @!attribute [rw] user
19462
+ # The subscribed user.
19463
+ # @return [Types::SubscribedUserInput]
19464
+ #
19100
19465
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedPrincipalInput AWS API Documentation
19101
19466
  #
19102
19467
  class SubscribedPrincipalInput < Struct.new(
19468
+ :group,
19103
19469
  :project,
19470
+ :user,
19104
19471
  :unknown)
19105
19472
  SENSITIVE = []
19106
19473
  include Aws::Structure
19107
19474
  include Aws::Structure::Union
19108
19475
 
19476
+ class Group < SubscribedPrincipalInput; end
19109
19477
  class Project < SubscribedPrincipalInput; end
19478
+ class User < SubscribedPrincipalInput; end
19110
19479
  class Unknown < SubscribedPrincipalInput; end
19111
19480
  end
19112
19481
 
@@ -19183,6 +19552,39 @@ module Aws::DataZone
19183
19552
  include Aws::Structure
19184
19553
  end
19185
19554
 
19555
+ # The subscribed user.
19556
+ #
19557
+ # @!attribute [rw] details
19558
+ # The subscribed user details.
19559
+ # @return [Types::UserProfileDetails]
19560
+ #
19561
+ # @!attribute [rw] id
19562
+ # The ID of the subscribed user.
19563
+ # @return [String]
19564
+ #
19565
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedUser AWS API Documentation
19566
+ #
19567
+ class SubscribedUser < Struct.new(
19568
+ :details,
19569
+ :id)
19570
+ SENSITIVE = []
19571
+ include Aws::Structure
19572
+ end
19573
+
19574
+ # The subscribed user.
19575
+ #
19576
+ # @!attribute [rw] identifier
19577
+ # The ID of the subscribed user.
19578
+ # @return [String]
19579
+ #
19580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedUserInput AWS API Documentation
19581
+ #
19582
+ class SubscribedUserInput < Struct.new(
19583
+ :identifier)
19584
+ SENSITIVE = []
19585
+ include Aws::Structure
19586
+ end
19587
+
19186
19588
  # The details of the subscription grant.
19187
19589
  #
19188
19590
  # @!attribute [rw] assets
@@ -19202,6 +19604,10 @@ module Aws::DataZone
19202
19604
  # grant exists.
19203
19605
  # @return [String]
19204
19606
  #
19607
+ # @!attribute [rw] environment_id
19608
+ # The environment ID of the subscription grant.
19609
+ # @return [String]
19610
+ #
19205
19611
  # @!attribute [rw] granted_entity
19206
19612
  # The entity to which the subscription is granted.
19207
19613
  # @return [Types::GrantedEntity]
@@ -19237,6 +19643,7 @@ module Aws::DataZone
19237
19643
  :created_at,
19238
19644
  :created_by,
19239
19645
  :domain_id,
19646
+ :environment_id,
19240
19647
  :granted_entity,
19241
19648
  :id,
19242
19649
  :status,
@@ -21427,6 +21834,42 @@ module Aws::DataZone
21427
21834
  include Aws::Structure
21428
21835
  end
21429
21836
 
21837
+ # @!attribute [rw] client_token
21838
+ # A unique, case-sensitive identifier to ensure idempotency of the
21839
+ # request. This field is automatically populated if not provided.
21840
+ #
21841
+ # **A suitable default value is auto-generated.** You should normally
21842
+ # not need to pass this option.
21843
+ # @return [String]
21844
+ #
21845
+ # @!attribute [rw] current_owner
21846
+ # The current owner of the root domain unit.
21847
+ # @return [String]
21848
+ #
21849
+ # @!attribute [rw] domain_identifier
21850
+ # The ID of the domain where the root domain unit owner is to be
21851
+ # updated.
21852
+ # @return [String]
21853
+ #
21854
+ # @!attribute [rw] new_owner
21855
+ # The new owner of the root domain unit.
21856
+ # @return [String]
21857
+ #
21858
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateRootDomainUnitOwnerInput AWS API Documentation
21859
+ #
21860
+ class UpdateRootDomainUnitOwnerInput < Struct.new(
21861
+ :client_token,
21862
+ :current_owner,
21863
+ :domain_identifier,
21864
+ :new_owner)
21865
+ SENSITIVE = []
21866
+ include Aws::Structure
21867
+ end
21868
+
21869
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateRootDomainUnitOwnerOutput AWS API Documentation
21870
+ #
21871
+ class UpdateRootDomainUnitOwnerOutput < Aws::EmptyStructure; end
21872
+
21430
21873
  # @!attribute [rw] description
21431
21874
  # The description of the rule.
21432
21875
  # @return [String]
@@ -21603,6 +22046,11 @@ module Aws::DataZone
21603
22046
  # grant status is to be updated.
21604
22047
  # @return [String]
21605
22048
  #
22049
+ # @!attribute [rw] environment_id
22050
+ # The ID of the environment in which the subscription grant is
22051
+ # updated.
22052
+ # @return [String]
22053
+ #
21606
22054
  # @!attribute [rw] granted_entity
21607
22055
  # The granted entity to be updated as part of the
21608
22056
  # `UpdateSubscriptionGrantStatus` action.
@@ -21642,6 +22090,7 @@ module Aws::DataZone
21642
22090
  :created_at,
21643
22091
  :created_by,
21644
22092
  :domain_id,
22093
+ :environment_id,
21645
22094
  :granted_entity,
21646
22095
  :id,
21647
22096
  :status,
@@ -21937,7 +22386,7 @@ module Aws::DataZone
21937
22386
  end
21938
22387
 
21939
22388
  # @!attribute [rw] details
21940
- # The details of the user profile in Amazon DataZone.
22389
+ # The results of the UpdateUserProfile action.
21941
22390
  # @return [Types::UserProfileDetails]
21942
22391
  #
21943
22392
  # @!attribute [rw] domain_id
@@ -22027,16 +22476,16 @@ module Aws::DataZone
22027
22476
  class Unknown < UserPolicyGrantPrincipal; end
22028
22477
  end
22029
22478
 
22030
- # The details of the user profile in Amazon DataZone.
22479
+ # The user profile details.
22031
22480
  #
22032
22481
  # @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.
22033
22482
  #
22034
22483
  # @!attribute [rw] iam
22035
- # The IAM details included in the user profile details.
22484
+ # The IAM details of the user profile.
22036
22485
  # @return [Types::IamUserProfileDetails]
22037
22486
  #
22038
22487
  # @!attribute [rw] sso
22039
- # The single sign-on details included in the user profile details.
22488
+ # The SSO details of the user profile.
22040
22489
  # @return [Types::SsoUserProfileDetails]
22041
22490
  #
22042
22491
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UserProfileDetails AWS API Documentation