[][src]Struct rusoto_opsworkscm::ExportServerEngineAttributeRequest

pub struct ExportServerEngineAttributeRequest {
    pub export_attribute_name: String,
    pub input_attributes: Option<Vec<EngineAttribute>>,
    pub server_name: String,
}

Fields

export_attribute_name: String

The name of the export attribute. Currently, the supported export attribute is Userdata. This exports a user data script that includes parameters and values provided in the InputAttributes list.

input_attributes: Option<Vec<EngineAttribute>>

The list of engine attributes. The list type is EngineAttribute. An EngineAttribute list item is a pair that includes an attribute name and its value. For the Userdata ExportAttributeName, the following are supported engine attribute names.

  • RunList In Chef, a list of roles or recipes that are run in the specified order. In Puppet, this parameter is ignored.

  • OrganizationName In Chef, an organization name. AWS OpsWorks for Chef Automate always creates the organization default. In Puppet, this parameter is ignored.

  • NodeEnvironment In Chef, a node environment (for example, development, staging, or one-box). In Puppet, this parameter is ignored.

  • NodeClientVersion In Chef, the version of the Chef engine (three numbers separated by dots, such as 13.8.5). If this attribute is empty, OpsWorks for Chef Automate uses the most current version. In Puppet, this parameter is ignored.

server_name: String

The name of the server from which you are exporting the attribute.

Trait Implementations

impl Clone for ExportServerEngineAttributeRequest[src]

impl Debug for ExportServerEngineAttributeRequest[src]

impl Default for ExportServerEngineAttributeRequest[src]

impl PartialEq<ExportServerEngineAttributeRequest> for ExportServerEngineAttributeRequest[src]

impl Serialize for ExportServerEngineAttributeRequest[src]

impl StructuralPartialEq for ExportServerEngineAttributeRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.