#[non_exhaustive]pub struct CreateLaunchTemplateOutput {
pub launch_template: Option<LaunchTemplate>,
pub warning: Option<ValidationWarning>,
/* private fields */
}
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.launch_template: Option<LaunchTemplate>
Information about the launch template.
warning: Option<ValidationWarning>
If the launch template contains parameters or parameter combinations that are not valid, an error code and an error message are returned for each issue that's found.
Implementations§
source§impl CreateLaunchTemplateOutput
impl CreateLaunchTemplateOutput
sourcepub fn launch_template(&self) -> Option<&LaunchTemplate>
pub fn launch_template(&self) -> Option<&LaunchTemplate>
Information about the launch template.
sourcepub fn warning(&self) -> Option<&ValidationWarning>
pub fn warning(&self) -> Option<&ValidationWarning>
If the launch template contains parameters or parameter combinations that are not valid, an error code and an error message are returned for each issue that's found.
source§impl CreateLaunchTemplateOutput
impl CreateLaunchTemplateOutput
sourcepub fn builder() -> CreateLaunchTemplateOutputBuilder
pub fn builder() -> CreateLaunchTemplateOutputBuilder
Creates a new builder-style object to manufacture CreateLaunchTemplateOutput
.
Trait Implementations§
source§impl Clone for CreateLaunchTemplateOutput
impl Clone for CreateLaunchTemplateOutput
source§fn clone(&self) -> CreateLaunchTemplateOutput
fn clone(&self) -> CreateLaunchTemplateOutput
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 CreateLaunchTemplateOutput
impl Debug for CreateLaunchTemplateOutput
source§impl PartialEq<CreateLaunchTemplateOutput> for CreateLaunchTemplateOutput
impl PartialEq<CreateLaunchTemplateOutput> for CreateLaunchTemplateOutput
source§fn eq(&self, other: &CreateLaunchTemplateOutput) -> bool
fn eq(&self, other: &CreateLaunchTemplateOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateLaunchTemplateOutput
impl RequestId for CreateLaunchTemplateOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateLaunchTemplateOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateLaunchTemplateOutput
impl Send for CreateLaunchTemplateOutput
impl Sync for CreateLaunchTemplateOutput
impl Unpin for CreateLaunchTemplateOutput
impl UnwindSafe for CreateLaunchTemplateOutput
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