interface CfnConfigurationManagerProps
Language | Type name |
---|---|
.NET | Amazon.CDK.aws_ssmquicksetup.CfnConfigurationManagerProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssmquicksetup#CfnConfigurationManagerProps |
Java | software.amazon.awscdk.services.ssmquicksetup.CfnConfigurationManagerProps |
Python | aws_cdk.aws_ssmquicksetup.CfnConfigurationManagerProps |
TypeScript | aws-cdk-lib » aws_ssmquicksetup » CfnConfigurationManagerProps |
Properties for defining a CfnConfigurationManager
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssmquicksetup as ssmquicksetup } from 'aws-cdk-lib';
const cfnConfigurationManagerProps: ssmquicksetup.CfnConfigurationManagerProps = {
configurationDefinitions: [{
parameters: {
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: {
tagsKey: 'tags',
},
};
Properties
Name | Type | Description |
---|---|---|
configuration | IResolvable | IResolvable | Configuration [] | The definition of the Quick Setup configuration that the configuration manager deploys. |
description? | string | The description of the configuration. |
name? | string | The name of the configuration. |
tags? | { [string]: string } | Key-value pairs of metadata to assign to the configuration manager. |
configurationDefinitions
Type:
IResolvable
|
IResolvable
|
Configuration
[]
The definition of the Quick Setup configuration that the configuration manager deploys.
description?
Type:
string
(optional)
The description of the configuration.
name?
Type:
string
(optional)
The name of the configuration.
tags?
Type:
{ [string]: string }
(optional)
Key-value pairs of metadata to assign to the configuration manager.