interface RequestParameters
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.Events.LogGroupEvents.AWSAPICallViaCloudTrail.RequestParameters |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs/events#LogGroupEvents_AWSAPICallViaCloudTrail_RequestParameters |
Java | software.amazon.awscdk.mixins.preview.services.logs.events.LogGroupEvents.AWSAPICallViaCloudTrail.RequestParameters |
Python | aws_cdk.mixins_preview.aws_logs.events.LogGroupEvents.AWSAPICallViaCloudTrail.RequestParameters |
TypeScript | @aws-cdk/mixins-preview » aws_logs » events » LogGroupEvents » AWSAPICallViaCloudTrail » RequestParameters |
Type definition for RequestParameters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as logs_events } from '@aws-cdk/mixins-preview/aws-logs';
const requestParameters: logs_events.LogGroupEvents.AWSAPICallViaCloudTrail.RequestParameters = {
logGroupName: ['logGroupName'],
logStreamName: ['logStreamName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string[] | logGroupName property. |
| log | string[] | logStreamName property. |
logGroupName?
Type:
string[]
(optional, default: Filter with the LogGroup reference)
logGroupName property.
Specify an array of string values to match this event if the actual value of logGroupName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
logStreamName?
Type:
string[]
(optional, default: Do not filter on this field)
logStreamName property.
Specify an array of string values to match this event if the actual value of logStreamName 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