Interface CfnDataLake.ExpirationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataLake.ExpirationProperty.Jsii$Proxy
Enclosing class:
CfnDataLake

@Stability(Stable) public static interface CfnDataLake.ExpirationProperty extends software.amazon.jsii.JsiiSerializable
Provides data expiration details of the Amazon Security Lake object.

You can specify your preferred Amazon S3 storage class and the time period for S3 objects to stay in that storage class before they expire. For more information about Amazon S3 Lifecycle configurations, see Managing your storage lifecycle in the Amazon Simple Storage Service User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.securitylake.*;
 ExpirationProperty expirationProperty = ExpirationProperty.builder()
         .days(123)
         .build();
 

See Also: