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