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