Show / Hide Table of Contents

Class CfnConfiguredTable.AggregationConstraintProperty

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

Inheritance
object
CfnConfiguredTable.AggregationConstraintProperty
Implements
CfnConfiguredTable.IAggregationConstraintProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfiguredTable.AggregationConstraintProperty : CfnConfiguredTable.IAggregationConstraintProperty
Syntax (vb)
Public Class CfnConfiguredTable.AggregationConstraintProperty Implements 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

Constructors

AggregationConstraintProperty()

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

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.

Constructors

AggregationConstraintProperty()

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

public AggregationConstraintProperty()
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"
             };

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.

public string ColumnName { get; set; }
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.

public double Minimum { get; set; }
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.

public string Type { get; set; }
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

Implements

CfnConfiguredTable.IAggregationConstraintProperty
Back to top Generated by DocFX