interface CfnScheduledQueryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.Mixins.CfnScheduledQueryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs/mixins#CfnScheduledQueryMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.logs.mixins.CfnScheduledQueryMixinProps |
Python | aws_cdk.mixins_preview.aws_logs.mixins.CfnScheduledQueryMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_logs » mixins » CfnScheduledQueryMixinProps |
Properties for CfnScheduledQueryPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-scheduledquery.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as logs_mixins } from '@aws-cdk/mixins-preview/aws-logs';
const cfnScheduledQueryMixinProps: logs_mixins.CfnScheduledQueryMixinProps = {
description: 'description',
destinationConfiguration: {
s3Configuration: {
destinationIdentifier: 'destinationIdentifier',
roleArn: 'roleArn',
},
},
executionRoleArn: 'executionRoleArn',
logGroupIdentifiers: ['logGroupIdentifiers'],
name: 'name',
queryLanguage: 'queryLanguage',
queryString: 'queryString',
scheduleEndTime: 123,
scheduleExpression: 'scheduleExpression',
scheduleStartTime: 123,
startTimeOffset: 123,
state: 'state',
tags: [{
key: 'key',
value: 'value',
}],
timezone: 'timezone',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | |
| destination | IResolvable | Destination | |
| execution | string | |
| log | string[] | |
| name? | string | |
| query | string | |
| query | string | |
| schedule | number | |
| schedule | string | |
| schedule | number | |
| start | number | |
| state? | string | |
| tags? | Tags[] | |
| timezone? | string |
description?
Type:
string
(optional)
destinationConfiguration?
Type:
IResolvable | Destination
(optional)
executionRoleArn?
Type:
string
(optional)
logGroupIdentifiers?
Type:
string[]
(optional)
name?
Type:
string
(optional)
queryLanguage?
Type:
string
(optional)
queryString?
Type:
string
(optional)
scheduleEndTime?
Type:
number
(optional)
scheduleExpression?
Type:
string
(optional)
scheduleStartTime?
Type:
number
(optional)
startTimeOffset?
Type:
number
(optional)
state?
Type:
string
(optional)
tags?
Type:
Tags[]
(optional)
timezone?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript