interface AwsapiCallViaCloudTrailItem
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECR.Events.RepositoryEvents.AWSAPICallViaCloudTrail.AwsapiCallViaCloudTrailItem |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecr/events#RepositoryEvents_AWSAPICallViaCloudTrail_AwsapiCallViaCloudTrailItem |
Java | software.amazon.awscdk.mixins.preview.services.ecr.events.RepositoryEvents.AWSAPICallViaCloudTrail.AwsapiCallViaCloudTrailItem |
Python | aws_cdk.mixins_preview.aws_ecr.events.RepositoryEvents.AWSAPICallViaCloudTrail.AwsapiCallViaCloudTrailItem |
TypeScript | @aws-cdk/mixins-preview » aws_ecr » events » RepositoryEvents » AWSAPICallViaCloudTrail » AwsapiCallViaCloudTrailItem |
Type definition for AWSAPICallViaCloudTrailItem.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as ecr_events } from '@aws-cdk/mixins-preview/aws-ecr';
const awsapiCallViaCloudTrailItem: ecr_events.RepositoryEvents.AWSAPICallViaCloudTrail.AwsapiCallViaCloudTrailItem = {
accountId: ['accountId'],
arn: ['arn'],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string[] | accountId property. |
| arn? | string[] | ARN 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.

.NET
Go
Java
Python
TypeScript