Struct aws_sdk_proton::operation::list_service_template_versions::ListServiceTemplateVersionsInput
source · #[non_exhaustive]pub struct ListServiceTemplateVersionsInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub template_name: Option<String>,
pub major_version: Option<String>,
}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.next_token: Option<String>A token that indicates the location of the next major or minor version in the array of major or minor versions of a service template, after the list of major or minor versions that was previously requested.
max_results: Option<i32>The maximum number of major or minor versions of a service template to list.
template_name: Option<String>The name of the service template.
major_version: Option<String>To view a list of minor of versions under a major version of a service template, include major Version.
To view a list of major versions of a service template, exclude major Version.
Implementations§
source§impl ListServiceTemplateVersionsInput
impl ListServiceTemplateVersionsInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token that indicates the location of the next major or minor version in the array of major or minor versions of a service template, after the list of major or minor versions that was previously requested.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of major or minor versions of a service template to list.
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the service template.
sourcepub fn major_version(&self) -> Option<&str>
pub fn major_version(&self) -> Option<&str>
To view a list of minor of versions under a major version of a service template, include major Version.
To view a list of major versions of a service template, exclude major Version.
source§impl ListServiceTemplateVersionsInput
impl ListServiceTemplateVersionsInput
sourcepub fn builder() -> ListServiceTemplateVersionsInputBuilder
pub fn builder() -> ListServiceTemplateVersionsInputBuilder
Creates a new builder-style object to manufacture ListServiceTemplateVersionsInput.
Trait Implementations§
source§impl Clone for ListServiceTemplateVersionsInput
impl Clone for ListServiceTemplateVersionsInput
source§fn clone(&self) -> ListServiceTemplateVersionsInput
fn clone(&self) -> ListServiceTemplateVersionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ListServiceTemplateVersionsInput
impl PartialEq for ListServiceTemplateVersionsInput
source§fn eq(&self, other: &ListServiceTemplateVersionsInput) -> bool
fn eq(&self, other: &ListServiceTemplateVersionsInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListServiceTemplateVersionsInput
Auto Trait Implementations§
impl Freeze for ListServiceTemplateVersionsInput
impl RefUnwindSafe for ListServiceTemplateVersionsInput
impl Send for ListServiceTemplateVersionsInput
impl Sync for ListServiceTemplateVersionsInput
impl Unpin for ListServiceTemplateVersionsInput
impl UnwindSafe for ListServiceTemplateVersionsInput
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