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.
47541 47542 47543 47544 47545 47546 47547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 47541 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.
47541 47542 47543 47544 47545 47546 47547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 47541 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.
47541 47542 47543 47544 47545 47546 47547 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 47541 class WorkforceVpcConfigRequest < Struct.new( :vpc_id, :security_group_ids, :subnets) SENSITIVE = [] include Aws::Structure end |