Show / Hide Table of Contents

Class CfnConfiguredTable.AnalysisRuleListProperty

A type of analysis rule that enables row-level analysis.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulelist.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 analysisRuleListProperty = new AnalysisRuleListProperty {
                 JoinColumns = new [] { "joinColumns" },
                 ListColumns = new [] { "listColumns" },

                 // the properties below are optional
                 AdditionalAnalyses = "additionalAnalyses",
                 AllowedJoinOperators = new [] { "allowedJoinOperators" }
             };

Synopsis

Constructors

AnalysisRuleListProperty()

A type of analysis rule that enables row-level analysis.

Properties

AdditionalAnalyses

An indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query.

AllowedJoinOperators

The logical operators (if any) that are to be used in an INNER JOIN match condition.

JoinColumns

Columns that can be used to join a configured table with the table of the member who can query and other members' configured tables.

ListColumns

Columns that can be listed in the output.

Constructors

AnalysisRuleListProperty()

A type of analysis rule that enables row-level analysis.

public AnalysisRuleListProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-analysisrulelist.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 analysisRuleListProperty = new AnalysisRuleListProperty {
                 JoinColumns = new [] { "joinColumns" },
                 ListColumns = new [] { "listColumns" },

                 // the properties below are optional
                 AdditionalAnalyses = "additionalAnalyses",
                 AllowedJoinOperators = new [] { "allowedJoinOperators" }
             };

Properties

AdditionalAnalyses

An indicator as to whether additional analyses (such as AWS Clean Rooms ML) can be applied to the output of the direct query.

public string? AdditionalAnalyses { get; set; }
Property Value

string

Remarks

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

AllowedJoinOperators

The logical operators (if any) that are to be used in an INNER JOIN match condition.

public string[]? AllowedJoinOperators { get; set; }
Property Value

string[]

Remarks

Default is AND .

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

JoinColumns

Columns that can be used to join a configured table with the table of the member who can query and other members' configured tables.

public string[] JoinColumns { get; set; }
Property Value

string[]

Remarks

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

ListColumns

Columns that can be listed in the output.

public string[] ListColumns { get; set; }
Property Value

string[]

Remarks

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

Implements

CfnConfiguredTable.IAnalysisRuleListProperty
Back to top Generated by DocFX