UNPKG

@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)

59 lines (58 loc) 2.21 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of AWS::SSMQuickSetup::ConfigurationManager Resource Type */ export declare function getConfigurationManager(args: GetConfigurationManagerArgs, opts?: pulumi.InvokeOptions): Promise<GetConfigurationManagerResult>; export interface GetConfigurationManagerArgs { /** * The ARN of the Quick Setup configuration. */ managerArn: string; } export interface GetConfigurationManagerResult { /** * The definition of the Quick Setup configuration that the configuration manager deploys. */ readonly configurationDefinitions?: outputs.ssmquicksetup.ConfigurationManagerConfigurationDefinition[]; /** * The datetime stamp when the configuration manager was created. */ readonly createdAt?: string; /** * The description of the configuration. */ readonly description?: string; /** * The datetime stamp when the configuration manager was last updated. */ readonly lastModifiedAt?: string; /** * The ARN of the Quick Setup configuration. */ readonly managerArn?: string; /** * The name of the configuration */ readonly name?: string; /** * Summaries of the state of the configuration manager. These summaries include an aggregate of the statuses from the configuration definition associated with the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. */ readonly statusSummaries?: outputs.ssmquicksetup.ConfigurationManagerStatusSummary[]; /** * Key-value pairs of metadata to assign to the configuration manager. */ readonly tags?: { [key: string]: string; }; } /** * Definition of AWS::SSMQuickSetup::ConfigurationManager Resource Type */ export declare function getConfigurationManagerOutput(args: GetConfigurationManagerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConfigurationManagerResult>; export interface GetConfigurationManagerOutputArgs { /** * The ARN of the Quick Setup configuration. */ managerArn: pulumi.Input<string>; }