interface StackConfigurationManagerProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpsWorks.Mixins.CfnStackPropsMixin.StackConfigurationManagerProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopsworks/mixins#CfnStackPropsMixin_StackConfigurationManagerProperty |
Java | software.amazon.awscdk.mixins.preview.services.opsworks.mixins.CfnStackPropsMixin.StackConfigurationManagerProperty |
Python | aws_cdk.mixins_preview.aws_opsworks.mixins.CfnStackPropsMixin.StackConfigurationManagerProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opsworks » mixins » CfnStackPropsMixin » StackConfigurationManagerProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as opsworks_mixins } from '@aws-cdk/mixins-preview/aws-opsworks';
const stackConfigurationManagerProperty: opsworks_mixins.CfnStackPropsMixin.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
Go
Java
Python
TypeScript