Interface CfnDataLake.TransitionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataLake.TransitionsProperty.Jsii$Proxy
- Enclosing class:
CfnDataLake
@Stability(Stable)
public static interface CfnDataLake.TransitionsProperty
extends software.amazon.jsii.JsiiSerializable
Provides transition lifecycle details of the Amazon Security Lake object.
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.*; TransitionsProperty transitionsProperty = TransitionsProperty.builder() .days(123) .storageClass("storageClass") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataLake.TransitionsProperty
static final class
An implementation forCfnDataLake.TransitionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Number
getDays()
The number of days before data transitions to a different S3 Storage Class in the Amazon Security Lake object.default String
The list of storage classes that you can choose from based on the data access, resiliency, and cost requirements of your workloads.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDays
The number of days before data transitions to a different S3 Storage Class in the Amazon Security Lake object.- See Also:
-
getStorageClass
The list of storage classes that you can choose from based on the data access, resiliency, and cost requirements of your workloads.The default storage class is S3 Standard.
- See Also:
-
builder
-