Class: Aws::SageMaker::Types::OptimizationVpcConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::OptimizationVpcConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
A VPC in Amazon VPC that's accessible to an optimized that you create with an optimization job. You can control access to and from your resources by configuring a VPC. For more information, see Give SageMaker Access to Resources in your Amazon VPC.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_group_ids ⇒ Array<String>
The VPC security group IDs, in the form
sg-xxxxxxxx
. -
#subnets ⇒ Array<String>
The ID of the subnets in the VPC to which you want to connect your optimized model.
Instance Attribute Details
#security_group_ids ⇒ Array<String>
The VPC security group IDs, in the form sg-xxxxxxxx
. Specify the
security groups for the VPC that is specified in the Subnets
field.
35631 35632 35633 35634 35635 35636 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 35631 class OptimizationVpcConfig < Struct.new( :security_group_ids, :subnets) SENSITIVE = [] include Aws::Structure end |
#subnets ⇒ Array<String>
The ID of the subnets in the VPC to which you want to connect your optimized model.
35631 35632 35633 35634 35635 35636 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 35631 class OptimizationVpcConfig < Struct.new( :security_group_ids, :subnets) SENSITIVE = [] include Aws::Structure end |