interface CreateRule
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DLM.Events.AWSAPICallViaCloudTrail.CreateRule |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdlm/events#AWSAPICallViaCloudTrail_CreateRule |
Java | software.amazon.awscdk.mixins.preview.services.dlm.events.AWSAPICallViaCloudTrail.CreateRule |
Python | aws_cdk.mixins_preview.aws_dlm.events.AWSAPICallViaCloudTrail.CreateRule |
TypeScript | @aws-cdk/mixins-preview ยป aws_dlm ยป events ยป AWSAPICallViaCloudTrail ยป CreateRule |
Type definition for CreateRule.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as dlm_events } from '@aws-cdk/mixins-preview/aws-dlm';
const createRule: dlm_events.AWSAPICallViaCloudTrail.CreateRule = {
interval: ['interval'],
intervalUnit: ['intervalUnit'],
times: ['times'],
};
Properties
| Name | Type | Description |
|---|---|---|
| interval? | string[] | Interval property. |
| interval | string[] | IntervalUnit property. |
| times? | string[] | Times property. |
interval?
Type:
string[]
(optional, default: Do not filter on this field)
Interval property.
Specify an array of string values to match this event if the actual value of Interval is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
intervalUnit?
Type:
string[]
(optional, default: Do not filter on this field)
IntervalUnit property.
Specify an array of string values to match this event if the actual value of IntervalUnit is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
times?
Type:
string[]
(optional, default: Do not filter on this field)
Times property.
Specify an array of string values to match this event if the actual value of Times is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript