Struct aws_sdk_backup::input::UpdateReportPlanInput
source · [−]#[non_exhaustive]pub struct UpdateReportPlanInput {
pub report_plan_name: Option<String>,
pub report_plan_description: Option<String>,
pub report_delivery_channel: Option<ReportDeliveryChannel>,
pub report_setting: Option<ReportSetting>,
pub idempotency_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.report_plan_name: Option<String>
The unique name of the report plan. This name is between 1 and 256 characters, starting with a letter, and consisting of letters (a-z, A-Z), numbers (0-9), and underscores (_).
report_plan_description: Option<String>
An optional description of the report plan with a maximum 1,024 characters.
report_delivery_channel: Option<ReportDeliveryChannel>
A structure that contains information about where to deliver your reports, specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your reports.
report_setting: Option<ReportSetting>
Identifies the report template for the report. Reports are built using a report template. The report templates are:
RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT
If the report template is RESOURCE_COMPLIANCE_REPORT
or CONTROL_COMPLIANCE_REPORT
, this API resource also describes the report coverage by Amazon Web Services Regions and frameworks.
idempotency_token: Option<String>
A customer-chosen string that you can use to distinguish between otherwise identical calls to UpdateReportPlanInput
. Retrying a successful request with the same idempotency token results in a success message with no action taken.
Implementations
sourceimpl UpdateReportPlanInput
impl UpdateReportPlanInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateReportPlan, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateReportPlan, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateReportPlan
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateReportPlanInput
sourceimpl UpdateReportPlanInput
impl UpdateReportPlanInput
sourcepub fn report_plan_name(&self) -> Option<&str>
pub fn report_plan_name(&self) -> Option<&str>
The unique name of the report plan. This name is between 1 and 256 characters, starting with a letter, and consisting of letters (a-z, A-Z), numbers (0-9), and underscores (_).
sourcepub fn report_plan_description(&self) -> Option<&str>
pub fn report_plan_description(&self) -> Option<&str>
An optional description of the report plan with a maximum 1,024 characters.
sourcepub fn report_delivery_channel(&self) -> Option<&ReportDeliveryChannel>
pub fn report_delivery_channel(&self) -> Option<&ReportDeliveryChannel>
A structure that contains information about where to deliver your reports, specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your reports.
sourcepub fn report_setting(&self) -> Option<&ReportSetting>
pub fn report_setting(&self) -> Option<&ReportSetting>
Identifies the report template for the report. Reports are built using a report template. The report templates are:
RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT
If the report template is RESOURCE_COMPLIANCE_REPORT
or CONTROL_COMPLIANCE_REPORT
, this API resource also describes the report coverage by Amazon Web Services Regions and frameworks.
sourcepub fn idempotency_token(&self) -> Option<&str>
pub fn idempotency_token(&self) -> Option<&str>
A customer-chosen string that you can use to distinguish between otherwise identical calls to UpdateReportPlanInput
. Retrying a successful request with the same idempotency token results in a success message with no action taken.
Trait Implementations
sourceimpl Clone for UpdateReportPlanInput
impl Clone for UpdateReportPlanInput
sourcefn clone(&self) -> UpdateReportPlanInput
fn clone(&self) -> UpdateReportPlanInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UpdateReportPlanInput
impl Debug for UpdateReportPlanInput
sourceimpl PartialEq<UpdateReportPlanInput> for UpdateReportPlanInput
impl PartialEq<UpdateReportPlanInput> for UpdateReportPlanInput
sourcefn eq(&self, other: &UpdateReportPlanInput) -> bool
fn eq(&self, other: &UpdateReportPlanInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UpdateReportPlanInput) -> bool
fn ne(&self, other: &UpdateReportPlanInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for UpdateReportPlanInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateReportPlanInput
impl Send for UpdateReportPlanInput
impl Sync for UpdateReportPlanInput
impl Unpin for UpdateReportPlanInput
impl UnwindSafe for UpdateReportPlanInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more