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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
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 for CreateVpcIngressConnectionInput
impl PartialEq 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 ==
.impl StructuralPartialEq for CreateVpcIngressConnectionInput
Auto Trait Implementations§
impl Freeze for CreateVpcIngressConnectionInput
impl RefUnwindSafe for CreateVpcIngressConnectionInput
impl Send for CreateVpcIngressConnectionInput
impl Sync for CreateVpcIngressConnectionInput
impl Unpin for CreateVpcIngressConnectionInput
impl UnwindSafe for CreateVpcIngressConnectionInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more