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