Source code for troposphere.cur

# Copyright (c) 2012-2024, Mark Peek <mark@peek.org>
# All rights reserved.
#
# See LICENSE file for full license.
#
# *** Do not modify - this file is autogenerated ***


from . import AWSObject, PropsDictType
from .validators import boolean


[docs]class ReportDefinition(AWSObject): """ `ReportDefinition <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cur-reportdefinition.html>`__ """ resource_type = "AWS::CUR::ReportDefinition" props: PropsDictType = { "AdditionalArtifacts": ([str], False), "AdditionalSchemaElements": ([str], False), "BillingViewArn": (str, False), "Compression": (str, True), "Format": (str, True), "RefreshClosedReports": (boolean, True), "ReportName": (str, True), "ReportVersioning": (str, True), "S3Bucket": (str, True), "S3Prefix": (str, True), "S3Region": (str, True), "TimeUnit": (str, True), }