Class: Aws::SageMaker::Types::AutoMLSecurityConfig

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass AutoMLSecurityConfig data as a hash:

{
  volume_kms_key_id: "KmsKeyId",
  enable_inter_container_traffic_encryption: false,
  vpc_config: {
    security_group_ids: ["SecurityGroupId"], # required
    subnets: ["SubnetId"], # required
  },
}

Security options.

Instance Attribute Summary collapse

Instance Attribute Details

#enable_inter_container_traffic_encryptionBoolean

Whether to use traffic encryption between the container layers.

Returns:

  • (Boolean)


1271
1272
1273
1274
1275
1276
# File 'lib/aws-sdk-sagemaker/types.rb', line 1271

class AutoMLSecurityConfig < Struct.new(
  :volume_kms_key_id,
  :enable_inter_container_traffic_encryption,
  :vpc_config)
  include Aws::Structure
end

#volume_kms_key_idString

The key used to encrypt stored data.

Returns:

  • (String)


1271
1272
1273
1274
1275
1276
# File 'lib/aws-sdk-sagemaker/types.rb', line 1271

class AutoMLSecurityConfig < Struct.new(
  :volume_kms_key_id,
  :enable_inter_container_traffic_encryption,
  :vpc_config)
  include Aws::Structure
end

#vpc_configTypes::VpcConfig

VPC configuration.

Returns:



1271
1272
1273
1274
1275
1276
# File 'lib/aws-sdk-sagemaker/types.rb', line 1271

class AutoMLSecurityConfig < Struct.new(
  :volume_kms_key_id,
  :enable_inter_container_traffic_encryption,
  :vpc_config)
  include Aws::Structure
end