interface TtlDurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnFeatureGroupPropsMixin.TtlDurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnFeatureGroupPropsMixin_TtlDurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnFeatureGroupPropsMixin.TtlDurationProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnFeatureGroupPropsMixin.TtlDurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnFeatureGroupPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const ttlDurationProperty: sagemaker_mixins.CfnFeatureGroupPropsMixin.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