import * as cdk from "../../core/lib"; import * as constructs from "constructs"; import * as cfn_parse from "../../core/lib/helpers-internal"; import { IReportRef, ReportReference } from "../../interfaces/generated/aws-artifact-interfaces.generated"; /** * Resource schema for AWS Artifact Report. * * @cloudformationResource AWS::Artifact::Report * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-artifact-report.html */ export declare class CfnReport extends cdk.CfnResource implements cdk.IInspectable, IReportRef { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnReport from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnReport; /** * Checks whether the given object is a CfnReport */ static isCfnReport(x: any): x is CfnReport; static arnForReport(resource: IReportRef): string; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::Artifact::Report`. * * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props?: CfnReportProps); get reportRef(): ReportReference; /** * Acceptance type for report. * * @cloudformationAttribute AcceptanceType */ get attrAcceptanceType(): string; /** * The Amazon Resource Name (ARN) of the report. * * @cloudformationAttribute Arn */ get attrArn(): string; /** * Category for the report resource. * * @cloudformationAttribute Category */ get attrCategory(): string; /** * Associated company name for the report resource. * * @cloudformationAttribute CompanyName */ get attrCompanyName(): string; /** * Timestamp indicating when the report resource was created. * * @cloudformationAttribute CreatedAt */ get attrCreatedAt(): string; /** * Description for the report resource. * * @cloudformationAttribute Description */ get attrDescription(): string; /** * Name for the report resource. * * @cloudformationAttribute Name */ get attrName(): string; /** * Timestamp indicating the report resource effective end. * * @cloudformationAttribute PeriodEnd */ get attrPeriodEnd(): string; /** * Timestamp indicating the report resource effective start. * * @cloudformationAttribute PeriodStart */ get attrPeriodStart(): string; /** * Associated product name for the report resource. * * @cloudformationAttribute ProductName */ get attrProductName(): string; /** * Unique resource ID for the report resource. * * @cloudformationAttribute ReportId */ get attrReportId(): string; /** * Sequence number to enforce optimistic locking. * * @cloudformationAttribute SequenceNumber */ get attrSequenceNumber(): number; /** * Series for the report resource. * * @cloudformationAttribute Series */ get attrSeries(): string; /** * Current state of the report resource. * * @cloudformationAttribute State */ get attrState(): string; /** * Unique resource ARN for term resource. * * @cloudformationAttribute TermArn */ get attrTermArn(): string; /** * Version for the report resource. * * @cloudformationAttribute Version */ get attrVersion(): string; protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } /** * Properties for defining a `CfnReport` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-artifact-report.html */ export interface CfnReportProps { } export type { IReportRef, ReportReference };