#[non_exhaustive]pub struct StartReportJobInputBuilder { /* private fields */ }
Expand description
A builder for StartReportJobInput
.
Implementations§
source§impl StartReportJobInputBuilder
impl StartReportJobInputBuilder
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.
This field is required.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.
sourcepub fn build(self) -> Result<StartReportJobInput, BuildError>
pub fn build(self) -> Result<StartReportJobInput, BuildError>
Consumes the builder and constructs a StartReportJobInput
.
source§impl StartReportJobInputBuilder
impl StartReportJobInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<StartReportJobOutput, SdkError<StartReportJobError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<StartReportJobOutput, SdkError<StartReportJobError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for StartReportJobInputBuilder
impl Clone for StartReportJobInputBuilder
source§fn clone(&self) -> StartReportJobInputBuilder
fn clone(&self) -> StartReportJobInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StartReportJobInputBuilder
impl Debug for StartReportJobInputBuilder
source§impl Default for StartReportJobInputBuilder
impl Default for StartReportJobInputBuilder
source§fn default() -> StartReportJobInputBuilder
fn default() -> StartReportJobInputBuilder
source§impl PartialEq for StartReportJobInputBuilder
impl PartialEq for StartReportJobInputBuilder
source§fn eq(&self, other: &StartReportJobInputBuilder) -> bool
fn eq(&self, other: &StartReportJobInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.