Show / Hide Table of Contents

Class CfnConfiguredTable.AggregateColumnProperty

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

Inheritance
object
CfnConfiguredTable.AggregateColumnProperty
Implements
CfnConfiguredTable.IAggregateColumnProperty
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.AggregateColumnProperty : CfnConfiguredTable.IAggregateColumnProperty
Syntax (vb)
Public Class CfnConfiguredTable.AggregateColumnProperty Implements 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

Constructors

AggregateColumnProperty()

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

Properties

ColumnNames

Column names in configured table of aggregate columns.

Function

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

Constructors

AggregateColumnProperty()

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

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

Properties

ColumnNames

Column names in configured table of aggregate columns.

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

public string Function { get; set; }
Property Value

string

Remarks

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

Implements

CfnConfiguredTable.IAggregateColumnProperty
Back to top Generated by DocFX