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
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
System.Object
Remarks
Description
The description of the configuration.
virtual string Description { get; }
Property Value
System.String
Remarks
Name
The name of the configuration.
virtual string Name { get; }
Property Value
System.String
Remarks
Tags
Key-value pairs of metadata to assign to the configuration manager.
virtual IDictionary<string, string> Tags { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.String>