@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
45 lines (44 loc) • 1.98 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Contains detailed information about a report plan in AWS Backup Audit Manager.
*/
export declare function getReportPlan(args: GetReportPlanArgs, opts?: pulumi.InvokeOptions): Promise<GetReportPlanResult>;
export interface GetReportPlanArgs {
/**
* An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.
*/
reportPlanArn: string;
}
export interface GetReportPlanResult {
/**
* A structure that contains information about where and how to deliver your reports, specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your reports.
*/
readonly reportDeliveryChannel?: outputs.backup.ReportDeliveryChannelProperties;
/**
* An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.
*/
readonly reportPlanArn?: string;
/**
* An optional description of the report plan with a maximum of 1,024 characters.
*/
readonly reportPlanDescription?: string;
/**
* Metadata that you can assign to help organize the report plans that you create. Each tag is a key-value pair.
*/
readonly reportPlanTags?: outputs.Tag[];
/**
* Identifies the report template for the report. Reports are built using a report template.
*/
readonly reportSetting?: outputs.backup.ReportSettingProperties;
}
/**
* Contains detailed information about a report plan in AWS Backup Audit Manager.
*/
export declare function getReportPlanOutput(args: GetReportPlanOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetReportPlanResult>;
export interface GetReportPlanOutputArgs {
/**
* An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.
*/
reportPlanArn: pulumi.Input<string>;
}