Class: Aws::SageMaker::Types::DeleteDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::DeleteDomainRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass DeleteDomainRequest data as a hash:
{
domain_id: "DomainId", # required
retention_policy: {
home_efs_file_system: "Retain", # accepts Retain, Delete
},
}
Instance Attribute Summary collapse
-
#domain_id ⇒ String
The domain ID.
-
#retention_policy ⇒ Types::RetentionPolicy
The retention policy for this domain, which specifies which resources will be retained after the Domain is deleted.
Instance Attribute Details
#domain_id ⇒ String
The domain ID.
5680 5681 5682 5683 5684 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5680 class DeleteDomainRequest < Struct.new( :domain_id, :retention_policy) include Aws::Structure end |
#retention_policy ⇒ Types::RetentionPolicy
The retention policy for this domain, which specifies which resources will be retained after the Domain is deleted. By default, all resources are retained (not automatically deleted).
5680 5681 5682 5683 5684 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 5680 class DeleteDomainRequest < Struct.new( :domain_id, :retention_policy) include Aws::Structure end |