@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.700Z") @Stability(value=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();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnQueryDefinition.Builder
A fluent builder for
CfnQueryDefinition. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnQueryDefinition(software.constructs.Construct scope,
String id,
CfnQueryDefinitionProps props)
Create a new `AWS::Logs::QueryDefinition`.
|
protected |
CfnQueryDefinition(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnQueryDefinition(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrQueryDefinitionId()
The ID of the query definition.
|
protected Map<String,Object> |
getCfnProperties() |
List<String> |
getLogGroupNames()
Use this parameter if you want the query to query only certain log groups.
|
String |
getName()
A name for the query definition.
|
String |
getQueryString()
The query string to use for this query definition.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setLogGroupNames(List<String> value)
Use this parameter if you want the query to query only certain log groups.
|
void |
setName(String value)
A name for the query definition.
|
void |
setQueryString(String value)
The query string to use for this query definition.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnQueryDefinition(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnQueryDefinition(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnQueryDefinition(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnQueryDefinitionProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrQueryDefinitionId()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public String getName()
@Stability(value=Stable)
public void setName(@NotNull
String value)
@Stability(value=Stable) @NotNull public String getQueryString()
For more information, see CloudWatch Logs Insights Query Syntax .
@Stability(value=Stable)
public void setQueryString(@NotNull
String value)
For more information, see CloudWatch Logs Insights Query Syntax .
@Stability(value=Stable) @Nullable public List<String> getLogGroupNames()
Copyright © 2022. All rights reserved.