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

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
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.

Direct Known Subclasses

Group, Unknown, User

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.



11890
11891
11892
11893
11894
11895
11896
11897
11898
11899
11900
11901
# File 'lib/aws-sdk-datazone/types.rb', line 11890

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



11890
11891
11892
# File 'lib/aws-sdk-datazone/types.rb', line 11890

def unknown
  @unknown
end

#userTypes::OwnerUserPropertiesOutput

Specifies that the domain unit owner is a user.



11890
11891
11892
11893
11894
11895
11896
11897
11898
11899
11900
11901
# File 'lib/aws-sdk-datazone/types.rb', line 11890

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

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