Struct rusoto_opsworkscm::AssociateNodeRequest [] [src]

pub struct AssociateNodeRequest {
    pub engine_attributes: Vec<EngineAttribute>,
    pub node_name: String,
    pub server_name: String,
}

Fields

Engine attributes used for associating the node.

Attributes accepted in a AssociateNode request for Chef

  • CHEFORGANIZATION: The Chef organization with which the node is associated. By default only one organization named default can exist.

  • CHEFNODEPUBLICKEY: 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

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

The name of the node.

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

Trait Implementations

impl Default for AssociateNodeRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for AssociateNodeRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AssociateNodeRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations