#[non_exhaustive]pub struct ListVersionsOutputBuilder { /* private fields */ }
Expand description
A builder for ListVersionsOutput
.
Implementations§
source§impl ListVersionsOutputBuilder
impl ListVersionsOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token to use in a subsequent ListVersions
operation to return the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token to use in a subsequent ListVersions
operation to return the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token to use in a subsequent ListVersions
operation to return the next set of results.
sourcepub fn grafana_versions(self, input: impl Into<String>) -> Self
pub fn grafana_versions(self, input: impl Into<String>) -> Self
Appends an item to grafana_versions
.
To override the contents of this collection use set_grafana_versions
.
The Grafana versions available to create. If a workspace ID is included in the request, the Grafana versions to which this workspace can be upgraded.
sourcepub fn set_grafana_versions(self, input: Option<Vec<String>>) -> Self
pub fn set_grafana_versions(self, input: Option<Vec<String>>) -> Self
The Grafana versions available to create. If a workspace ID is included in the request, the Grafana versions to which this workspace can be upgraded.
sourcepub fn get_grafana_versions(&self) -> &Option<Vec<String>>
pub fn get_grafana_versions(&self) -> &Option<Vec<String>>
The Grafana versions available to create. If a workspace ID is included in the request, the Grafana versions to which this workspace can be upgraded.
sourcepub fn build(self) -> ListVersionsOutput
pub fn build(self) -> ListVersionsOutput
Consumes the builder and constructs a ListVersionsOutput
.
Trait Implementations§
source§impl Clone for ListVersionsOutputBuilder
impl Clone for ListVersionsOutputBuilder
source§fn clone(&self) -> ListVersionsOutputBuilder
fn clone(&self) -> ListVersionsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListVersionsOutputBuilder
impl Debug for ListVersionsOutputBuilder
source§impl Default for ListVersionsOutputBuilder
impl Default for ListVersionsOutputBuilder
source§fn default() -> ListVersionsOutputBuilder
fn default() -> ListVersionsOutputBuilder
impl StructuralPartialEq for ListVersionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListVersionsOutputBuilder
impl RefUnwindSafe for ListVersionsOutputBuilder
impl Send for ListVersionsOutputBuilder
impl Sync for ListVersionsOutputBuilder
impl Unpin for ListVersionsOutputBuilder
impl UnwindSafe for ListVersionsOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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