#[non_exhaustive]pub struct ListDeploymentsInputBuilder { /* private fields */ }Expand description
A builder for ListDeploymentsInput.
Implementations§
source§impl ListDeploymentsInputBuilder
impl ListDeploymentsInputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A pagination token returned from a previous call to this operation. This specifies the next item to return. To return to the beginning of the list, exclude this parameter.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A pagination token returned from a previous call to this operation. This specifies the next item to return. To return to the beginning of the list, exclude this parameter.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A pagination token returned from a previous call to this operation. This specifies the next item to return. To return to the beginning of the list, exclude this parameter.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of objects to return.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of objects to return.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of objects to return.
sourcepub fn application_id(self, input: impl Into<String>) -> Self
pub fn application_id(self, input: impl Into<String>) -> Self
The application identifier.
This field is required.sourcepub fn set_application_id(self, input: Option<String>) -> Self
pub fn set_application_id(self, input: Option<String>) -> Self
The application identifier.
sourcepub fn get_application_id(&self) -> &Option<String>
pub fn get_application_id(&self) -> &Option<String>
The application identifier.
sourcepub fn build(self) -> Result<ListDeploymentsInput, BuildError>
pub fn build(self) -> Result<ListDeploymentsInput, BuildError>
Consumes the builder and constructs a ListDeploymentsInput.
source§impl ListDeploymentsInputBuilder
impl ListDeploymentsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListDeploymentsOutput, SdkError<ListDeploymentsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListDeploymentsOutput, SdkError<ListDeploymentsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListDeploymentsInputBuilder
impl Clone for ListDeploymentsInputBuilder
source§fn clone(&self) -> ListDeploymentsInputBuilder
fn clone(&self) -> ListDeploymentsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListDeploymentsInputBuilder
impl Debug for ListDeploymentsInputBuilder
source§impl Default for ListDeploymentsInputBuilder
impl Default for ListDeploymentsInputBuilder
source§fn default() -> ListDeploymentsInputBuilder
fn default() -> ListDeploymentsInputBuilder
source§impl PartialEq for ListDeploymentsInputBuilder
impl PartialEq for ListDeploymentsInputBuilder
source§fn eq(&self, other: &ListDeploymentsInputBuilder) -> bool
fn eq(&self, other: &ListDeploymentsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.