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