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