@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)
75 lines (74 loc) • 2.33 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Represents a plan that specifies Regions, IAM roles, and workflows of logic required to perform the desired change to your multi-Region application
*/
export declare function getPlan(args: GetPlanArgs, opts?: pulumi.InvokeOptions): Promise<GetPlanResult>;
export interface GetPlanArgs {
/**
* The Amazon Resource Name (ARN) of the plan.
*/
arn: string;
}
export interface GetPlanResult {
/**
* The Amazon Resource Name (ARN) of the plan.
*/
readonly arn?: string;
/**
* The associated application health alarms for a plan.
*/
readonly associatedAlarms?: {
[]: outputs.arcregionswitch.PlanAssociatedAlarm;
};
/**
* The description for a plan.
*/
readonly description?: string;
/**
* The execution role for a plan.
*/
readonly executionRole?: string;
readonly healthChecksForPlan?: {
[]: outputs.arcregionswitch.PlanHealthCheckState[];
};
/**
* The owner of a plan.
*/
readonly owner?: string;
readonly planHealthChecks?: string[];
/**
* The recovery time objective for a plan.
*/
readonly recoveryTimeObjectiveMinutes?: number;
/**
* The report configuration for a plan.
*/
readonly reportConfiguration?: outputs.arcregionswitch.PlanReportConfiguration;
readonly route53HealthChecks?: outputs.arcregionswitch.Route53HealthChecksProperties;
readonly tags?: {
[]: string;
};
/**
* The triggers for a plan.
*/
readonly triggers?: outputs.arcregionswitch.PlanTrigger[];
/**
* The version for the plan.
*/
readonly version?: string;
/**
* The workflows for a plan.
*/
readonly workflows?: outputs.arcregionswitch.PlanWorkflow[];
}
/**
* Represents a plan that specifies Regions, IAM roles, and workflows of logic required to perform the desired change to your multi-Region application
*/
export declare function getPlanOutput(args: GetPlanOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPlanResult>;
export interface GetPlanOutputArgs {
/**
* The Amazon Resource Name (ARN) of the plan.
*/
arn: pulumi.Input<string>;
}