#[non_exhaustive]pub struct GetTriggersInputBuilder { /* private fields */ }Expand description
A builder for GetTriggersInput.
Implementations§
source§impl GetTriggersInputBuilder
impl GetTriggersInputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token, if this is a continuation call.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token, if this is a continuation call.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A continuation token, if this is a continuation call.
sourcepub fn dependent_job_name(self, input: impl Into<String>) -> Self
pub fn dependent_job_name(self, input: impl Into<String>) -> Self
The name of the job to retrieve triggers for. The trigger that can start this job is returned, and if there is no such trigger, all triggers are returned.
sourcepub fn set_dependent_job_name(self, input: Option<String>) -> Self
pub fn set_dependent_job_name(self, input: Option<String>) -> Self
The name of the job to retrieve triggers for. The trigger that can start this job is returned, and if there is no such trigger, all triggers are returned.
sourcepub fn get_dependent_job_name(&self) -> &Option<String>
pub fn get_dependent_job_name(&self) -> &Option<String>
The name of the job to retrieve triggers for. The trigger that can start this job is returned, and if there is no such trigger, all triggers are returned.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum size of the response.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum size of the response.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum size of the response.
sourcepub fn build(self) -> Result<GetTriggersInput, BuildError>
pub fn build(self) -> Result<GetTriggersInput, BuildError>
Consumes the builder and constructs a GetTriggersInput.
source§impl GetTriggersInputBuilder
impl GetTriggersInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetTriggersOutput, SdkError<GetTriggersError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetTriggersOutput, SdkError<GetTriggersError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetTriggersInputBuilder
impl Clone for GetTriggersInputBuilder
source§fn clone(&self) -> GetTriggersInputBuilder
fn clone(&self) -> GetTriggersInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetTriggersInputBuilder
impl Debug for GetTriggersInputBuilder
source§impl Default for GetTriggersInputBuilder
impl Default for GetTriggersInputBuilder
source§fn default() -> GetTriggersInputBuilder
fn default() -> GetTriggersInputBuilder
source§impl PartialEq<GetTriggersInputBuilder> for GetTriggersInputBuilder
impl PartialEq<GetTriggersInputBuilder> for GetTriggersInputBuilder
source§fn eq(&self, other: &GetTriggersInputBuilder) -> bool
fn eq(&self, other: &GetTriggersInputBuilder) -> bool
self and other values to be equal, and is used
by ==.