You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::RoboMaker::Types::VPCConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::VPCConfig
- Defined in:
- (unknown)
Overview
When passing VPCConfig as input to an Aws::Client method, you can use a vanilla Hash:
{
subnets: ["NonEmptyString"], # required
security_groups: ["NonEmptyString"],
assign_public_ip: false,
}
If your simulation job accesses resources in a VPC, you provide this parameter identifying the list of security group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and two subnet IDs.
Returned by:
Instance Attribute Summary collapse
-
#assign_public_ip ⇒ Boolean
A boolean indicating whether to assign a public IP address.
-
#security_groups ⇒ Array<String>
A list of one or more security groups IDs in your VPC.
-
#subnets ⇒ Array<String>
A list of one or more subnet IDs in your VPC.
Instance Attribute Details
#assign_public_ip ⇒ Boolean
A boolean indicating whether to assign a public IP address.
#security_groups ⇒ Array<String>
A list of one or more security groups IDs in your VPC.
#subnets ⇒ Array<String>
A list of one or more subnet IDs in your VPC.