pub struct SetLoadBalancerPoliciesForBackendServerInput {
pub instance_port: i64,
pub load_balancer_name: String,
pub policy_names: Vec<String>,
}Expand description
Contains the parameters for SetLoadBalancerPoliciesForBackendServer.
Fields§
§instance_port: i64The port number associated with the EC2 instance.
load_balancer_name: StringThe name of the load balancer.
policy_names: Vec<String>The names of the policies. If the list is empty, then all current polices are removed from the EC2 instance.
Trait Implementations§
Source§impl Clone for SetLoadBalancerPoliciesForBackendServerInput
impl Clone for SetLoadBalancerPoliciesForBackendServerInput
Source§fn clone(&self) -> SetLoadBalancerPoliciesForBackendServerInput
fn clone(&self) -> SetLoadBalancerPoliciesForBackendServerInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for SetLoadBalancerPoliciesForBackendServerInput
impl Default for SetLoadBalancerPoliciesForBackendServerInput
Source§fn default() -> SetLoadBalancerPoliciesForBackendServerInput
fn default() -> SetLoadBalancerPoliciesForBackendServerInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for SetLoadBalancerPoliciesForBackendServerInput
impl PartialEq for SetLoadBalancerPoliciesForBackendServerInput
Source§fn eq(&self, other: &SetLoadBalancerPoliciesForBackendServerInput) -> bool
fn eq(&self, other: &SetLoadBalancerPoliciesForBackendServerInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SetLoadBalancerPoliciesForBackendServerInput
Auto Trait Implementations§
impl Freeze for SetLoadBalancerPoliciesForBackendServerInput
impl RefUnwindSafe for SetLoadBalancerPoliciesForBackendServerInput
impl Send for SetLoadBalancerPoliciesForBackendServerInput
impl Sync for SetLoadBalancerPoliciesForBackendServerInput
impl Unpin for SetLoadBalancerPoliciesForBackendServerInput
impl UnwindSafe for SetLoadBalancerPoliciesForBackendServerInput
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