pub struct SetIpAddressTypeRequest {
pub ip_address_type: String,
pub resource_name: String,
pub resource_type: String,
}Fields§
§ip_address_type: StringThe IP address type to set for the specified resource.
The possible values are ipv4 for IPv4 only, and dualstack for IPv4 and IPv6.
resource_name: StringThe name of the resource for which to set the IP address type.
resource_type: StringThe resource type.
The possible values are Distribution, Instance, and LoadBalancer.
Distribution-related APIs are available only in the N. Virginia (us-east-1) AWS Region. Set your AWS Region configuration to us-east-1 to create, view, or edit distributions.
Trait Implementations§
Source§impl Clone for SetIpAddressTypeRequest
impl Clone for SetIpAddressTypeRequest
Source§fn clone(&self) -> SetIpAddressTypeRequest
fn clone(&self) -> SetIpAddressTypeRequest
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 Debug for SetIpAddressTypeRequest
impl Debug for SetIpAddressTypeRequest
Source§impl Default for SetIpAddressTypeRequest
impl Default for SetIpAddressTypeRequest
Source§fn default() -> SetIpAddressTypeRequest
fn default() -> SetIpAddressTypeRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for SetIpAddressTypeRequest
impl PartialEq for SetIpAddressTypeRequest
Source§impl Serialize for SetIpAddressTypeRequest
impl Serialize for SetIpAddressTypeRequest
impl StructuralPartialEq for SetIpAddressTypeRequest
Auto Trait Implementations§
impl Freeze for SetIpAddressTypeRequest
impl RefUnwindSafe for SetIpAddressTypeRequest
impl Send for SetIpAddressTypeRequest
impl Sync for SetIpAddressTypeRequest
impl Unpin for SetIpAddressTypeRequest
impl UnwindSafe for SetIpAddressTypeRequest
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