You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::OpsWorksCM::Types::AssociateNodeRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AssociateNodeRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  server_name: "ServerName", # required
  node_name: "NodeName", # required
  engine_attributes: [ # required
    {
      name: "EngineAttributeName",
      value: "EngineAttributeValue",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#engine_attributesArray<Types::EngineAttribute>

Engine attributes used for associating the node.

Attributes accepted in a AssociateNode request for Chef .title

  • 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 .title

  • PUPPET_NODE_CSR: A PEM-formatted certificate-signing request (CSR) that is created by the node.

^

Returns:

#node_nameString

The name of the node.

Returns:

  • (String)

    The name of the node.

#server_nameString

The name of the server with which to associate the node.

Returns:

  • (String)

    The name of the server with which to associate the node.