Class: Aws::CleanRooms::Types::ConsolidatedPolicyV1

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

Overview

Note:

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

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

Direct Known Subclasses

Aggregation, Custom, List, Unknown

Defined Under Namespace

Classes: Aggregation, Custom, List, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#aggregationTypes::ConsolidatedPolicyAggregation

The aggregation setting for the consolidated policy.



3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 3240

class ConsolidatedPolicyV1 < Struct.new(
  :list,
  :aggregation,
  :custom,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class List < ConsolidatedPolicyV1; end
  class Aggregation < ConsolidatedPolicyV1; end
  class Custom < ConsolidatedPolicyV1; end
  class Unknown < ConsolidatedPolicyV1; end
end

#customTypes::ConsolidatedPolicyCustom

Custom policy



3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 3240

class ConsolidatedPolicyV1 < Struct.new(
  :list,
  :aggregation,
  :custom,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class List < ConsolidatedPolicyV1; end
  class Aggregation < ConsolidatedPolicyV1; end
  class Custom < ConsolidatedPolicyV1; end
  class Unknown < ConsolidatedPolicyV1; end
end

#listTypes::ConsolidatedPolicyList

The list of consolidated policies.



3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 3240

class ConsolidatedPolicyV1 < Struct.new(
  :list,
  :aggregation,
  :custom,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class List < ConsolidatedPolicyV1; end
  class Aggregation < ConsolidatedPolicyV1; end
  class Custom < ConsolidatedPolicyV1; end
  class Unknown < ConsolidatedPolicyV1; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3240
3241
3242
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 3240

def unknown
  @unknown
end