Class: Aws::SageMaker::Types::RetentionPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::RetentionPolicy
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass RetentionPolicy data as a hash:
{
home_efs_file_system: "Retain", # accepts Retain, Delete
}
The retention policy for data stored on an Amazon Elastic File System (EFS) volume.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#home_efs_file_system ⇒ String
The default is
Retain
, which specifies to keep the data stored on the EFS volume.
Instance Attribute Details
#home_efs_file_system ⇒ String
The default is Retain
, which specifies to keep the data stored on
the EFS volume.
Specify Delete
to delete the data stored on the EFS volume.
29649 29650 29651 29652 29653 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 29649 class RetentionPolicy < Struct.new( :home_efs_file_system) SENSITIVE = [] include Aws::Structure end |