Class: Aws::OpsWorksCM::Types::AssociateNodeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorksCM::Types::AssociateNodeRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opsworkscm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#engine_attributes ⇒ Array<Types::EngineAttribute>
Engine attributes used for associating the node.
-
#node_name ⇒ String
The name of the node.
-
#server_name ⇒ String
The name of the server with which to associate the node.
Instance Attribute Details
#engine_attributes ⇒ Array<Types::EngineAttribute>
Engine attributes used for associating the node.
**Attributes accepted in a AssociateNode request for Chef**
-
‘CHEF_ORGANIZATION`: The Chef organization with which the node is associated. By default only one organization named `default` can exist.
-
‘CHEF_NODE_PUBLIC_KEY`: A PEM-formatted public key. This key is required for the `chef-client` agent to access the Chef API.
**Attributes accepted in a AssociateNode request for Puppet**
-
‘PUPPET_NODE_CSR`: A PEM-formatted certificate-signing request (CSR) that is created by the node.
^
75 76 77 78 79 80 81 |
# File 'lib/aws-sdk-opsworkscm/types.rb', line 75 class AssociateNodeRequest < Struct.new( :server_name, :node_name, :engine_attributes) SENSITIVE = [] include Aws::Structure end |
#node_name ⇒ String
The name of the node.
75 76 77 78 79 80 81 |
# File 'lib/aws-sdk-opsworkscm/types.rb', line 75 class AssociateNodeRequest < Struct.new( :server_name, :node_name, :engine_attributes) SENSITIVE = [] include Aws::Structure end |
#server_name ⇒ String
The name of the server with which to associate the node.
75 76 77 78 79 80 81 |
# File 'lib/aws-sdk-opsworkscm/types.rb', line 75 class AssociateNodeRequest < Struct.new( :server_name, :node_name, :engine_attributes) SENSITIVE = [] include Aws::Structure end |