interface RequestParameters
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Events.AWSAPICallViaCloudTrail.RequestParameters |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/events#AWSAPICallViaCloudTrail_RequestParameters |
Java | software.amazon.awscdk.mixins.preview.services.glue.events.AWSAPICallViaCloudTrail.RequestParameters |
Python | aws_cdk.mixins_preview.aws_glue.events.AWSAPICallViaCloudTrail.RequestParameters |
TypeScript | @aws-cdk/mixins-preview ยป aws_glue ยป events ยป 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 glue_events } from '@aws-cdk/mixins-preview/aws-glue';
const requestParameters: glue_events.AWSAPICallViaCloudTrail.RequestParameters = {
allocatedCapacity: ['allocatedCapacity'],
jobName: ['jobName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| allocated | string[] | allocatedCapacity property. |
| job | string[] | jobName property. |
allocatedCapacity?
Type:
string[]
(optional, default: Do not filter on this field)
allocatedCapacity property.
Specify an array of string values to match this event if the actual value of allocatedCapacity is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
jobName?
Type:
string[]
(optional, default: Filter with the Job reference)
jobName property.
Specify an array of string values to match this event if the actual value of jobName 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