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

.NET
Go
Java
Python
TypeScript