#[non_exhaustive]pub struct ListOperationsInputBuilder { /* private fields */ }
Expand description
A builder for ListOperationsInput
.
Implementations§
source§impl ListOperationsInputBuilder
impl ListOperationsInputBuilder
sourcepub fn service_arn(self, input: impl Into<String>) -> Self
pub fn service_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the App Runner service that you want a list of operations for.
This field is required.sourcepub fn set_service_arn(self, input: Option<String>) -> Self
pub fn set_service_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the App Runner service that you want a list of operations for.
sourcepub fn get_service_arn(&self) -> &Option<String>
pub fn get_service_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the App Runner service that you want a list of operations for.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be identical to the ones specified in the initial request.
If you don't specify NextToken
, the request retrieves the first result page.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be identical to the ones specified in the initial request.
If you don't specify NextToken
, the request retrieves the first result page.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be identical to the ones specified in the initial request.
If you don't specify NextToken
, the request retrieves the first result page.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to include in each response (result page). It's used for a paginated request.
If you don't specify MaxResults
, the request retrieves all available results in a single 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 each response (result page). It's used for a paginated request.
If you don't specify MaxResults
, the request retrieves all available results in a single 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 each response (result page). It's used for a paginated request.
If you don't specify MaxResults
, the request retrieves all available results in a single response.
sourcepub fn build(self) -> Result<ListOperationsInput, BuildError>
pub fn build(self) -> Result<ListOperationsInput, BuildError>
Consumes the builder and constructs a ListOperationsInput
.
source§impl ListOperationsInputBuilder
impl ListOperationsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListOperationsOutput, SdkError<ListOperationsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListOperationsOutput, SdkError<ListOperationsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListOperationsInputBuilder
impl Clone for ListOperationsInputBuilder
source§fn clone(&self) -> ListOperationsInputBuilder
fn clone(&self) -> ListOperationsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListOperationsInputBuilder
impl Debug for ListOperationsInputBuilder
source§impl Default for ListOperationsInputBuilder
impl Default for ListOperationsInputBuilder
source§fn default() -> ListOperationsInputBuilder
fn default() -> ListOperationsInputBuilder
source§impl PartialEq for ListOperationsInputBuilder
impl PartialEq for ListOperationsInputBuilder
source§fn eq(&self, other: &ListOperationsInputBuilder) -> bool
fn eq(&self, other: &ListOperationsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.