interface RequestParameters
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Events.BucketEvents.AWSAPICallViaCloudTrail.RequestParameters |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/events#BucketEvents_AWSAPICallViaCloudTrail_RequestParameters |
Java | software.amazon.awscdk.mixins.preview.services.s3.events.BucketEvents.AWSAPICallViaCloudTrail.RequestParameters |
Python | aws_cdk.mixins_preview.aws_s3.events.BucketEvents.AWSAPICallViaCloudTrail.RequestParameters |
TypeScript | @aws-cdk/mixins-preview ยป aws_s3 ยป events ยป BucketEvents ยป 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 s3_events } from '@aws-cdk/mixins-preview/aws-s3';
const requestParameters: s3_events.BucketEvents.AWSAPICallViaCloudTrail.RequestParameters = {
bucketName: ['bucketName'],
host: ['host'],
key: ['key'],
legalHold: ['legalHold'],
retention: ['retention'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string[] | bucketName property. |
| host? | string[] | Host property. |
| key? | string[] | key property. |
| legal | string[] | legal-hold property. |
| retention? | string[] | retention property. |
bucketName?
Type:
string[]
(optional, default: Filter with the Bucket reference)
bucketName property.
Specify an array of string values to match this event if the actual value of bucketName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
host?
Type:
string[]
(optional, default: Do not filter on this field)
Host property.
Specify an array of string values to match this event if the actual value of Host is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
key?
Type:
string[]
(optional, default: Do not filter on this field)
key property.
Specify an array of string values to match this event if the actual value of key is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
legalHold?
Type:
string[]
(optional, default: Do not filter on this field)
legal-hold property.
Specify an array of string values to match this event if the actual value of legal-hold is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
retention?
Type:
string[]
(optional, default: Do not filter on this field)
retention property.
Specify an array of string values to match this event if the actual value of retention 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