Class: Aws::SageMaker::Types::WorkforceVpcConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::WorkforceVpcConfigRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
The VPC object you use to create or update a workforce.
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 that you want to connect.
-
#vpc_id ⇒ String
The ID of the VPC that the workforce uses for communication.
Instance Attribute Details
#security_group_ids ⇒ Array<String>
The VPC security group IDs, in the form ‘sg-xxxxxxxx`. The security groups must be for the same VPC as specified in the subnet.
49729 49730 49731 49732 49733 49734 49735 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 49729 class WorkforceVpcConfigRequest < Struct.new( :vpc_id, :security_group_ids, :subnets) SENSITIVE = [] include Aws::Structure end |
#subnets ⇒ Array<String>
The ID of the subnets in the VPC that you want to connect.
49729 49730 49731 49732 49733 49734 49735 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 49729 class WorkforceVpcConfigRequest < Struct.new( :vpc_id, :security_group_ids, :subnets) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The ID of the VPC that the workforce uses for communication.
49729 49730 49731 49732 49733 49734 49735 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 49729 class WorkforceVpcConfigRequest < Struct.new( :vpc_id, :security_group_ids, :subnets) SENSITIVE = [] include Aws::Structure end |