Struct aws_sdk_apptest::types::M2ManagedApplication
source · #[non_exhaustive]pub struct M2ManagedApplication {
pub application_id: String,
pub runtime: M2ManagedRuntime,
pub vpc_endpoint_service_name: Option<String>,
pub listener_port: Option<String>,
}
Expand description
Specifies the AWS Mainframe Modernization managed application.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_id: String
The application ID of the AWS Mainframe Modernization managed application.
runtime: M2ManagedRuntime
The runtime of the AWS Mainframe Modernization managed application.
vpc_endpoint_service_name: Option<String>
The VPC endpoint service name of the AWS Mainframe Modernization managed application.
listener_port: Option<String>
The listener port of the AWS Mainframe Modernization managed application.
Implementations§
source§impl M2ManagedApplication
impl M2ManagedApplication
sourcepub fn application_id(&self) -> &str
pub fn application_id(&self) -> &str
The application ID of the AWS Mainframe Modernization managed application.
sourcepub fn runtime(&self) -> &M2ManagedRuntime
pub fn runtime(&self) -> &M2ManagedRuntime
The runtime of the AWS Mainframe Modernization managed application.
sourcepub fn vpc_endpoint_service_name(&self) -> Option<&str>
pub fn vpc_endpoint_service_name(&self) -> Option<&str>
The VPC endpoint service name of the AWS Mainframe Modernization managed application.
sourcepub fn listener_port(&self) -> Option<&str>
pub fn listener_port(&self) -> Option<&str>
The listener port of the AWS Mainframe Modernization managed application.
source§impl M2ManagedApplication
impl M2ManagedApplication
sourcepub fn builder() -> M2ManagedApplicationBuilder
pub fn builder() -> M2ManagedApplicationBuilder
Creates a new builder-style object to manufacture M2ManagedApplication
.
Trait Implementations§
source§impl Clone for M2ManagedApplication
impl Clone for M2ManagedApplication
source§fn clone(&self) -> M2ManagedApplication
fn clone(&self) -> M2ManagedApplication
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for M2ManagedApplication
impl Debug for M2ManagedApplication
source§impl PartialEq for M2ManagedApplication
impl PartialEq for M2ManagedApplication
source§fn eq(&self, other: &M2ManagedApplication) -> bool
fn eq(&self, other: &M2ManagedApplication) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for M2ManagedApplication
Auto Trait Implementations§
impl Freeze for M2ManagedApplication
impl RefUnwindSafe for M2ManagedApplication
impl Send for M2ManagedApplication
impl Sync for M2ManagedApplication
impl Unpin for M2ManagedApplication
impl UnwindSafe for M2ManagedApplication
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.