interface ECRReferrerActionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECR.Events.RepositoryEvents.ECRReferrerAction.ECRReferrerActionProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecr/events#RepositoryEvents_ECRReferrerAction_ECRReferrerActionProps |
Java | software.amazon.awscdk.mixins.preview.services.ecr.events.RepositoryEvents.ECRReferrerAction.ECRReferrerActionProps |
Python | aws_cdk.mixins_preview.aws_ecr.events.RepositoryEvents.ECRReferrerAction.ECRReferrerActionProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_ecr ยป events ยป RepositoryEvents ยป ECRReferrerAction ยป ECRReferrerActionProps |
Props type for Repository aws.ecr@ECRReferrerAction event.
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 eCRReferrerActionProps: ecr_events.RepositoryEvents.ECRReferrerAction.ECRReferrerActionProps = {
actionType: ['actionType'],
artifactMediaType: ['artifactMediaType'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
imageDigest: ['imageDigest'],
imageTag: ['imageTag'],
manifestMediaType: ['manifestMediaType'],
repositoryName: ['repositoryName'],
result: ['result'],
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string[] | action-type property. |
| artifact | string[] | artifact-media-type property. |
| event | AWSEvent | EventBridge event metadata. |
| image | string[] | image-digest property. |
| image | string[] | image-tag property. |
| manifest | string[] | manifest-media-type property. |
| repository | string[] | repository-name property. |
| result? | string[] | result property. |
actionType?
Type:
string[]
(optional, default: Do not filter on this field)
action-type property.
Specify an array of string values to match this event if the actual value of action-type is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
artifactMediaType?
Type:
string[]
(optional, default: Do not filter on this field)
artifact-media-type property.
Specify an array of string values to match this event if the actual value of artifact-media-type is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
imageDigest?
Type:
string[]
(optional, default: Do not filter on this field)
image-digest property.
Specify an array of string values to match this event if the actual value of image-digest is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
imageTag?
Type:
string[]
(optional, default: Do not filter on this field)
image-tag property.
Specify an array of string values to match this event if the actual value of image-tag is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
manifestMediaType?
Type:
string[]
(optional, default: Do not filter on this field)
manifest-media-type property.
Specify an array of string values to match this event if the actual value of manifest-media-type 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: Filter with the Repository reference)
repository-name property.
Specify an array of string values to match this event if the actual value of repository-name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
result?
Type:
string[]
(optional, default: Do not filter on this field)
result property.
Specify an array of string values to match this event if the actual value of result 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