Class: Aws::AppStream::Types::VpcConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appstream/types.rb

Overview

Note:

When making an API call, you may pass VpcConfig data as a hash:

{
  subnet_ids: ["String"],
  security_group_ids: ["String"],
}

Describes VPC configuration information for fleets and image builders.

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idsArray<String>

The identifiers of the security groups for the fleet or image builder.

Returns:

  • (Array<String>)


3231
3232
3233
3234
3235
# File 'lib/aws-sdk-appstream/types.rb', line 3231

class VpcConfig < Struct.new(
  :subnet_ids,
  :security_group_ids)
  include Aws::Structure
end

#subnet_idsArray<String>

The identifiers of the subnets to which a network interface is attached from the fleet instance or image builder instance. Fleet instances use one or two subnets. Image builder instances use one subnet.

Returns:

  • (Array<String>)


3231
3232
3233
3234
3235
# File 'lib/aws-sdk-appstream/types.rb', line 3231

class VpcConfig < Struct.new(
  :subnet_ids,
  :security_group_ids)
  include Aws::Structure
end