Struct aws_sdk_osis::types::VpcEndpoint
source · #[non_exhaustive]pub struct VpcEndpoint {
pub vpc_endpoint_id: Option<String>,
pub vpc_id: Option<String>,
pub vpc_options: Option<VpcOptions>,
}Expand description
An OpenSearch Ingestion-managed VPC endpoint that will access one or more pipelines.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.vpc_endpoint_id: Option<String>The unique identifier of the endpoint.
vpc_id: Option<String>The ID for your VPC. Amazon Web Services PrivateLink generates this value when you create a VPC.
vpc_options: Option<VpcOptions>Information about the VPC, including associated subnets and security groups.
Implementations§
source§impl VpcEndpoint
impl VpcEndpoint
sourcepub fn vpc_endpoint_id(&self) -> Option<&str>
pub fn vpc_endpoint_id(&self) -> Option<&str>
The unique identifier of the endpoint.
sourcepub fn vpc_id(&self) -> Option<&str>
pub fn vpc_id(&self) -> Option<&str>
The ID for your VPC. Amazon Web Services PrivateLink generates this value when you create a VPC.
sourcepub fn vpc_options(&self) -> Option<&VpcOptions>
pub fn vpc_options(&self) -> Option<&VpcOptions>
Information about the VPC, including associated subnets and security groups.
source§impl VpcEndpoint
impl VpcEndpoint
sourcepub fn builder() -> VpcEndpointBuilder
pub fn builder() -> VpcEndpointBuilder
Creates a new builder-style object to manufacture VpcEndpoint.
Trait Implementations§
source§impl Clone for VpcEndpoint
impl Clone for VpcEndpoint
source§fn clone(&self) -> VpcEndpoint
fn clone(&self) -> VpcEndpoint
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 VpcEndpoint
impl Debug for VpcEndpoint
source§impl PartialEq<VpcEndpoint> for VpcEndpoint
impl PartialEq<VpcEndpoint> for VpcEndpoint
source§fn eq(&self, other: &VpcEndpoint) -> bool
fn eq(&self, other: &VpcEndpoint) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for VpcEndpoint
Auto Trait Implementations§
impl RefUnwindSafe for VpcEndpoint
impl Send for VpcEndpoint
impl Sync for VpcEndpoint
impl Unpin for VpcEndpoint
impl UnwindSafe for VpcEndpoint
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