interface Attributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECR.Events.RepositoryEvents.AWSAPICallViaCloudTrail.Attributes |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecr/events#RepositoryEvents_AWSAPICallViaCloudTrail_Attributes |
Java | software.amazon.awscdk.mixins.preview.services.ecr.events.RepositoryEvents.AWSAPICallViaCloudTrail.Attributes |
Python | aws_cdk.mixins_preview.aws_ecr.events.RepositoryEvents.AWSAPICallViaCloudTrail.Attributes |
TypeScript | @aws-cdk/mixins-preview » aws_ecr » events » RepositoryEvents » AWSAPICallViaCloudTrail » Attributes |
Type definition for Attributes.
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 attributes: ecr_events.RepositoryEvents.AWSAPICallViaCloudTrail.Attributes = {
creationDate: ['creationDate'],
mfaAuthenticated: ['mfaAuthenticated'],
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | string[] | creationDate property. |
| mfa | string[] | mfaAuthenticated property. |
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.
mfaAuthenticated?
Type:
string[]
(optional, default: Do not filter on this field)
mfaAuthenticated property.
Specify an array of string values to match this event if the actual value of mfaAuthenticated 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