[][src]Struct rusoto_opsworkscm::AssociateNodeRequest

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 Clone for AssociateNodeRequest
[src]

Performs copy-assignment from source. Read more

impl Default for AssociateNodeRequest
[src]

impl PartialEq<AssociateNodeRequest> for AssociateNodeRequest
[src]

impl Debug for AssociateNodeRequest
[src]

impl Serialize for AssociateNodeRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T