Class: Aws::OpsWorks::Types::ChefConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorks::Types::ChefConfiguration
- Defined in:
- gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb
Overview
Note:
When making an API call, you may pass ChefConfiguration data as a hash:
{
manage_berkshelf: false,
berkshelf_version: "String",
}
Describes the Chef configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#berkshelf_version ⇒ String
The Berkshelf version.
-
#manage_berkshelf ⇒ Boolean
Whether to enable Berkshelf.
Instance Attribute Details
#berkshelf_version ⇒ String
The Berkshelf version.
400 401 402 403 404 405 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 400 class ChefConfiguration < Struct.new( :manage_berkshelf, :berkshelf_version) SENSITIVE = [] include Aws::Structure end |
#manage_berkshelf ⇒ Boolean
Whether to enable Berkshelf.
400 401 402 403 404 405 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 400 class ChefConfiguration < Struct.new( :manage_berkshelf, :berkshelf_version) SENSITIVE = [] include Aws::Structure end |