Class: Aws::CleanRoomsML::Types::PrivacyBudgets

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

Overview

Note:

PrivacyBudgets is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PrivacyBudgets corresponding to the set member.

The privacy budget information that controls access to Clean Rooms ML input channels.

Direct Known Subclasses

AccessBudgets, Unknown

Defined Under Namespace

Classes: AccessBudgets, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#access_budgetsArray<Types::AccessBudget>

A list of access budgets that apply to resources associated with this Clean Rooms ML input channel.

Returns:



4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 4746

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

  class AccessBudgets < PrivacyBudgets; end
  class Unknown < PrivacyBudgets; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4746
4747
4748
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 4746

def unknown
  @unknown
end