Class: Aws::SageMaker::Types::AutoMLSecurityConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AutoMLSecurityConfig
- 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
-
#enable_inter_container_traffic_encryption ⇒ Boolean
Whether to use traffic encryption between the container layers.
-
#volume_kms_key_id ⇒ String
The key used to encrypt stored data.
-
#vpc_config ⇒ Types::VpcConfig
VPC configuration.
Instance Attribute Details
#enable_inter_container_traffic_encryption ⇒ Boolean
Whether to use traffic encryption between the container layers.
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_id ⇒ String
The key used to encrypt stored data.
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_config ⇒ Types::VpcConfig
VPC configuration.
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 |