interface StackConfigurationManagerProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.OpsWorks.CfnStack.StackConfigurationManagerProperty |
Java | software.amazon.awscdk.services.opsworks.CfnStack.StackConfigurationManagerProperty |
Python | aws_cdk.aws_opsworks.CfnStack.StackConfigurationManagerProperty |
TypeScript | @aws-cdk/aws-opsworks » CfnStack » StackConfigurationManagerProperty |
Describes the configuration manager.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as opsworks from '@aws-cdk/aws-opsworks';
const stackConfigurationManagerProperty: opsworks.CfnStack.StackConfigurationManagerProperty = {
name: 'name',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name. |
| version? | string | The Chef version. |
name?
Type:
string
(optional)
The name.
This parameter must be set to Chef .
version?
Type:
string
(optional)
The Chef version.
This parameter must be set to 12, 11.10, or 11.4 for Linux stacks, and to 12.2 for Windows stacks. The default value for Linux stacks is 12.

.NET
Java
Python
TypeScript