pub struct CreateLoadBalancerPolicyInput {
pub load_balancer_name: String,
pub policy_attributes: Option<Vec<PolicyAttribute>>,
pub policy_name: String,
pub policy_type_name: String,
}Expand description
Contains the parameters for CreateLoadBalancerPolicy.
Fields§
§load_balancer_name: StringThe name of the load balancer.
policy_attributes: Option<Vec<PolicyAttribute>>The policy attributes.
policy_name: StringThe name of the load balancer policy to be created. This name must be unique within the set of policies for this load balancer.
policy_type_name: StringThe name of the base policy type. To get the list of policy types, use DescribeLoadBalancerPolicyTypes.
Trait Implementations§
Source§impl Clone for CreateLoadBalancerPolicyInput
impl Clone for CreateLoadBalancerPolicyInput
Source§fn clone(&self) -> CreateLoadBalancerPolicyInput
fn clone(&self) -> CreateLoadBalancerPolicyInput
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 CreateLoadBalancerPolicyInput
impl Default for CreateLoadBalancerPolicyInput
Source§fn default() -> CreateLoadBalancerPolicyInput
fn default() -> CreateLoadBalancerPolicyInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateLoadBalancerPolicyInput
impl PartialEq for CreateLoadBalancerPolicyInput
Source§fn eq(&self, other: &CreateLoadBalancerPolicyInput) -> bool
fn eq(&self, other: &CreateLoadBalancerPolicyInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateLoadBalancerPolicyInput
Auto Trait Implementations§
impl Freeze for CreateLoadBalancerPolicyInput
impl RefUnwindSafe for CreateLoadBalancerPolicyInput
impl Send for CreateLoadBalancerPolicyInput
impl Sync for CreateLoadBalancerPolicyInput
impl Unpin for CreateLoadBalancerPolicyInput
impl UnwindSafe for CreateLoadBalancerPolicyInput
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