Interface CfnQueryDefinitionMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnQueryDefinitionMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)", date="2026-05-21T17:27:54.766Z") @Stability(Stable) public interface CfnQueryDefinitionMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnQueryDefinitionPropsMixin.

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.*;
 CfnQueryDefinitionMixinProps cfnQueryDefinitionMixinProps = CfnQueryDefinitionMixinProps.builder()
         .logGroupNames(List.of("logGroupNames"))
         .name("name")
         .parameters(List.of(QueryParameterProperty.builder()
                 .defaultValue("defaultValue")
                 .description("description")
                 .name("name")
                 .build()))
         .queryLanguage("queryLanguage")
         .queryString("queryString")
         .build();
 

See Also: