Class: Aws::DataZone::Types::OwnerProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::OwnerProperties
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-datazone/types.rb
Overview
Note:
OwnerProperties is a union - when making an API calls you must set exactly one of the members.
The properties of a domain unit’s owner.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group ⇒ Types::OwnerGroupProperties
Specifies that the domain unit owner is a group.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#user ⇒ Types::OwnerUserProperties
Specifies that the domain unit owner is a user.
Instance Attribute Details
#group ⇒ Types::OwnerGroupProperties
Specifies that the domain unit owner is a group.
14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 |
# File 'lib/aws-sdk-datazone/types.rb', line 14255 class OwnerProperties < Struct.new( :group, :user, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Group < OwnerProperties; end class User < OwnerProperties; end class Unknown < OwnerProperties; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
14255 14256 14257 |
# File 'lib/aws-sdk-datazone/types.rb', line 14255 def unknown @unknown end |
#user ⇒ Types::OwnerUserProperties
Specifies that the domain unit owner is a user.
14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 |
# File 'lib/aws-sdk-datazone/types.rb', line 14255 class OwnerProperties < Struct.new( :group, :user, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Group < OwnerProperties; end class User < OwnerProperties; end class Unknown < OwnerProperties; end end |