Interface CfnScheduledQueryProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-02T12:05:12.010Z") @Stability(Stable) public interface CfnScheduledQueryProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnScheduledQuery.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.logs.*;
 CfnScheduledQueryProps cfnScheduledQueryProps = CfnScheduledQueryProps.builder()
         .executionRoleArn("executionRoleArn")
         .name("name")
         .queryLanguage("queryLanguage")
         .queryString("queryString")
         .scheduleExpression("scheduleExpression")
         // the properties below are optional
         .description("description")
         .destinationConfiguration(DestinationConfigurationProperty.builder()
                 .s3Configuration(S3ConfigurationProperty.builder()
                         .destinationIdentifier("destinationIdentifier")
                         .roleArn("roleArn")
                         .build())
                 .build())
         .logGroupIdentifiers(List.of("logGroupIdentifiers"))
         .scheduleEndTime(123)
         .scheduleStartTime(123)
         .startTimeOffset(123)
         .state("state")
         .tags(List.of(TagsItemsProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .timezone("timezone")
         .build();
 

See Also: