#[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.
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 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 build(self) -> Result<StartReportJobInput, BuildError>
pub fn build(self) -> Result<StartReportJobInput, BuildError>
Consumes the builder and constructs a StartReportJobInput
.
Trait Implementations§
source§impl Clone for StartReportJobInputBuilder
impl Clone for StartReportJobInputBuilder
source§fn clone(&self) -> StartReportJobInputBuilder
fn clone(&self) -> StartReportJobInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
Returns the “default value” for a type. Read more
source§impl PartialEq<StartReportJobInputBuilder> for StartReportJobInputBuilder
impl PartialEq<StartReportJobInputBuilder> for StartReportJobInputBuilder
source§fn eq(&self, other: &StartReportJobInputBuilder) -> bool
fn eq(&self, other: &StartReportJobInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.