Skip to content

SQLExpressionBuilder🔗

Constructor🔗

new SQLExpressionBuilder()

Methods🔗

build🔗

Builds the object.

build()

from🔗

FROM part of the SQL expression

from(from: cog.Builder<cloudwatch.QueryEditorPropertyExpression> | cog.Builder<cloudwatch.QueryEditorFunctionExpression>)

groupBy🔗

GROUP BY part of the SQL expression

groupBy(groupBy: cog.Builder<cloudwatch.QueryEditorArrayExpression>)

limit🔗

LIMIT part of the SQL expression

limit(limit: number)

orderBy🔗

ORDER BY part of the SQL expression

orderBy(orderBy: cog.Builder<cloudwatch.QueryEditorFunctionExpression>)

orderByDirection🔗

The sort order of the SQL expression, ASC or DESC

orderByDirection(orderByDirection: string)

select🔗

SELECT part of the SQL expression

select(select: cog.Builder<cloudwatch.QueryEditorFunctionExpression>)

where🔗

WHERE part of the SQL expression

where(where: cog.Builder<cloudwatch.QueryEditorArrayExpression>)

See also🔗