Class: Aws::CleanRoomsML::Types::PrivacyBudgets
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::PrivacyBudgets
- 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
Defined Under Namespace
Classes: AccessBudgets, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_budgets ⇒ Array<Types::AccessBudget>
A list of access budgets that apply to resources associated with this Clean Rooms ML input channel.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#access_budgets ⇒ Array<Types::AccessBudget>
A list of access budgets that apply to resources associated with this Clean Rooms ML input channel.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
4746 4747 4748 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 4746 def unknown @unknown end |