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