@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)
44 lines (43 loc) • 1.91 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource Type definition for AWS::SSMQuickSetup::LifecycleAutomation that executes SSM Automation documents in response to CloudFormation lifecycle events.
*/
export declare function getLifecycleAutomation(args: GetLifecycleAutomationArgs, opts?: pulumi.InvokeOptions): Promise<GetLifecycleAutomationResult>;
export interface GetLifecycleAutomationArgs {
/**
* The id from the association that is returned when creating the association
*/
associationId: string;
}
export interface GetLifecycleAutomationResult {
/**
* The id from the association that is returned when creating the association
*/
readonly associationId?: string;
/**
* The name of the Automation document to execute
*/
readonly automationDocument?: string;
/**
* A map of key-value parameters passed to the Automation document during execution. Each parameter name maps to a list of values, even for single values. Parameters can include configuration-specific values for your automation workflow.
*/
readonly automationParameters?: {
[key: string]: any;
};
/**
* Tags applied to the underlying SSM Association created by this resource. Tags help identify and organize automation executions.
*/
readonly tags?: {
[key: string]: string;
};
}
/**
* Resource Type definition for AWS::SSMQuickSetup::LifecycleAutomation that executes SSM Automation documents in response to CloudFormation lifecycle events.
*/
export declare function getLifecycleAutomationOutput(args: GetLifecycleAutomationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLifecycleAutomationResult>;
export interface GetLifecycleAutomationOutputArgs {
/**
* The id from the association that is returned when creating the association
*/
associationId: pulumi.Input<string>;
}