Class: Aws::DirectConnect::Types::CreateBGPPeerRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectConnect::Types::CreateBGPPeerRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directconnect/types.rb
Overview
Note:
When making an API call, you may pass CreateBGPPeerRequest data as a hash:
{
virtual_interface_id: "VirtualInterfaceId",
new_bgp_peer: {
asn: 1,
auth_key: "BGPAuthKey",
address_family: "ipv4", # accepts ipv4, ipv6
amazon_address: "AmazonAddress",
customer_address: "CustomerAddress",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#new_bgp_peer ⇒ Types::NewBGPPeer
Information about the BGP peer.
-
#virtual_interface_id ⇒ String
The ID of the virtual interface.
Instance Attribute Details
#new_bgp_peer ⇒ Types::NewBGPPeer
Information about the BGP peer.
1106 1107 1108 1109 1110 1111 |
# File 'lib/aws-sdk-directconnect/types.rb', line 1106 class CreateBGPPeerRequest < Struct.new( :virtual_interface_id, :new_bgp_peer) SENSITIVE = [] include Aws::Structure end |
#virtual_interface_id ⇒ String
The ID of the virtual interface.
1106 1107 1108 1109 1110 1111 |
# File 'lib/aws-sdk-directconnect/types.rb', line 1106 class CreateBGPPeerRequest < Struct.new( :virtual_interface_id, :new_bgp_peer) SENSITIVE = [] include Aws::Structure end |