pub struct AccessEndpoint {
pub endpoint_type: String,
pub vpce_id: Option<String>,
}
Expand description
Describes an interface VPC endpoint (interface endpoint) that lets you create a private connection between the virtual private cloud (VPC) that you specify and AppStream 2.0. When you specify an interface endpoint for a stack, users of the stack can connect to AppStream 2.0 only through that endpoint. When you specify an interface endpoint for an image builder, administrators can connect to the image builder only through that endpoint.
Fields§
§endpoint_type: String
The type of interface endpoint.
vpce_id: Option<String>
The identifier (ID) of the VPC in which the interface endpoint is used.
Trait Implementations§
Source§impl Clone for AccessEndpoint
impl Clone for AccessEndpoint
Source§fn clone(&self) -> AccessEndpoint
fn clone(&self) -> AccessEndpoint
Returns a copy 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 AccessEndpoint
impl Debug for AccessEndpoint
Source§impl Default for AccessEndpoint
impl Default for AccessEndpoint
Source§fn default() -> AccessEndpoint
fn default() -> AccessEndpoint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccessEndpoint
impl<'de> Deserialize<'de> for AccessEndpoint
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
Source§impl PartialEq for AccessEndpoint
impl PartialEq for AccessEndpoint
Source§impl Serialize for AccessEndpoint
impl Serialize for AccessEndpoint
impl StructuralPartialEq for AccessEndpoint
Auto Trait Implementations§
impl Freeze for AccessEndpoint
impl RefUnwindSafe for AccessEndpoint
impl Send for AccessEndpoint
impl Sync for AccessEndpoint
impl Unpin for AccessEndpoint
impl UnwindSafe for AccessEndpoint
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