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
show all
Defined in:
(unknown)

Overview

Note:

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

Instance Attribute Details

#assign_public_ipBoolean

A boolean indicating whether to assign a public IP address.

Returns:

  • (Boolean)

    A boolean indicating whether to assign a public IP address.

#security_groupsArray<String>

A list of one or more security groups IDs in your VPC.

Returns:

  • (Array<String>)

    A list of one or more security groups IDs in your VPC.

#subnetsArray<String>

A list of one or more subnet IDs in your VPC.

Returns:

  • (Array<String>)

    A list of one or more subnet IDs in your VPC.