1. Packages
  2. AWS
  3. API Docs
  4. ssm
  5. QuicksetupConfigurationManager
AWS v6.60.0 published on Tuesday, Nov 19, 2024 by Pulumi

aws.ssm.QuicksetupConfigurationManager

Explore with Pulumi AI

aws logo
AWS v6.60.0 published on Tuesday, Nov 19, 2024 by Pulumi

    Resource for managing an AWS SSM Quick Setup Configuration Manager.

    Example Usage

    Patch Policy Configuration Type

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const current = aws.getCallerIdentity({});
    const currentGetPartition = aws.getPartition({});
    const currentGetRegion = aws.getRegion({});
    const example = aws.ssm.getPatchBaselines({
        defaultBaselines: true,
    });
    // transform the output of the aws_ssm_patch_baselines data source
    // into the format expected by the SelectedPatchBaselines parameter
    const selectedPatchBaselines = JSON.stringify(example.then(example => .reduce((__obj, baseline) => ({ ...__obj, [baseline.operatingSystem]: {
        value: baseline.baselineId,
        label: baseline.baselineName,
        description: baseline.baselineDescription,
        disabled: !baseline.defaultBaseline,
    } }))));
    const exampleQuicksetupConfigurationManager = new aws.ssm.QuicksetupConfigurationManager("example", {
        name: "example",
        configurationDefinition: {
            localDeploymentAdministrationRoleArn: Promise.all([currentGetPartition, current]).then(([currentGetPartition, current]) => `arn:${currentGetPartition.partition}:iam::${current.accountId}:role/AWS-QuickSetup-PatchPolicy-LocalAdministrationRole`),
            localDeploymentExecutionRoleName: "AWS-QuickSetup-PatchPolicy-LocalExecutionRole",
            type: "AWSQuickSetupType-PatchPolicy",
            parameters: {
                ConfigurationOptionsPatchOperation: "Scan",
                ConfigurationOptionsScanValue: "cron(0 1 * * ? *)",
                ConfigurationOptionsScanNextInterval: "false",
                PatchBaselineRegion: currentGetRegion.then(currentGetRegion => currentGetRegion.name),
                PatchBaselineUseDefault: "default",
                PatchPolicyName: "example",
                SelectedPatchBaselines: selectedPatchBaselines,
                OutputLogEnableS3: "false",
                RateControlConcurrency: "10%",
                RateControlErrorThreshold: "2%",
                IsPolicyAttachAllowed: "false",
                TargetAccounts: current.then(current => current.accountId),
                TargetRegions: currentGetRegion.then(currentGetRegion => currentGetRegion.name),
                TargetType: "*",
            },
        },
    });
    
    import pulumi
    import json
    import pulumi_aws as aws
    
    current = aws.get_caller_identity()
    current_get_partition = aws.get_partition()
    current_get_region = aws.get_region()
    example = aws.ssm.get_patch_baselines(default_baselines=True)
    # transform the output of the aws_ssm_patch_baselines data source
    # into the format expected by the SelectedPatchBaselines parameter
    selected_patch_baselines = json.dumps({baseline.operating_system: {
        "value": baseline.baseline_id,
        "label": baseline.baseline_name,
        "description": baseline.baseline_description,
        "disabled": not baseline.default_baseline,
    } for baseline in example.baseline_identities})
    example_quicksetup_configuration_manager = aws.ssm.QuicksetupConfigurationManager("example",
        name="example",
        configuration_definition={
            "local_deployment_administration_role_arn": f"arn:{current_get_partition.partition}:iam::{current.account_id}:role/AWS-QuickSetup-PatchPolicy-LocalAdministrationRole",
            "local_deployment_execution_role_name": "AWS-QuickSetup-PatchPolicy-LocalExecutionRole",
            "type": "AWSQuickSetupType-PatchPolicy",
            "parameters": {
                "ConfigurationOptionsPatchOperation": "Scan",
                "ConfigurationOptionsScanValue": "cron(0 1 * * ? *)",
                "ConfigurationOptionsScanNextInterval": "false",
                "PatchBaselineRegion": current_get_region.name,
                "PatchBaselineUseDefault": "default",
                "PatchPolicyName": "example",
                "SelectedPatchBaselines": selected_patch_baselines,
                "OutputLogEnableS3": "false",
                "RateControlConcurrency": "10%",
                "RateControlErrorThreshold": "2%",
                "IsPolicyAttachAllowed": "false",
                "TargetAccounts": current.account_id,
                "TargetRegions": current_get_region.name,
                "TargetType": "*",
            },
        })
    
    Coming soon!
    
    using System.Collections.Generic;
    using System.Linq;
    using System.Text.Json;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var current = Aws.GetCallerIdentity.Invoke();
    
        var currentGetPartition = Aws.GetPartition.Invoke();
    
        var currentGetRegion = Aws.GetRegion.Invoke();
    
        var example = Aws.Ssm.GetPatchBaselines.Invoke(new()
        {
            DefaultBaselines = true,
        });
    
        // transform the output of the aws_ssm_patch_baselines data source
        // into the format expected by the SelectedPatchBaselines parameter
        var selectedPatchBaselines = JsonSerializer.Serialize(.ToDictionary(item => {
            var baseline = item.Value;
            return baseline.OperatingSystem;
        }, item => {
            var baseline = item.Value;
            return 
            {
                { "value", baseline.BaselineId },
                { "label", baseline.BaselineName },
                { "description", baseline.BaselineDescription },
                { "disabled", !baseline.DefaultBaseline },
            };
        }));
    
        var exampleQuicksetupConfigurationManager = new Aws.Ssm.QuicksetupConfigurationManager("example", new()
        {
            Name = "example",
            ConfigurationDefinition = new Aws.Ssm.Inputs.QuicksetupConfigurationManagerConfigurationDefinitionArgs
            {
                LocalDeploymentAdministrationRoleArn = Output.Tuple(currentGetPartition, current).Apply(values =>
                {
                    var currentGetPartition = values.Item1;
                    var current = values.Item2;
                    return $"arn:{currentGetPartition.Apply(getPartitionResult => getPartitionResult.Partition)}:iam::{current.Apply(getCallerIdentityResult => getCallerIdentityResult.AccountId)}:role/AWS-QuickSetup-PatchPolicy-LocalAdministrationRole";
                }),
                LocalDeploymentExecutionRoleName = "AWS-QuickSetup-PatchPolicy-LocalExecutionRole",
                Type = "AWSQuickSetupType-PatchPolicy",
                Parameters = 
                {
                    { "ConfigurationOptionsPatchOperation", "Scan" },
                    { "ConfigurationOptionsScanValue", "cron(0 1 * * ? *)" },
                    { "ConfigurationOptionsScanNextInterval", "false" },
                    { "PatchBaselineRegion", currentGetRegion.Apply(getRegionResult => getRegionResult.Name) },
                    { "PatchBaselineUseDefault", "default" },
                    { "PatchPolicyName", "example" },
                    { "SelectedPatchBaselines", selectedPatchBaselines },
                    { "OutputLogEnableS3", "false" },
                    { "RateControlConcurrency", "10%" },
                    { "RateControlErrorThreshold", "2%" },
                    { "IsPolicyAttachAllowed", "false" },
                    { "TargetAccounts", current.Apply(getCallerIdentityResult => getCallerIdentityResult.AccountId) },
                    { "TargetRegions", currentGetRegion.Apply(getRegionResult => getRegionResult.Name) },
                    { "TargetType", "*" },
                },
            },
        });
    
    });
    
    Coming soon!
    
    Coming soon!
    

    Create QuicksetupConfigurationManager Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new QuicksetupConfigurationManager(name: string, args?: QuicksetupConfigurationManagerArgs, opts?: CustomResourceOptions);
    @overload
    def QuicksetupConfigurationManager(resource_name: str,
                                       args: Optional[QuicksetupConfigurationManagerArgs] = None,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def QuicksetupConfigurationManager(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       configuration_definition: Optional[QuicksetupConfigurationManagerConfigurationDefinitionArgs] = None,
                                       description: Optional[str] = None,
                                       name: Optional[str] = None,
                                       tags: Optional[Mapping[str, str]] = None,
                                       timeouts: Optional[QuicksetupConfigurationManagerTimeoutsArgs] = None)
    func NewQuicksetupConfigurationManager(ctx *Context, name string, args *QuicksetupConfigurationManagerArgs, opts ...ResourceOption) (*QuicksetupConfigurationManager, error)
    public QuicksetupConfigurationManager(string name, QuicksetupConfigurationManagerArgs? args = null, CustomResourceOptions? opts = null)
    public QuicksetupConfigurationManager(String name, QuicksetupConfigurationManagerArgs args)
    public QuicksetupConfigurationManager(String name, QuicksetupConfigurationManagerArgs args, CustomResourceOptions options)
    
    type: aws:ssm:QuicksetupConfigurationManager
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args QuicksetupConfigurationManagerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args QuicksetupConfigurationManagerArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args QuicksetupConfigurationManagerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args QuicksetupConfigurationManagerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args QuicksetupConfigurationManagerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var quicksetupConfigurationManagerResource = new Aws.Ssm.QuicksetupConfigurationManager("quicksetupConfigurationManagerResource", new()
    {
        ConfigurationDefinition = new Aws.Ssm.Inputs.QuicksetupConfigurationManagerConfigurationDefinitionArgs
        {
            Parameters = 
            {
                { "string", "string" },
            },
            Type = "string",
            Id = "string",
            LocalDeploymentAdministrationRoleArn = "string",
            LocalDeploymentExecutionRoleName = "string",
            TypeVersion = "string",
        },
        Description = "string",
        Name = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Ssm.Inputs.QuicksetupConfigurationManagerTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := ssm.NewQuicksetupConfigurationManager(ctx, "quicksetupConfigurationManagerResource", &ssm.QuicksetupConfigurationManagerArgs{
    	ConfigurationDefinition: &ssm.QuicksetupConfigurationManagerConfigurationDefinitionArgs{
    		Parameters: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		Type:                                 pulumi.String("string"),
    		Id:                                   pulumi.String("string"),
    		LocalDeploymentAdministrationRoleArn: pulumi.String("string"),
    		LocalDeploymentExecutionRoleName:     pulumi.String("string"),
    		TypeVersion:                          pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &ssm.QuicksetupConfigurationManagerTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var quicksetupConfigurationManagerResource = new QuicksetupConfigurationManager("quicksetupConfigurationManagerResource", QuicksetupConfigurationManagerArgs.builder()
        .configurationDefinition(QuicksetupConfigurationManagerConfigurationDefinitionArgs.builder()
            .parameters(Map.of("string", "string"))
            .type("string")
            .id("string")
            .localDeploymentAdministrationRoleArn("string")
            .localDeploymentExecutionRoleName("string")
            .typeVersion("string")
            .build())
        .description("string")
        .name("string")
        .tags(Map.of("string", "string"))
        .timeouts(QuicksetupConfigurationManagerTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    quicksetup_configuration_manager_resource = aws.ssm.QuicksetupConfigurationManager("quicksetupConfigurationManagerResource",
        configuration_definition={
            "parameters": {
                "string": "string",
            },
            "type": "string",
            "id": "string",
            "local_deployment_administration_role_arn": "string",
            "local_deployment_execution_role_name": "string",
            "type_version": "string",
        },
        description="string",
        name="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const quicksetupConfigurationManagerResource = new aws.ssm.QuicksetupConfigurationManager("quicksetupConfigurationManagerResource", {
        configurationDefinition: {
            parameters: {
                string: "string",
            },
            type: "string",
            id: "string",
            localDeploymentAdministrationRoleArn: "string",
            localDeploymentExecutionRoleName: "string",
            typeVersion: "string",
        },
        description: "string",
        name: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:ssm:QuicksetupConfigurationManager
    properties:
        configurationDefinition:
            id: string
            localDeploymentAdministrationRoleArn: string
            localDeploymentExecutionRoleName: string
            parameters:
                string: string
            type: string
            typeVersion: string
        description: string
        name: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
    

    QuicksetupConfigurationManager Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The QuicksetupConfigurationManager resource accepts the following input properties:

    ConfigurationDefinition QuicksetupConfigurationManagerConfigurationDefinition
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    Description string
    Description of the configuration manager.
    Name string

    Configuration manager name.

    The following arguments are optional:

    Tags Dictionary<string, string>
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts QuicksetupConfigurationManagerTimeouts
    ConfigurationDefinition QuicksetupConfigurationManagerConfigurationDefinitionArgs
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    Description string
    Description of the configuration manager.
    Name string

    Configuration manager name.

    The following arguments are optional:

    Tags map[string]string
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts QuicksetupConfigurationManagerTimeoutsArgs
    configurationDefinition QuicksetupConfigurationManagerConfigurationDefinition
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    description String
    Description of the configuration manager.
    name String

    Configuration manager name.

    The following arguments are optional:

    tags Map<String,String>
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts QuicksetupConfigurationManagerTimeouts
    configurationDefinition QuicksetupConfigurationManagerConfigurationDefinition
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    description string
    Description of the configuration manager.
    name string

    Configuration manager name.

    The following arguments are optional:

    tags {[key: string]: string}
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts QuicksetupConfigurationManagerTimeouts
    configuration_definition QuicksetupConfigurationManagerConfigurationDefinitionArgs
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    description str
    Description of the configuration manager.
    name str

    Configuration manager name.

    The following arguments are optional:

    tags Mapping[str, str]
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts QuicksetupConfigurationManagerTimeoutsArgs
    configurationDefinition Property Map
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    description String
    Description of the configuration manager.
    name String

    Configuration manager name.

    The following arguments are optional:

    tags Map<String>
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the QuicksetupConfigurationManager resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    ManagerArn string
    ARN of the Configuration Manager.
    StatusSummaries List<QuicksetupConfigurationManagerStatusSummary>
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Id string
    The provider-assigned unique ID for this managed resource.
    ManagerArn string
    ARN of the Configuration Manager.
    StatusSummaries []QuicksetupConfigurationManagerStatusSummary
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    id String
    The provider-assigned unique ID for this managed resource.
    managerArn String
    ARN of the Configuration Manager.
    statusSummaries List<QuicksetupConfigurationManagerStatusSummary>
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    id string
    The provider-assigned unique ID for this managed resource.
    managerArn string
    ARN of the Configuration Manager.
    statusSummaries QuicksetupConfigurationManagerStatusSummary[]
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    id str
    The provider-assigned unique ID for this managed resource.
    manager_arn str
    ARN of the Configuration Manager.
    status_summaries Sequence[QuicksetupConfigurationManagerStatusSummary]
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    id String
    The provider-assigned unique ID for this managed resource.
    managerArn String
    ARN of the Configuration Manager.
    statusSummaries List<Property Map>
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Look up Existing QuicksetupConfigurationManager Resource

    Get an existing QuicksetupConfigurationManager resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: QuicksetupConfigurationManagerState, opts?: CustomResourceOptions): QuicksetupConfigurationManager
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration_definition: Optional[QuicksetupConfigurationManagerConfigurationDefinitionArgs] = None,
            description: Optional[str] = None,
            manager_arn: Optional[str] = None,
            name: Optional[str] = None,
            status_summaries: Optional[Sequence[QuicksetupConfigurationManagerStatusSummaryArgs]] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[QuicksetupConfigurationManagerTimeoutsArgs] = None) -> QuicksetupConfigurationManager
    func GetQuicksetupConfigurationManager(ctx *Context, name string, id IDInput, state *QuicksetupConfigurationManagerState, opts ...ResourceOption) (*QuicksetupConfigurationManager, error)
    public static QuicksetupConfigurationManager Get(string name, Input<string> id, QuicksetupConfigurationManagerState? state, CustomResourceOptions? opts = null)
    public static QuicksetupConfigurationManager get(String name, Output<String> id, QuicksetupConfigurationManagerState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ConfigurationDefinition QuicksetupConfigurationManagerConfigurationDefinition
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    Description string
    Description of the configuration manager.
    ManagerArn string
    ARN of the Configuration Manager.
    Name string

    Configuration manager name.

    The following arguments are optional:

    StatusSummaries List<QuicksetupConfigurationManagerStatusSummary>
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    Tags Dictionary<string, string>
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts QuicksetupConfigurationManagerTimeouts
    ConfigurationDefinition QuicksetupConfigurationManagerConfigurationDefinitionArgs
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    Description string
    Description of the configuration manager.
    ManagerArn string
    ARN of the Configuration Manager.
    Name string

    Configuration manager name.

    The following arguments are optional:

    StatusSummaries []QuicksetupConfigurationManagerStatusSummaryArgs
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    Tags map[string]string
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts QuicksetupConfigurationManagerTimeoutsArgs
    configurationDefinition QuicksetupConfigurationManagerConfigurationDefinition
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    description String
    Description of the configuration manager.
    managerArn String
    ARN of the Configuration Manager.
    name String

    Configuration manager name.

    The following arguments are optional:

    statusSummaries List<QuicksetupConfigurationManagerStatusSummary>
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    tags Map<String,String>
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts QuicksetupConfigurationManagerTimeouts
    configurationDefinition QuicksetupConfigurationManagerConfigurationDefinition
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    description string
    Description of the configuration manager.
    managerArn string
    ARN of the Configuration Manager.
    name string

    Configuration manager name.

    The following arguments are optional:

    statusSummaries QuicksetupConfigurationManagerStatusSummary[]
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    tags {[key: string]: string}
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts QuicksetupConfigurationManagerTimeouts
    configuration_definition QuicksetupConfigurationManagerConfigurationDefinitionArgs
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    description str
    Description of the configuration manager.
    manager_arn str
    ARN of the Configuration Manager.
    name str

    Configuration manager name.

    The following arguments are optional:

    status_summaries Sequence[QuicksetupConfigurationManagerStatusSummaryArgs]
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    tags Mapping[str, str]
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts QuicksetupConfigurationManagerTimeoutsArgs
    configurationDefinition Property Map
    Definition of the Quick Setup configuration that the configuration manager deploys. See configuration_definition below.
    description String
    Description of the configuration manager.
    managerArn String
    ARN of the Configuration Manager.
    name String

    Configuration manager name.

    The following arguments are optional:

    statusSummaries List<Property Map>
    A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See status_summaries below.
    tags Map<String>
    Map of tags assigned to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts Property Map

    Supporting Types

    QuicksetupConfigurationManagerConfigurationDefinition, QuicksetupConfigurationManagerConfigurationDefinitionArgs

    Parameters Dictionary<string, string>
    Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
    Type string
    Type of the Quick Setup configuration.
    Id string
    LocalDeploymentAdministrationRoleArn string
    LocalDeploymentExecutionRoleName string
    Name of the IAM role used to deploy local configurations.
    TypeVersion string
    Version of the Quick Setup type to use.
    Parameters map[string]string
    Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
    Type string
    Type of the Quick Setup configuration.
    Id string
    LocalDeploymentAdministrationRoleArn string
    LocalDeploymentExecutionRoleName string
    Name of the IAM role used to deploy local configurations.
    TypeVersion string
    Version of the Quick Setup type to use.
    parameters Map<String,String>
    Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
    type String
    Type of the Quick Setup configuration.
    id String
    localDeploymentAdministrationRoleArn String
    localDeploymentExecutionRoleName String
    Name of the IAM role used to deploy local configurations.
    typeVersion String
    Version of the Quick Setup type to use.
    parameters {[key: string]: string}
    Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
    type string
    Type of the Quick Setup configuration.
    id string
    localDeploymentAdministrationRoleArn string
    localDeploymentExecutionRoleName string
    Name of the IAM role used to deploy local configurations.
    typeVersion string
    Version of the Quick Setup type to use.
    parameters Mapping[str, str]
    Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
    type str
    Type of the Quick Setup configuration.
    id str
    local_deployment_administration_role_arn str
    local_deployment_execution_role_name str
    Name of the IAM role used to deploy local configurations.
    type_version str
    Version of the Quick Setup type to use.
    parameters Map<String>
    Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
    type String
    Type of the Quick Setup configuration.
    id String
    localDeploymentAdministrationRoleArn String
    localDeploymentExecutionRoleName String
    Name of the IAM role used to deploy local configurations.
    typeVersion String
    Version of the Quick Setup type to use.

    QuicksetupConfigurationManagerStatusSummary, QuicksetupConfigurationManagerStatusSummaryArgs

    Status string
    Current status.
    StatusMessage string
    When applicable, returns an informational message relevant to the current status and status type of the status summary object.
    StatusType string
    Type of a status summary.
    Status string
    Current status.
    StatusMessage string
    When applicable, returns an informational message relevant to the current status and status type of the status summary object.
    StatusType string
    Type of a status summary.
    status String
    Current status.
    statusMessage String
    When applicable, returns an informational message relevant to the current status and status type of the status summary object.
    statusType String
    Type of a status summary.
    status string
    Current status.
    statusMessage string
    When applicable, returns an informational message relevant to the current status and status type of the status summary object.
    statusType string
    Type of a status summary.
    status str
    Current status.
    status_message str
    When applicable, returns an informational message relevant to the current status and status type of the status summary object.
    status_type str
    Type of a status summary.
    status String
    Current status.
    statusMessage String
    When applicable, returns an informational message relevant to the current status and status type of the status summary object.
    statusType String
    Type of a status summary.

    QuicksetupConfigurationManagerTimeouts, QuicksetupConfigurationManagerTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import SSM Quick Setup Configuration Manager using the manager_arn. For example:

    $ pulumi import aws:ssm/quicksetupConfigurationManager:QuicksetupConfigurationManager example arn:aws:ssm-quicksetup:us-east-1:012345678901:configuration-manager/abcd-1234
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v6.60.0 published on Tuesday, Nov 19, 2024 by Pulumi