interface Location
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeCommit.Events.RepositoryEvents.AWSAPICallViaCloudTrail.Location |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodecommit/events#RepositoryEvents_AWSAPICallViaCloudTrail_Location |
Java | software.amazon.awscdk.mixins.preview.services.codecommit.events.RepositoryEvents.AWSAPICallViaCloudTrail.Location |
Python | aws_cdk.mixins_preview.aws_codecommit.events.RepositoryEvents.AWSAPICallViaCloudTrail.Location |
TypeScript | @aws-cdk/mixins-preview ยป aws_codecommit ยป events ยป RepositoryEvents ยป AWSAPICallViaCloudTrail ยป Location |
Type definition for Location.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as codecommit_events } from '@aws-cdk/mixins-preview/aws-codecommit';
const location: codecommit_events.RepositoryEvents.AWSAPICallViaCloudTrail.Location = {
filePath: ['filePath'],
filePosition: ['filePosition'],
relativeFileVersion: ['relativeFileVersion'],
};
Properties
| Name | Type | Description |
|---|---|---|
| file | string[] | filePath property. |
| file | string[] | filePosition property. |
| relative | string[] | relativeFileVersion property. |
filePath?
Type:
string[]
(optional, default: Do not filter on this field)
filePath property.
Specify an array of string values to match this event if the actual value of filePath is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
filePosition?
Type:
string[]
(optional, default: Do not filter on this field)
filePosition property.
Specify an array of string values to match this event if the actual value of filePosition is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
relativeFileVersion?
Type:
string[]
(optional, default: Do not filter on this field)
relativeFileVersion property.
Specify an array of string values to match this event if the actual value of relativeFileVersion 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