interface RequestParameters
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WellArchitected.Events.AWSAPICallViaCloudTrail.RequestParameters |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswellarchitected/events#AWSAPICallViaCloudTrail_RequestParameters |
Java | software.amazon.awscdk.mixins.preview.services.wellarchitected.events.AWSAPICallViaCloudTrail.RequestParameters |
Python | aws_cdk.mixins_preview.aws_wellarchitected.events.AWSAPICallViaCloudTrail.RequestParameters |
TypeScript | @aws-cdk/mixins-preview ยป aws_wellarchitected ยป events ยป 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 wellarchitected_events } from '@aws-cdk/mixins-preview/aws-wellarchitected';
const requestParameters: wellarchitected_events.AWSAPICallViaCloudTrail.RequestParameters = {
clientRequestToken: ['clientRequestToken'],
isMajorVersion: ['isMajorVersion'],
lensAlias: ['lensAlias'],
lensVersion: ['lensVersion'],
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string[] | ClientRequestToken property. |
| is | string[] | IsMajorVersion property. |
| lens | string[] | LensAlias property. |
| lens | string[] | LensVersion property. |
clientRequestToken?
Type:
string[]
(optional, default: Do not filter on this field)
ClientRequestToken property.
Specify an array of string values to match this event if the actual value of ClientRequestToken is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
isMajorVersion?
Type:
string[]
(optional, default: Do not filter on this field)
IsMajorVersion property.
Specify an array of string values to match this event if the actual value of IsMajorVersion is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
lensAlias?
Type:
string[]
(optional, default: Do not filter on this field)
LensAlias property.
Specify an array of string values to match this event if the actual value of LensAlias is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
lensVersion?
Type:
string[]
(optional, default: Do not filter on this field)
LensVersion property.
Specify an array of string values to match this event if the actual value of LensVersion 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