Show / Hide Table of Contents

Interface CfnConfiguredTable.IAggregationConstraintProperty

Constraint on query output removing output rows that do not meet a minimum number of distinct values of a specified column.

Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConfiguredTable.IAggregationConstraintProperty
Syntax (vb)
Public Interface CfnConfiguredTable.IAggregationConstraintProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregationconstraint.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Aws_cleanrooms;

             var aggregationConstraintProperty = new AggregationConstraintProperty {
                 ColumnName = "columnName",
                 Minimum = 123,
                 Type = "type"
             };

Synopsis

Properties

ColumnName

Column in aggregation constraint for which there must be a minimum number of distinct values in an output row for it to be in the query output.

Minimum

The minimum number of distinct values that an output row must be an aggregation of.

Type

The type of aggregation the constraint allows.

Properties

ColumnName

Column in aggregation constraint for which there must be a minimum number of distinct values in an output row for it to be in the query output.

string ColumnName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregationconstraint.html#cfn-cleanrooms-configuredtable-aggregationconstraint-columnname

Minimum

The minimum number of distinct values that an output row must be an aggregation of.

double Minimum { get; }
Property Value

double

Remarks

Minimum threshold of distinct values for a specified column that must exist in an output row for it to be in the query output.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregationconstraint.html#cfn-cleanrooms-configuredtable-aggregationconstraint-minimum

Type

The type of aggregation the constraint allows.

string Type { get; }
Property Value

string

Remarks

The only valid value is currently COUNT_DISTINCT.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregationconstraint.html#cfn-cleanrooms-configuredtable-aggregationconstraint-type

Back to top Generated by DocFX