Class: Aws::DataZone::Types::GrantedEntityInput

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

Overview

Note:

GrantedEntityInput is a union - when making an API calls you must set exactly one of the members.

The details of a listing for which a subscription is to be granted.

Direct Known Subclasses

Listing, Unknown

Defined Under Namespace

Classes: Listing, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#listingTypes::ListingRevisionInput

The listing for which a subscription is to be granted.



6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 6971

class GrantedEntityInput < Struct.new(
  :listing,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Listing < GrantedEntityInput; end
  class Unknown < GrantedEntityInput; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6971
6972
6973
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 6971

def unknown
  @unknown
end