#[non_exhaustive]pub struct ListVersionsInputBuilder { /* private fields */ }
Expand description
A builder for ListVersionsInput
.
Implementations§
source§impl ListVersionsInputBuilder
impl ListVersionsInputBuilder
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to include in the response.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to include in the response.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to include in the response.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token to use when requesting the next set of results. You receive this token from a previous ListVersions
operation.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token to use when requesting the next set of results. You receive this token from a previous ListVersions
operation.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token to use when requesting the next set of results. You receive this token from a previous ListVersions
operation.
sourcepub fn workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The ID of the workspace to list the available upgrade versions. If not included, lists all versions of Grafana that are supported for CreateWorkspace
.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The ID of the workspace to list the available upgrade versions. If not included, lists all versions of Grafana that are supported for CreateWorkspace
.
sourcepub fn get_workspace_id(&self) -> &Option<String>
pub fn get_workspace_id(&self) -> &Option<String>
The ID of the workspace to list the available upgrade versions. If not included, lists all versions of Grafana that are supported for CreateWorkspace
.
sourcepub fn build(self) -> Result<ListVersionsInput, BuildError>
pub fn build(self) -> Result<ListVersionsInput, BuildError>
Consumes the builder and constructs a ListVersionsInput
.
source§impl ListVersionsInputBuilder
impl ListVersionsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListVersionsOutput, SdkError<ListVersionsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListVersionsOutput, SdkError<ListVersionsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListVersionsInputBuilder
impl Clone for ListVersionsInputBuilder
source§fn clone(&self) -> ListVersionsInputBuilder
fn clone(&self) -> ListVersionsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListVersionsInputBuilder
impl Debug for ListVersionsInputBuilder
source§impl Default for ListVersionsInputBuilder
impl Default for ListVersionsInputBuilder
source§fn default() -> ListVersionsInputBuilder
fn default() -> ListVersionsInputBuilder
source§impl PartialEq for ListVersionsInputBuilder
impl PartialEq for ListVersionsInputBuilder
source§fn eq(&self, other: &ListVersionsInputBuilder) -> bool
fn eq(&self, other: &ListVersionsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.