Struct aws_sdk_ec2::operation::describe_launch_template_versions::DescribeLaunchTemplateVersionsOutput
source · #[non_exhaustive]pub struct DescribeLaunchTemplateVersionsOutput {
pub launch_template_versions: Option<Vec<LaunchTemplateVersion>>,
pub next_token: Option<String>,
/* 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_versions: Option<Vec<LaunchTemplateVersion>>
Information about the launch template versions.
next_token: Option<String>
The token to use to retrieve the next page of results. This value is null
when there are no more results to return.
Implementations§
source§impl DescribeLaunchTemplateVersionsOutput
impl DescribeLaunchTemplateVersionsOutput
sourcepub fn launch_template_versions(&self) -> Option<&[LaunchTemplateVersion]>
pub fn launch_template_versions(&self) -> Option<&[LaunchTemplateVersion]>
Information about the launch template versions.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use to retrieve the next page of results. This value is null
when there are no more results to return.
source§impl DescribeLaunchTemplateVersionsOutput
impl DescribeLaunchTemplateVersionsOutput
sourcepub fn builder() -> DescribeLaunchTemplateVersionsOutputBuilder
pub fn builder() -> DescribeLaunchTemplateVersionsOutputBuilder
Creates a new builder-style object to manufacture DescribeLaunchTemplateVersionsOutput
.
Trait Implementations§
source§impl Clone for DescribeLaunchTemplateVersionsOutput
impl Clone for DescribeLaunchTemplateVersionsOutput
source§fn clone(&self) -> DescribeLaunchTemplateVersionsOutput
fn clone(&self) -> DescribeLaunchTemplateVersionsOutput
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 PartialEq<DescribeLaunchTemplateVersionsOutput> for DescribeLaunchTemplateVersionsOutput
impl PartialEq<DescribeLaunchTemplateVersionsOutput> for DescribeLaunchTemplateVersionsOutput
source§fn eq(&self, other: &DescribeLaunchTemplateVersionsOutput) -> bool
fn eq(&self, other: &DescribeLaunchTemplateVersionsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeLaunchTemplateVersionsOutput
impl RequestId for DescribeLaunchTemplateVersionsOutput
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 DescribeLaunchTemplateVersionsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeLaunchTemplateVersionsOutput
impl Send for DescribeLaunchTemplateVersionsOutput
impl Sync for DescribeLaunchTemplateVersionsOutput
impl Unpin for DescribeLaunchTemplateVersionsOutput
impl UnwindSafe for DescribeLaunchTemplateVersionsOutput
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