Struct aws_sdk_ec2::model::VpcEndpoint
source · #[non_exhaustive]pub struct VpcEndpoint { /* private fields */ }
Expand description
Describes a VPC endpoint.
Implementations§
source§impl VpcEndpoint
impl VpcEndpoint
sourcepub fn vpc_endpoint_id(&self) -> Option<&str>
pub fn vpc_endpoint_id(&self) -> Option<&str>
The ID of the endpoint.
sourcepub fn vpc_endpoint_type(&self) -> Option<&VpcEndpointType>
pub fn vpc_endpoint_type(&self) -> Option<&VpcEndpointType>
The type of endpoint.
sourcepub fn service_name(&self) -> Option<&str>
pub fn service_name(&self) -> Option<&str>
The name of the service to which the endpoint is associated.
sourcepub fn policy_document(&self) -> Option<&str>
pub fn policy_document(&self) -> Option<&str>
The policy document associated with the endpoint, if applicable.
sourcepub fn route_table_ids(&self) -> Option<&[String]>
pub fn route_table_ids(&self) -> Option<&[String]>
(Gateway endpoint) The IDs of the route tables associated with the endpoint.
sourcepub fn subnet_ids(&self) -> Option<&[String]>
pub fn subnet_ids(&self) -> Option<&[String]>
(Interface endpoint) The subnets for the endpoint.
sourcepub fn groups(&self) -> Option<&[SecurityGroupIdentifier]>
pub fn groups(&self) -> Option<&[SecurityGroupIdentifier]>
(Interface endpoint) Information about the security groups that are associated with the network interface.
sourcepub fn ip_address_type(&self) -> Option<&IpAddressType>
pub fn ip_address_type(&self) -> Option<&IpAddressType>
The IP address type for the endpoint.
sourcepub fn dns_options(&self) -> Option<&DnsOptions>
pub fn dns_options(&self) -> Option<&DnsOptions>
The DNS options for the endpoint.
sourcepub fn private_dns_enabled(&self) -> Option<bool>
pub fn private_dns_enabled(&self) -> Option<bool>
(Interface endpoint) Indicates whether the VPC is associated with a private hosted zone.
sourcepub fn requester_managed(&self) -> Option<bool>
pub fn requester_managed(&self) -> Option<bool>
Indicates whether the endpoint is being managed by its service.
sourcepub fn network_interface_ids(&self) -> Option<&[String]>
pub fn network_interface_ids(&self) -> Option<&[String]>
(Interface endpoint) The network interfaces for the endpoint.
sourcepub fn dns_entries(&self) -> Option<&[DnsEntry]>
pub fn dns_entries(&self) -> Option<&[DnsEntry]>
(Interface endpoint) The DNS entries for the endpoint.
sourcepub fn creation_timestamp(&self) -> Option<&DateTime>
pub fn creation_timestamp(&self) -> Option<&DateTime>
The date and time that the endpoint was created.
The tags assigned to the endpoint.
sourcepub fn owner_id(&self) -> Option<&str>
pub fn owner_id(&self) -> Option<&str>
The ID of the Amazon Web Services account that owns the endpoint.
sourcepub fn last_error(&self) -> Option<&LastError>
pub fn last_error(&self) -> Option<&LastError>
The last error that occurred for endpoint.
source§impl VpcEndpoint
impl VpcEndpoint
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self
and other
values to be equal, and is used
by ==
.