pub struct EndpointService {
pub service_id: String,
pub service_name: String,
pub state: String,
pub acceptance_required: bool,
pub payer_responsibility: String,
pub nlb_arns: Vec<String>,
}Expand description
A VPC endpoint service configuration (PrivateLink provider side).
Fields§
§service_id: String§service_name: String§state: String§acceptance_required: bool§payer_responsibility: String§nlb_arns: Vec<String>Trait Implementations§
Source§impl Clone for EndpointService
impl Clone for EndpointService
Source§fn clone(&self) -> EndpointService
fn clone(&self) -> EndpointService
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 moreSource§impl Debug for EndpointService
impl Debug for EndpointService
Source§impl<'de> Deserialize<'de> for EndpointService
impl<'de> Deserialize<'de> for EndpointService
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
Auto Trait Implementations§
impl Freeze for EndpointService
impl RefUnwindSafe for EndpointService
impl Send for EndpointService
impl Sync for EndpointService
impl Unpin for EndpointService
impl UnsafeUnpin for EndpointService
impl UnwindSafe for EndpointService
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