@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)
71 lines (70 loc) • 2.17 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource schema for AWS::FIS::ExperimentTemplate
*/
export declare function getExperimentTemplate(args: GetExperimentTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetExperimentTemplateResult>;
export interface GetExperimentTemplateArgs {
/**
* The ID of the experiment template.
*/
id: string;
}
export interface GetExperimentTemplateResult {
/**
* The actions for the experiment.
*/
readonly actions?: {
[]: outputs.fis.ExperimentTemplateAction;
};
/**
* The description for the experiment template.
*/
readonly description?: string;
/**
* The experiment options for an experiment template.
*/
readonly experimentOptions?: outputs.fis.ExperimentTemplateExperimentOptions;
/**
* Describes the report configuration for the experiment template.
*/
readonly experimentReportConfiguration?: outputs.fis.ExperimentTemplateExperimentReportConfiguration;
/**
* The ID of the experiment template.
*/
readonly id?: string;
/**
* The configuration for experiment logging.
*/
readonly logConfiguration?: outputs.fis.ExperimentTemplateLogConfiguration;
/**
* The Amazon Resource Name (ARN) of an IAM role.
*/
readonly roleArn?: string;
/**
* The stop conditions for the experiment.
*/
readonly stopConditions?: outputs.fis.ExperimentTemplateStopCondition[];
/**
* The tags for the experiment template.
*/
readonly tags?: {
[]: string;
};
/**
* The targets for the experiment.
*/
readonly targets?: {
[]: outputs.fis.ExperimentTemplateTarget;
};
}
/**
* Resource schema for AWS::FIS::ExperimentTemplate
*/
export declare function getExperimentTemplateOutput(args: GetExperimentTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetExperimentTemplateResult>;
export interface GetExperimentTemplateOutputArgs {
/**
* The ID of the experiment template.
*/
id: pulumi.Input<string>;
}