#[non_exhaustive]pub struct AwsEc2VpcEndpointServiceDetails {
pub acceptance_required: Option<bool>,
pub availability_zones: Option<Vec<String>>,
pub base_endpoint_dns_names: Option<Vec<String>>,
pub manages_vpc_endpoints: Option<bool>,
pub gateway_load_balancer_arns: Option<Vec<String>>,
pub network_load_balancer_arns: Option<Vec<String>>,
pub private_dns_name: Option<String>,
pub service_id: Option<String>,
pub service_name: Option<String>,
pub service_state: Option<String>,
pub service_type: Option<Vec<AwsEc2VpcEndpointServiceServiceTypeDetails>>,
}
Expand description
Contains details about the service configuration for a VPC endpoint service.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.acceptance_required: Option<bool>
Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first be accepted.
availability_zones: Option<Vec<String>>
The Availability Zones where the service is available.
base_endpoint_dns_names: Option<Vec<String>>
The DNS names for the service.
manages_vpc_endpoints: Option<bool>
Whether the service manages its VPC endpoints.
gateway_load_balancer_arns: Option<Vec<String>>
The ARNs of the Gateway Load Balancers for the service.
network_load_balancer_arns: Option<Vec<String>>
The ARNs of the Network Load Balancers for the service.
private_dns_name: Option<String>
The private DNS name for the service.
service_id: Option<String>
The identifier of the service.
service_name: Option<String>
The name of the service.
service_state: Option<String>
The current state of the service. Valid values are as follows:
-
Available
-
Deleted
-
Deleting
-
Failed
-
Pending
service_type: Option<Vec<AwsEc2VpcEndpointServiceServiceTypeDetails>>
The types for the service.
Implementations§
source§impl AwsEc2VpcEndpointServiceDetails
impl AwsEc2VpcEndpointServiceDetails
sourcepub fn acceptance_required(&self) -> Option<bool>
pub fn acceptance_required(&self) -> Option<bool>
Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first be accepted.
sourcepub fn availability_zones(&self) -> &[String]
pub fn availability_zones(&self) -> &[String]
The Availability Zones where the service is available.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .availability_zones.is_none()
.
sourcepub fn base_endpoint_dns_names(&self) -> &[String]
pub fn base_endpoint_dns_names(&self) -> &[String]
The DNS names for the service.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .base_endpoint_dns_names.is_none()
.
sourcepub fn manages_vpc_endpoints(&self) -> Option<bool>
pub fn manages_vpc_endpoints(&self) -> Option<bool>
Whether the service manages its VPC endpoints.
sourcepub fn gateway_load_balancer_arns(&self) -> &[String]
pub fn gateway_load_balancer_arns(&self) -> &[String]
The ARNs of the Gateway Load Balancers for the service.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .gateway_load_balancer_arns.is_none()
.
sourcepub fn network_load_balancer_arns(&self) -> &[String]
pub fn network_load_balancer_arns(&self) -> &[String]
The ARNs of the Network Load Balancers for the service.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .network_load_balancer_arns.is_none()
.
sourcepub fn private_dns_name(&self) -> Option<&str>
pub fn private_dns_name(&self) -> Option<&str>
The private DNS name for the service.
sourcepub fn service_id(&self) -> Option<&str>
pub fn service_id(&self) -> Option<&str>
The identifier of the service.
sourcepub fn service_name(&self) -> Option<&str>
pub fn service_name(&self) -> Option<&str>
The name of the service.
sourcepub fn service_state(&self) -> Option<&str>
pub fn service_state(&self) -> Option<&str>
The current state of the service. Valid values are as follows:
-
Available
-
Deleted
-
Deleting
-
Failed
-
Pending
sourcepub fn service_type(&self) -> &[AwsEc2VpcEndpointServiceServiceTypeDetails]
pub fn service_type(&self) -> &[AwsEc2VpcEndpointServiceServiceTypeDetails]
The types for the service.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .service_type.is_none()
.
source§impl AwsEc2VpcEndpointServiceDetails
impl AwsEc2VpcEndpointServiceDetails
sourcepub fn builder() -> AwsEc2VpcEndpointServiceDetailsBuilder
pub fn builder() -> AwsEc2VpcEndpointServiceDetailsBuilder
Creates a new builder-style object to manufacture AwsEc2VpcEndpointServiceDetails
.
Trait Implementations§
source§impl Clone for AwsEc2VpcEndpointServiceDetails
impl Clone for AwsEc2VpcEndpointServiceDetails
source§fn clone(&self) -> AwsEc2VpcEndpointServiceDetails
fn clone(&self) -> AwsEc2VpcEndpointServiceDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AwsEc2VpcEndpointServiceDetails
impl PartialEq for AwsEc2VpcEndpointServiceDetails
source§fn eq(&self, other: &AwsEc2VpcEndpointServiceDetails) -> bool
fn eq(&self, other: &AwsEc2VpcEndpointServiceDetails) -> bool
self
and other
values to be equal, and is used
by ==
.