Show / Hide Table of Contents

Interface CfnConfiguredTable.IAggregateColumnProperty

Column in configured table that can be used in aggregate function in query.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-aggregatecolumn.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 aggregateColumnProperty = new AggregateColumnProperty {
                 ColumnNames = new [] { "columnNames" },
                 Function = "function"
             };

Synopsis

Properties

ColumnNames

Column names in configured table of aggregate columns.

Function

Aggregation function that can be applied to aggregate column in query.

Properties

ColumnNames

Column names in configured table of aggregate columns.

string[] ColumnNames { get; }
Property Value

string[]

Remarks

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

Function

Aggregation function that can be applied to aggregate column in query.

string Function { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX