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