Show / Hide Table of Contents

Interface ICfnConfigurationManagerProps

Properties for defining a CfnConfigurationManager.

Namespace: Amazon.CDK.AwsSsmquicksetup
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnConfigurationManagerProps
Syntax (vb)
Public Interface ICfnConfigurationManagerProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmquicksetup-configurationmanager.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Aws_ssmquicksetup;

             var cfnConfigurationManagerProps = new CfnConfigurationManagerProps {
                 ConfigurationDefinitions = new [] { new ConfigurationDefinitionProperty {
                     Parameters = new Dictionary<string, string> {
                         { "parametersKey", "parameters" }
                     },
                     Type = "type",

                     // the properties below are optional
                     Id = "id",
                     LocalDeploymentAdministrationRoleArn = "localDeploymentAdministrationRoleArn",
                     LocalDeploymentExecutionRoleName = "localDeploymentExecutionRoleName",
                     TypeVersion = "typeVersion"
                 } },

                 // the properties below are optional
                 Description = "description",
                 Name = "name",
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Synopsis

Properties

ConfigurationDefinitions

The definition of the Quick Setup configuration that the configuration manager deploys.

Description

The description of the configuration.

Name

The name of the configuration.

Tags

Key-value pairs of metadata to assign to the configuration manager.

Properties

ConfigurationDefinitions

The definition of the Quick Setup configuration that the configuration manager deploys.

object ConfigurationDefinitions { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmquicksetup-configurationmanager.html#cfn-ssmquicksetup-configurationmanager-configurationdefinitions

Description

The description of the configuration.

string? Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmquicksetup-configurationmanager.html#cfn-ssmquicksetup-configurationmanager-description

Name

The name of the configuration.

string? Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmquicksetup-configurationmanager.html#cfn-ssmquicksetup-configurationmanager-name

Tags

Key-value pairs of metadata to assign to the configuration manager.

IDictionary<string, string>? Tags { get; }
Property Value

IDictionary<string, string>

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmquicksetup-configurationmanager.html#cfn-ssmquicksetup-configurationmanager-tags

Back to top Generated by DocFX