Class: Aws::DataZone::Types::OwnerPropertiesOutput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb

Overview

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.

The ID of the domain unit owners group.

Defined Under Namespace

Classes: Group, Unknown, User

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#groupTypes::OwnerGroupPropertiesOutput

Specifies that the domain unit owner is a group.



17618
17619
17620
17621
17622
17623
17624
17625
17626
17627
17628
17629
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17618

class OwnerPropertiesOutput < Struct.new(
  :user,
  :group,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class User < OwnerPropertiesOutput; end
  class Group < OwnerPropertiesOutput; end
  class Unknown < OwnerPropertiesOutput; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



17618
17619
17620
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17618

def unknown
  @unknown
end

#userTypes::OwnerUserPropertiesOutput

Specifies that the domain unit owner is a user.



17618
17619
17620
17621
17622
17623
17624
17625
17626
17627
17628
17629
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17618

class OwnerPropertiesOutput < Struct.new(
  :user,
  :group,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class User < OwnerPropertiesOutput; end
  class Group < OwnerPropertiesOutput; end
  class Unknown < OwnerPropertiesOutput; end
end