Class: Aws::CleanRooms::Types::ConsolidatedPolicy

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

Overview

Note:

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

Controls on the analysis specifications that can be run on a configured table.

Direct Known Subclasses

Unknown, V1

Defined Under Namespace

Classes: Unknown, V1

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2998
2999
3000
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2998

def unknown
  @unknown
end

#v1Types::ConsolidatedPolicyV1

The consolidated policy version 1.



2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 2998

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

  class V1 < ConsolidatedPolicy; end
  class Unknown < ConsolidatedPolicy; end
end