Class: Aws::LicenseManager::Types::ReportFrequency
- Inherits:
-
Struct
- Object
- Struct
- Aws::LicenseManager::Types::ReportFrequency
- Defined in:
- gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb
Overview
Details about how frequently reports are generated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#period ⇒ String
Time period between each report.
-
#value ⇒ Integer
Number of times within the frequency period that a report is generated.
Instance Attribute Details
#period ⇒ String
Time period between each report. The period can be daily, weekly, or monthly.
3441 3442 3443 3444 3445 3446 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 3441 class ReportFrequency < Struct.new( :value, :period) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Integer
Number of times within the frequency period that a report is
generated. The only supported value is 1
.
3441 3442 3443 3444 3445 3446 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 3441 class ReportFrequency < Struct.new( :value, :period) SENSITIVE = [] include Aws::Structure end |