Struct aws_sdk_apprunner::operation::create_vpc_ingress_connection::CreateVpcIngressConnectionInput
source · #[non_exhaustive]pub struct CreateVpcIngressConnectionInput {
pub service_arn: Option<String>,
pub vpc_ingress_connection_name: Option<String>,
pub ingress_vpc_configuration: Option<IngressVpcConfiguration>,
pub tags: Option<Vec<Tag>>,
}
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.service_arn: Option<String>
The Amazon Resource Name (ARN) for this App Runner service that is used to create the VPC Ingress Connection resource.
vpc_ingress_connection_name: Option<String>
A name for the VPC Ingress Connection resource. It must be unique across all the active VPC Ingress Connections in your Amazon Web Services account in the Amazon Web Services Region.
ingress_vpc_configuration: Option<IngressVpcConfiguration>
Specifications for the customer’s Amazon VPC and the related Amazon Web Services PrivateLink VPC endpoint that are used to create the VPC Ingress Connection resource.
An optional list of metadata items that you can associate with the VPC Ingress Connection resource. A tag is a key-value pair.
Implementations§
source§impl CreateVpcIngressConnectionInput
impl CreateVpcIngressConnectionInput
sourcepub fn service_arn(&self) -> Option<&str>
pub fn service_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for this App Runner service that is used to create the VPC Ingress Connection resource.
sourcepub fn vpc_ingress_connection_name(&self) -> Option<&str>
pub fn vpc_ingress_connection_name(&self) -> Option<&str>
A name for the VPC Ingress Connection resource. It must be unique across all the active VPC Ingress Connections in your Amazon Web Services account in the Amazon Web Services Region.
sourcepub fn ingress_vpc_configuration(&self) -> Option<&IngressVpcConfiguration>
pub fn ingress_vpc_configuration(&self) -> Option<&IngressVpcConfiguration>
Specifications for the customer’s Amazon VPC and the related Amazon Web Services PrivateLink VPC endpoint that are used to create the VPC Ingress Connection resource.
An optional list of metadata items that you can associate with the VPC Ingress Connection resource. A tag is a key-value pair.
source§impl CreateVpcIngressConnectionInput
impl CreateVpcIngressConnectionInput
sourcepub fn builder() -> CreateVpcIngressConnectionInputBuilder
pub fn builder() -> CreateVpcIngressConnectionInputBuilder
Creates a new builder-style object to manufacture CreateVpcIngressConnectionInput
.
Trait Implementations§
source§impl Clone for CreateVpcIngressConnectionInput
impl Clone for CreateVpcIngressConnectionInput
source§fn clone(&self) -> CreateVpcIngressConnectionInput
fn clone(&self) -> CreateVpcIngressConnectionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<CreateVpcIngressConnectionInput> for CreateVpcIngressConnectionInput
impl PartialEq<CreateVpcIngressConnectionInput> for CreateVpcIngressConnectionInput
source§fn eq(&self, other: &CreateVpcIngressConnectionInput) -> bool
fn eq(&self, other: &CreateVpcIngressConnectionInput) -> bool
self
and other
values to be equal, and is used
by ==
.