Class: Aws::SageMaker::Types::AutoMLJobConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AutoMLJobConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass AutoMLJobConfig data as a hash:
{
completion_criteria: {
max_candidates: 1,
max_runtime_per_training_job_in_seconds: 1,
max_auto_ml_job_runtime_in_seconds: 1,
},
security_config: {
volume_kms_key_id: "KmsKeyId",
enable_inter_container_traffic_encryption: false,
vpc_config: {
security_group_ids: ["SecurityGroupId"], # required
subnets: ["SubnetId"], # required
},
},
}
A collection of settings used for a job.
Instance Attribute Summary collapse
-
#completion_criteria ⇒ Types::AutoMLJobCompletionCriteria
How long a job is allowed to run, or how many candidates a job is allowed to generate.
-
#security_config ⇒ Types::AutoMLSecurityConfig
Security configuration for traffic encryption or Amazon VPC settings.
Instance Attribute Details
#completion_criteria ⇒ Types::AutoMLJobCompletionCriteria
How long a job is allowed to run, or how many candidates a job is allowed to generate.
1117 1118 1119 1120 1121 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1117 class AutoMLJobConfig < Struct.new( :completion_criteria, :security_config) include Aws::Structure end |
#security_config ⇒ Types::AutoMLSecurityConfig
Security configuration for traffic encryption or Amazon VPC settings.
1117 1118 1119 1120 1121 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1117 class AutoMLJobConfig < Struct.new( :completion_criteria, :security_config) include Aws::Structure end |