interface TtlDurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnFeatureGroup.TtlDurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnFeatureGroup_TtlDurationProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnFeatureGroup.TtlDurationProperty |
Python | aws_cdk.aws_sagemaker.CfnFeatureGroup.TtlDurationProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnFeatureGroup » TtlDurationProperty |
Time to live duration, where the record is hard deleted after the expiration time is reached;
ExpiresAt = EventTime + TtlDuration . For information on HardDelete, see the DeleteRecord API in the Amazon SageMaker API Reference guide.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const ttlDurationProperty: sagemaker.CfnFeatureGroup.TtlDurationProperty = {
unit: 'unit',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| unit? | string | TtlDuration time unit. |
| value? | number | TtlDuration time value. |
unit?
Type:
string
(optional)
TtlDuration time unit.
value?
Type:
number
(optional)
TtlDuration time value.

.NET
Go
Java
Python
TypeScript