#[non_exhaustive]pub struct GetLaunchConfigurationOutput {
pub source_server_id: Option<String>,
pub name: Option<String>,
pub ec2_launch_template_id: Option<String>,
pub launch_disposition: Option<LaunchDisposition>,
pub target_instance_type_right_sizing_method: Option<TargetInstanceTypeRightSizingMethod>,
pub copy_private_ip: Option<bool>,
pub copy_tags: Option<bool>,
pub licensing: Option<Licensing>,
pub post_launch_enabled: Option<bool>,
pub launch_into_instance_properties: Option<LaunchIntoInstanceProperties>,
/* private fields */
}
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.source_server_id: Option<String>
The ID of the Source Server for this launch configuration.
name: Option<String>
The name of the launch configuration.
ec2_launch_template_id: Option<String>
The EC2 launch template ID of this launch configuration.
launch_disposition: Option<LaunchDisposition>
The state of the Recovery Instance in EC2 after the recovery operation.
target_instance_type_right_sizing_method: Option<TargetInstanceTypeRightSizingMethod>
Whether Elastic Disaster Recovery should try to automatically choose the instance type that best matches the OS, CPU, and RAM of your Source Server.
copy_private_ip: Option<bool>
Whether we should copy the Private IP of the Source Server to the Recovery Instance.
Whether we want to copy the tags of the Source Server to the EC2 machine of the Recovery Instance.
licensing: Option<Licensing>
The licensing configuration to be used for this launch configuration.
post_launch_enabled: Option<bool>
Whether we want to activate post-launch actions for the Source Server.
launch_into_instance_properties: Option<LaunchIntoInstanceProperties>
Launch into existing instance properties.
Implementations§
source§impl GetLaunchConfigurationOutput
impl GetLaunchConfigurationOutput
sourcepub fn source_server_id(&self) -> Option<&str>
pub fn source_server_id(&self) -> Option<&str>
The ID of the Source Server for this launch configuration.
sourcepub fn ec2_launch_template_id(&self) -> Option<&str>
pub fn ec2_launch_template_id(&self) -> Option<&str>
The EC2 launch template ID of this launch configuration.
sourcepub fn launch_disposition(&self) -> Option<&LaunchDisposition>
pub fn launch_disposition(&self) -> Option<&LaunchDisposition>
The state of the Recovery Instance in EC2 after the recovery operation.
sourcepub fn target_instance_type_right_sizing_method(
&self,
) -> Option<&TargetInstanceTypeRightSizingMethod>
pub fn target_instance_type_right_sizing_method( &self, ) -> Option<&TargetInstanceTypeRightSizingMethod>
Whether Elastic Disaster Recovery should try to automatically choose the instance type that best matches the OS, CPU, and RAM of your Source Server.
sourcepub fn copy_private_ip(&self) -> Option<bool>
pub fn copy_private_ip(&self) -> Option<bool>
Whether we should copy the Private IP of the Source Server to the Recovery Instance.
Whether we want to copy the tags of the Source Server to the EC2 machine of the Recovery Instance.
sourcepub fn licensing(&self) -> Option<&Licensing>
pub fn licensing(&self) -> Option<&Licensing>
The licensing configuration to be used for this launch configuration.
sourcepub fn post_launch_enabled(&self) -> Option<bool>
pub fn post_launch_enabled(&self) -> Option<bool>
Whether we want to activate post-launch actions for the Source Server.
sourcepub fn launch_into_instance_properties(
&self,
) -> Option<&LaunchIntoInstanceProperties>
pub fn launch_into_instance_properties( &self, ) -> Option<&LaunchIntoInstanceProperties>
Launch into existing instance properties.
source§impl GetLaunchConfigurationOutput
impl GetLaunchConfigurationOutput
sourcepub fn builder() -> GetLaunchConfigurationOutputBuilder
pub fn builder() -> GetLaunchConfigurationOutputBuilder
Creates a new builder-style object to manufacture GetLaunchConfigurationOutput
.
Trait Implementations§
source§impl Clone for GetLaunchConfigurationOutput
impl Clone for GetLaunchConfigurationOutput
source§fn clone(&self) -> GetLaunchConfigurationOutput
fn clone(&self) -> GetLaunchConfigurationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetLaunchConfigurationOutput
impl Debug for GetLaunchConfigurationOutput
source§impl PartialEq for GetLaunchConfigurationOutput
impl PartialEq for GetLaunchConfigurationOutput
source§fn eq(&self, other: &GetLaunchConfigurationOutput) -> bool
fn eq(&self, other: &GetLaunchConfigurationOutput) -> bool
self
and other
values to be equal, and is used by ==
.source§impl RequestId for GetLaunchConfigurationOutput
impl RequestId for GetLaunchConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetLaunchConfigurationOutput
Auto Trait Implementations§
impl Freeze for GetLaunchConfigurationOutput
impl RefUnwindSafe for GetLaunchConfigurationOutput
impl Send for GetLaunchConfigurationOutput
impl Sync for GetLaunchConfigurationOutput
impl Unpin for GetLaunchConfigurationOutput
impl UnwindSafe for GetLaunchConfigurationOutput
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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