pulumi_wasm_providers_aws_mini::ec2::vpc_endpoint_service

Struct VpcEndpointServiceResult

source
pub struct VpcEndpointServiceResult {
Show 17 fields pub acceptance_required: Output<bool>, pub allowed_principals: Output<Vec<String>>, pub arn: Output<String>, pub availability_zones: Output<Vec<String>>, pub base_endpoint_dns_names: Output<Vec<String>>, pub gateway_load_balancer_arns: Output<Option<Vec<String>>>, pub manages_vpc_endpoints: Output<bool>, pub network_load_balancer_arns: Output<Option<Vec<String>>>, pub private_dns_name: Output<String>, pub private_dns_name_configurations: Output<Vec<VpcEndpointServicePrivateDnsNameConfiguration>>, pub service_name: Output<String>, pub service_type: Output<String>, pub state: Output<String>, pub supported_ip_address_types: Output<Vec<String>>, pub supported_regions: Output<Vec<String>>, pub tags: Output<Option<HashMap<String, String>>>, pub tags_all: Output<HashMap<String, String>>,
}

Fields§

§acceptance_required: Output<bool>

Whether or not VPC endpoint connection requests to the service must be accepted by the service owner - true or false.

§allowed_principals: Output<Vec<String>>

The ARNs of one or more principals allowed to discover the endpoint service.

§arn: Output<String>

The Amazon Resource Name (ARN) of the VPC endpoint service.

§availability_zones: Output<Vec<String>>

A set of Availability Zones in which the service is available.

§base_endpoint_dns_names: Output<Vec<String>>

A set of DNS names for the service.

§gateway_load_balancer_arns: Output<Option<Vec<String>>>

Amazon Resource Names (ARNs) of one or more Gateway Load Balancers for the endpoint service.

§manages_vpc_endpoints: Output<bool>

Whether or not the service manages its VPC endpoints - true or false.

§network_load_balancer_arns: Output<Option<Vec<String>>>

Amazon Resource Names (ARNs) of one or more Network Load Balancers for the endpoint service.

§private_dns_name: Output<String>

The private DNS name for the service.

§private_dns_name_configurations: Output<Vec<VpcEndpointServicePrivateDnsNameConfiguration>>

List of objects containing information about the endpoint service private DNS name configuration.

§service_name: Output<String>

The service name.

§service_type: Output<String>

The service type, Gateway or Interface.

§state: Output<String>

Verification state of the VPC endpoint service. Consumers of the endpoint service can use the private name only when the state is verified.

§supported_ip_address_types: Output<Vec<String>>

The supported IP address types. The possible values are ipv4 and ipv6.

§supported_regions: Output<Vec<String>>

The set of regions from which service consumers can access the service.

§tags: Output<Option<HashMap<String, String>>>

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

§tags_all: Output<HashMap<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.