interface QueryDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Logs.QueryDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslogs#QueryDefinitionReference |
Java | software.amazon.awscdk.interfaces.logs.QueryDefinitionReference |
Python | aws_cdk.interfaces.aws_logs.QueryDefinitionReference |
TypeScript | aws-cdk-lib » interfaces » aws_logs » QueryDefinitionReference |
A reference to a QueryDefinition resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_logs as interfaces_logs } from 'aws-cdk-lib/interfaces';
const queryDefinitionReference: interfaces_logs.QueryDefinitionReference = {
queryDefinitionId: 'queryDefinitionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| query | string | The QueryDefinitionId of the QueryDefinition resource. |
queryDefinitionId
Type:
string
The QueryDefinitionId of the QueryDefinition resource.

.NET
Go
Java
Python
TypeScript