Class CfnQueryDefinition

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:32.259Z") @Stability(Stable) public class CfnQueryDefinition extends CfnResource implements IInspectable
Creates a query definition for CloudWatch Logs Insights.

For more information, see Analyzing Log Data with CloudWatch Logs Insights .

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.*;
 CfnQueryDefinition cfnQueryDefinition = CfnQueryDefinition.Builder.create(this, "MyCfnQueryDefinition")
         .name("name")
         .queryString("queryString")
         // the properties below are optional
         .logGroupNames(List.of("logGroupNames"))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnQueryDefinition

      protected CfnQueryDefinition(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnQueryDefinition

      protected CfnQueryDefinition(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnQueryDefinition

      @Stability(Stable) public CfnQueryDefinition(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnQueryDefinitionProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrQueryDefinitionId

      @Stability(Stable) @NotNull public String getAttrQueryDefinitionId()
      The ID of the query definition.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getName

      @Stability(Stable) @NotNull public String getName()
      A name for the query definition.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      A name for the query definition.
    • getQueryString

      @Stability(Stable) @NotNull public String getQueryString()
      The query string to use for this query definition.
    • setQueryString

      @Stability(Stable) public void setQueryString(@NotNull String value)
      The query string to use for this query definition.
    • getLogGroupNames

      @Stability(Stable) @Nullable public List<String> getLogGroupNames()
      Use this parameter if you want the query to query only certain log groups.
    • setLogGroupNames

      @Stability(Stable) public void setLogGroupNames(@Nullable List<String> value)
      Use this parameter if you want the query to query only certain log groups.