pub struct StartReportJobFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to StartReportJob
.
Starts an on-demand report job for the specified report plan.
Implementations§
source§impl StartReportJobFluentBuilder
impl StartReportJobFluentBuilder
sourcepub fn as_input(&self) -> &StartReportJobInputBuilder
pub fn as_input(&self) -> &StartReportJobInputBuilder
Access the StartReportJob as a reference.
sourcepub async fn send(
self
) -> Result<StartReportJobOutput, SdkError<StartReportJobError, HttpResponse>>
pub async fn send( self ) -> Result<StartReportJobOutput, SdkError<StartReportJobError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<StartReportJobOutput, StartReportJobError, Self>
pub fn customize( self ) -> CustomizableOperation<StartReportJobOutput, StartReportJobError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn report_plan_name(self, input: impl Into<String>) -> Self
pub fn report_plan_name(self, input: impl Into<String>) -> Self
The unique name of a report plan.
sourcepub fn set_report_plan_name(self, input: Option<String>) -> Self
pub fn set_report_plan_name(self, input: Option<String>) -> Self
The unique name of a report plan.
sourcepub fn get_report_plan_name(&self) -> &Option<String>
pub fn get_report_plan_name(&self) -> &Option<String>
The unique name of a report plan.
sourcepub fn idempotency_token(self, input: impl Into<String>) -> Self
pub fn idempotency_token(self, input: impl Into<String>) -> Self
A customer-chosen string that you can use to distinguish between otherwise identical calls to StartReportJobInput
. Retrying a successful request with the same idempotency token results in a success message with no action taken.
sourcepub fn set_idempotency_token(self, input: Option<String>) -> Self
pub fn set_idempotency_token(self, input: Option<String>) -> Self
A customer-chosen string that you can use to distinguish between otherwise identical calls to StartReportJobInput
. Retrying a successful request with the same idempotency token results in a success message with no action taken.
sourcepub fn get_idempotency_token(&self) -> &Option<String>
pub fn get_idempotency_token(&self) -> &Option<String>
A customer-chosen string that you can use to distinguish between otherwise identical calls to StartReportJobInput
. Retrying a successful request with the same idempotency token results in a success message with no action taken.
Trait Implementations§
source§impl Clone for StartReportJobFluentBuilder
impl Clone for StartReportJobFluentBuilder
source§fn clone(&self) -> StartReportJobFluentBuilder
fn clone(&self) -> StartReportJobFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more