Class RepositoryEvents.AWSAPICallViaCloudTrail.RequestParameters
(experimental) Type definition for RequestParameters.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ECR.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class RepositoryEvents.AWSAPICallViaCloudTrail.RequestParameters : RepositoryEvents.AWSAPICallViaCloudTrail.IRequestParameters
Syntax (vb)
Public Class RepositoryEvents.AWSAPICallViaCloudTrail.RequestParameters Implements RepositoryEvents.AWSAPICallViaCloudTrail.IRequestParameters
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.ECR.Events;
var requestParameters = new RequestParameters {
AcceptedMediaTypes = new [] { "acceptedMediaTypes" },
ImageIds = new [] { new RequestParametersItem {
ImageTag = new [] { "imageTag" }
} },
RegistryId = new [] { "registryId" },
RepositoryName = new [] { "repositoryName" }
};
Synopsis
Constructors
| RequestParameters() | (experimental) Type definition for RequestParameters. |
Properties
| AcceptedMediaTypes | (experimental) acceptedMediaTypes property. |
| ImageIds | (experimental) imageIds property. |
| RegistryId | (experimental) registryId property. |
| RepositoryName | (experimental) repositoryName property. |
Constructors
RequestParameters()
(experimental) Type definition for RequestParameters.
public RequestParameters()
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.ECR.Events;
var requestParameters = new RequestParameters {
AcceptedMediaTypes = new [] { "acceptedMediaTypes" },
ImageIds = new [] { new RequestParametersItem {
ImageTag = new [] { "imageTag" }
} },
RegistryId = new [] { "registryId" },
RepositoryName = new [] { "repositoryName" }
};
Properties
AcceptedMediaTypes
(experimental) acceptedMediaTypes property.
public string[]? AcceptedMediaTypes { get; set; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental
ImageIds
(experimental) imageIds property.
public RepositoryEvents.AWSAPICallViaCloudTrail.IRequestParametersItem[]? ImageIds { get; set; }
Property Value
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental
RegistryId
(experimental) registryId property.
public string[]? RegistryId { get; set; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental
RepositoryName
(experimental) repositoryName property.
public string[]? RepositoryName { get; set; }
Property Value
string[]
Remarks
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.
Default: - Filter with the Repository reference
Stability: Experimental