#[non_exhaustive]pub struct M2NonManagedApplicationSummary {
pub vpc_endpoint_service_name: String,
pub listener_port: i32,
pub runtime: M2NonManagedRuntime,
pub web_app_name: Option<String>,
}
Expand description
Specifies the AWS Mainframe Modernization non-managed application summary.
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.vpc_endpoint_service_name: String
The VPC endpoint service name of the AWS Mainframe Modernization non-managed application summary.
listener_port: i32
The listener port of the AWS Mainframe Modernization non-managed application summary.
runtime: M2NonManagedRuntime
The runtime of the AWS Mainframe Modernization non-managed application summary.
web_app_name: Option<String>
The web application name of the AWS Mainframe Modernization non-managed application summary.
Implementations§
source§impl M2NonManagedApplicationSummary
impl M2NonManagedApplicationSummary
sourcepub fn vpc_endpoint_service_name(&self) -> &str
pub fn vpc_endpoint_service_name(&self) -> &str
The VPC endpoint service name of the AWS Mainframe Modernization non-managed application summary.
sourcepub fn listener_port(&self) -> i32
pub fn listener_port(&self) -> i32
The listener port of the AWS Mainframe Modernization non-managed application summary.
sourcepub fn runtime(&self) -> &M2NonManagedRuntime
pub fn runtime(&self) -> &M2NonManagedRuntime
The runtime of the AWS Mainframe Modernization non-managed application summary.
sourcepub fn web_app_name(&self) -> Option<&str>
pub fn web_app_name(&self) -> Option<&str>
The web application name of the AWS Mainframe Modernization non-managed application summary.
source§impl M2NonManagedApplicationSummary
impl M2NonManagedApplicationSummary
sourcepub fn builder() -> M2NonManagedApplicationSummaryBuilder
pub fn builder() -> M2NonManagedApplicationSummaryBuilder
Creates a new builder-style object to manufacture M2NonManagedApplicationSummary
.
Trait Implementations§
source§impl Clone for M2NonManagedApplicationSummary
impl Clone for M2NonManagedApplicationSummary
source§fn clone(&self) -> M2NonManagedApplicationSummary
fn clone(&self) -> M2NonManagedApplicationSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for M2NonManagedApplicationSummary
impl PartialEq for M2NonManagedApplicationSummary
source§fn eq(&self, other: &M2NonManagedApplicationSummary) -> bool
fn eq(&self, other: &M2NonManagedApplicationSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for M2NonManagedApplicationSummary
Auto Trait Implementations§
impl Freeze for M2NonManagedApplicationSummary
impl RefUnwindSafe for M2NonManagedApplicationSummary
impl Send for M2NonManagedApplicationSummary
impl Sync for M2NonManagedApplicationSummary
impl Unpin for M2NonManagedApplicationSummary
impl UnwindSafe for M2NonManagedApplicationSummary
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> 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