interface RequestParameters
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECR.Events.RepositoryEvents.AWSAPICallViaCloudTrail.RequestParameters |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecr/events#RepositoryEvents_AWSAPICallViaCloudTrail_RequestParameters |
Java | software.amazon.awscdk.mixins.preview.services.ecr.events.RepositoryEvents.AWSAPICallViaCloudTrail.RequestParameters |
Python | aws_cdk.mixins_preview.aws_ecr.events.RepositoryEvents.AWSAPICallViaCloudTrail.RequestParameters |
TypeScript | @aws-cdk/mixins-preview ยป aws_ecr ยป events ยป RepositoryEvents ยป AWSAPICallViaCloudTrail ยป RequestParameters |
Type definition for RequestParameters.
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 requestParameters: ecr_events.RepositoryEvents.AWSAPICallViaCloudTrail.RequestParameters = {
acceptedMediaTypes: ['acceptedMediaTypes'],
imageIds: [{
imageTag: ['imageTag'],
}],
registryId: ['registryId'],
repositoryName: ['repositoryName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| accepted | string[] | acceptedMediaTypes property. |
| image | Request[] | imageIds property. |
| registry | string[] | registryId property. |
| repository | string[] | repositoryName property. |
acceptedMediaTypes?
Type:
string[]
(optional, default: Do not filter on this field)
acceptedMediaTypes property.
Specify an array of string values to match this event if the actual value of acceptedMediaTypes is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
imageIds?
Type:
Request[]
(optional, default: Do not filter on this field)
imageIds property.
Specify an array of string values to match this event if the actual value of imageIds is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
registryId?
Type:
string[]
(optional, default: Do not filter on this field)
registryId property.
Specify an array of string values to match this event if the actual value of registryId 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)
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