pub enum LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol {
Http,
Https,
Http2,
Http3,
Tcp,
Udp,
}Expand description
The protocol used for traffic to the load balancer. The possible values are: http, https, http2, http3, tcp, or udp. If you set the entry_protocol to udp, the target_protocol must be set to udp. When using UDP, the load balancer requires that you set up a health check with a port that uses TCP, HTTP, or HTTPS to work properly.
JSON schema
{
"description": "The protocol used for traffic to the load balancer. The possible values are: `http`, `https`, `http2`, `http3`, `tcp`, or `udp`. If you set the `entry_protocol` to `udp`, the `target_protocol` must be set to `udp`. When using UDP, the load balancer requires that you set up a health check with a port that uses TCP, HTTP, or HTTPS to work properly.\n",
"examples": [
"https"
],
"type": "string",
"enum": [
"http",
"https",
"http2",
"http3",
"tcp",
"udp"
]
}Variants§
Trait Implementations§
Source§impl Clone for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl Clone for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Source§fn clone(
&self,
) -> LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
fn clone( &self, ) -> LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Source§impl<'de> Deserialize<'de> for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl<'de> Deserialize<'de> for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Source§impl From<&LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol> for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl From<&LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol> for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Source§fn from(
value: &LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol,
) -> Self
fn from( value: &LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol, ) -> Self
Converts to this type from the input type.
Source§impl Ord for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl Ord for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Source§fn cmp(
&self,
other: &LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol,
) -> Ordering
fn cmp( &self, other: &LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol, ) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialOrd for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl PartialOrd for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Source§fn partial_cmp(
&self,
other: &LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol,
) -> Option<Ordering>
fn partial_cmp( &self, other: &LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol, ) -> Option<Ordering>
impl StructuralPartialEq for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Source§impl TryFrom<&String> for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl TryFrom<&String> for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl TryFrom<&str> for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl TryFrom<String> for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl RefUnwindSafe for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl Send for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl Sync for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl Unpin for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl UnsafeUnpin for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
impl UnwindSafe for LoadBalancersRemoveForwardingRulesBodyForwardingRulesItemEntryProtocol
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.