Class: Aws::MediaConnect::Types::VpcRouterNetworkInterfaceConfiguration

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

Overview

The configuration settings for a router network interface within a VPC, including the security group IDs and subnet ID.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idsArray<String>

The IDs of the security groups to associate with the router network interface within the VPC.

Returns:

  • (Array<String>)


9315
9316
9317
9318
9319
9320
# File 'lib/aws-sdk-mediaconnect/types.rb', line 9315

class VpcRouterNetworkInterfaceConfiguration < Struct.new(
  :security_group_ids,
  :subnet_id)
  SENSITIVE = []
  include Aws::Structure
end

#subnet_idString

The ID of the subnet within the VPC to associate the router network interface with.

Returns:

  • (String)


9315
9316
9317
9318
9319
9320
# File 'lib/aws-sdk-mediaconnect/types.rb', line 9315

class VpcRouterNetworkInterfaceConfiguration < Struct.new(
  :security_group_ids,
  :subnet_id)
  SENSITIVE = []
  include Aws::Structure
end