#[non_exhaustive]pub struct ListFeaturesInputBuilder { /* private fields */ }Expand description
A builder for ListFeaturesInput.
Implementations§
source§impl ListFeaturesInputBuilder
impl ListFeaturesInputBuilder
sourcepub fn project(self, input: impl Into<String>) -> Self
pub fn project(self, input: impl Into<String>) -> Self
The name or ARN of the project to return the feature list from.
sourcepub fn set_project(self, input: Option<String>) -> Self
pub fn set_project(self, input: Option<String>) -> Self
The name or ARN of the project to return the feature list from.
sourcepub fn get_project(&self) -> &Option<String>
pub fn get_project(&self) -> &Option<String>
The name or ARN of the project to return the feature list from.
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 received this token from a previous ListFeatures 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 received this token from a previous ListFeatures 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 received this token from a previous ListFeatures operation.
sourcepub fn build(self) -> Result<ListFeaturesInput, BuildError>
pub fn build(self) -> Result<ListFeaturesInput, BuildError>
Consumes the builder and constructs a ListFeaturesInput.
source§impl ListFeaturesInputBuilder
impl ListFeaturesInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListFeaturesOutput, SdkError<ListFeaturesError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListFeaturesOutput, SdkError<ListFeaturesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListFeaturesInputBuilder
impl Clone for ListFeaturesInputBuilder
source§fn clone(&self) -> ListFeaturesInputBuilder
fn clone(&self) -> ListFeaturesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListFeaturesInputBuilder
impl Debug for ListFeaturesInputBuilder
source§impl Default for ListFeaturesInputBuilder
impl Default for ListFeaturesInputBuilder
source§fn default() -> ListFeaturesInputBuilder
fn default() -> ListFeaturesInputBuilder
source§impl PartialEq<ListFeaturesInputBuilder> for ListFeaturesInputBuilder
impl PartialEq<ListFeaturesInputBuilder> for ListFeaturesInputBuilder
source§fn eq(&self, other: &ListFeaturesInputBuilder) -> bool
fn eq(&self, other: &ListFeaturesInputBuilder) -> bool
self and other values to be equal, and is used
by ==.