Interface CfnQueryDefinitionPropsMixin.QueryParameterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnQueryDefinitionPropsMixin.QueryParameterProperty.Jsii$Proxy
Enclosing class:
CfnQueryDefinitionPropsMixin

@Stability(Stable) public static interface CfnQueryDefinitionPropsMixin.QueryParameterProperty extends software.amazon.jsii.JsiiSerializable
This structure defines a query parameter for a saved CloudWatch Logs Insights query definition.

Query parameters are supported only for Logs Insights QL queries. They are placeholder variables that you can reference in a query string using the {{parameterName}} syntax. Each parameter can include a default value and a description.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.logs.*;
 QueryParameterProperty queryParameterProperty = QueryParameterProperty.builder()
         .defaultValue("defaultValue")
         .description("description")
         .name("name")
         .build();
 

See Also: