#[non_exhaustive]pub struct CreateLicenseManagerReportGeneratorInput {
pub report_generator_name: Option<String>,
pub type: Option<Vec<ReportType>>,
pub report_context: Option<ReportContext>,
pub report_frequency: Option<ReportFrequency>,
pub client_token: Option<String>,
pub description: Option<String>,
pub tags: Option<Vec<Tag>>,
}
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_generator_name: Option<String>
Name of the report generator.
type: Option<Vec<ReportType>>
Type of reports to generate. The following report types an be generated:
-
License configuration report - Reports the number and details of consumed licenses for a license configuration.
-
Resource report - Reports the tracked licenses and resource consumption for a license configuration.
report_context: Option<ReportContext>
Defines the type of license configuration the report generator tracks.
report_frequency: Option<ReportFrequency>
Frequency by which reports are generated. Reports can be generated daily, monthly, or weekly.
client_token: Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
description: Option<String>
Description of the report generator.
Tags to add to the report generator.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateLicenseManagerReportGenerator, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateLicenseManagerReportGenerator, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateLicenseManagerReportGenerator
>
Creates a new builder-style object to manufacture CreateLicenseManagerReportGeneratorInput
Name of the report generator.
Type of reports to generate. The following report types an be generated:
-
License configuration report - Reports the number and details of consumed licenses for a license configuration.
-
Resource report - Reports the tracked licenses and resource consumption for a license configuration.
Defines the type of license configuration the report generator tracks.
Frequency by which reports are generated. Reports can be generated daily, monthly, or weekly.
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Description of the report generator.
Tags to add to the report generator.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more