Class: Aws::DirectConnect::Types::UpdateVirtualInterfaceAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectConnect::Types::UpdateVirtualInterfaceAttributesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directconnect/types.rb
Overview
Note:
When making an API call, you may pass UpdateVirtualInterfaceAttributesRequest data as a hash:
{
virtual_interface_id: "VirtualInterfaceId", # required
mtu: 1,
enable_site_link: false,
virtual_interface_name: "VirtualInterfaceName",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enable_site_link ⇒ Boolean
Indicates whether to enable or disable SiteLink.
-
#mtu ⇒ Integer
The maximum transmission unit (MTU), in bytes.
-
#virtual_interface_id ⇒ String
The ID of the virtual private interface.
-
#virtual_interface_name ⇒ String
The name of the virtual private interface.
Instance Attribute Details
#enable_site_link ⇒ Boolean
Indicates whether to enable or disable SiteLink.
4447 4448 4449 4450 4451 4452 4453 4454 |
# File 'lib/aws-sdk-directconnect/types.rb', line 4447 class UpdateVirtualInterfaceAttributesRequest < Struct.new( :virtual_interface_id, :mtu, :enable_site_link, :virtual_interface_name) SENSITIVE = [] include Aws::Structure end |
#mtu ⇒ Integer
The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500.
4447 4448 4449 4450 4451 4452 4453 4454 |
# File 'lib/aws-sdk-directconnect/types.rb', line 4447 class UpdateVirtualInterfaceAttributesRequest < Struct.new( :virtual_interface_id, :mtu, :enable_site_link, :virtual_interface_name) SENSITIVE = [] include Aws::Structure end |
#virtual_interface_id ⇒ String
The ID of the virtual private interface.
4447 4448 4449 4450 4451 4452 4453 4454 |
# File 'lib/aws-sdk-directconnect/types.rb', line 4447 class UpdateVirtualInterfaceAttributesRequest < Struct.new( :virtual_interface_id, :mtu, :enable_site_link, :virtual_interface_name) SENSITIVE = [] include Aws::Structure end |
#virtual_interface_name ⇒ String
The name of the virtual private interface.
4447 4448 4449 4450 4451 4452 4453 4454 |
# File 'lib/aws-sdk-directconnect/types.rb', line 4447 class UpdateVirtualInterfaceAttributesRequest < Struct.new( :virtual_interface_id, :mtu, :enable_site_link, :virtual_interface_name) SENSITIVE = [] include Aws::Structure end |