interface AdditionalEventData
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeCommit.Events.RepositoryEvents.AWSAPICallViaCloudTrail.AdditionalEventData |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodecommit/events#RepositoryEvents_AWSAPICallViaCloudTrail_AdditionalEventData |
Java | software.amazon.awscdk.mixins.preview.services.codecommit.events.RepositoryEvents.AWSAPICallViaCloudTrail.AdditionalEventData |
Python | aws_cdk.mixins_preview.aws_codecommit.events.RepositoryEvents.AWSAPICallViaCloudTrail.AdditionalEventData |
TypeScript | @aws-cdk/mixins-preview ยป aws_codecommit ยป events ยป RepositoryEvents ยป AWSAPICallViaCloudTrail ยป AdditionalEventData |
Type definition for AdditionalEventData.
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 additionalEventData: codecommit_events.RepositoryEvents.AWSAPICallViaCloudTrail.AdditionalEventData = {
capabilities: ['capabilities'],
clone: ['clone'],
dataTransferred: ['dataTransferred'],
protocol: ['protocol'],
repositoryId: ['repositoryId'],
repositoryName: ['repositoryName'],
shallow: ['shallow'],
};
Properties
| Name | Type | Description |
|---|---|---|
| capabilities? | string[] | capabilities property. |
| clone? | string[] | clone property. |
| data | string[] | dataTransferred property. |
| protocol? | string[] | protocol property. |
| repository | string[] | repositoryId property. |
| repository | string[] | repositoryName property. |
| shallow? | string[] | shallow property. |
capabilities?
Type:
string[]
(optional, default: Do not filter on this field)
capabilities property.
Specify an array of string values to match this event if the actual value of capabilities is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
clone?
Type:
string[]
(optional, default: Do not filter on this field)
clone property.
Specify an array of string values to match this event if the actual value of clone is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
dataTransferred?
Type:
string[]
(optional, default: Do not filter on this field)
dataTransferred property.
Specify an array of string values to match this event if the actual value of dataTransferred is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
protocol?
Type:
string[]
(optional, default: Do not filter on this field)
protocol property.
Specify an array of string values to match this event if the actual value of protocol is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
repositoryId?
Type:
string[]
(optional, default: Do not filter on this field)
repositoryId property.
Specify an array of string values to match this event if the actual value of repositoryId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
repositoryName?
Type:
string[]
(optional, default: Do not filter on this field)
repositoryName property.
Specify an array of string values to match this event if the actual value of repositoryName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
shallow?
Type:
string[]
(optional, default: Do not filter on this field)
shallow property.
Specify an array of string values to match this event if the actual value of shallow 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