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