interface RetentionPeriod1
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Events.AWSAPICallViaCloudTrail.RetentionPeriod1 |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/events#AWSAPICallViaCloudTrail_RetentionPeriod1 |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.events.AWSAPICallViaCloudTrail.RetentionPeriod1 |
Python | aws_cdk.mixins_preview.aws_iotanalytics.events.AWSAPICallViaCloudTrail.RetentionPeriod1 |
TypeScript | @aws-cdk/mixins-preview ยป aws_iotanalytics ยป events ยป AWSAPICallViaCloudTrail ยป RetentionPeriod1 |
Type definition for RetentionPeriod_1.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as iotanalytics_events } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const retentionPeriod1: iotanalytics_events.AWSAPICallViaCloudTrail.RetentionPeriod1 = {
numberOfDays: ['numberOfDays'],
unlimited: ['unlimited'],
};
Properties
| Name | Type | Description |
|---|---|---|
| number | string[] | numberOfDays property. |
| unlimited? | string[] | unlimited property. |
numberOfDays?
Type:
string[]
(optional, default: Do not filter on this field)
numberOfDays property.
Specify an array of string values to match this event if the actual value of numberOfDays is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
unlimited?
Type:
string[]
(optional, default: Do not filter on this field)
unlimited property.
Specify an array of string values to match this event if the actual value of unlimited 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