[][src]Struct rusoto_opsworkscm::Server

pub struct Server {
    pub associate_public_ip_address: Option<bool>,
    pub backup_retention_count: Option<i64>,
    pub cloud_formation_stack_arn: Option<String>,
    pub created_at: Option<f64>,
    pub disable_automated_backup: Option<bool>,
    pub endpoint: Option<String>,
    pub engine: Option<String>,
    pub engine_attributes: Option<Vec<EngineAttribute>>,
    pub engine_model: Option<String>,
    pub engine_version: Option<String>,
    pub instance_profile_arn: Option<String>,
    pub instance_type: Option<String>,
    pub key_pair: Option<String>,
    pub maintenance_status: Option<String>,
    pub preferred_backup_window: Option<String>,
    pub preferred_maintenance_window: Option<String>,
    pub security_group_ids: Option<Vec<String>>,
    pub server_arn: Option<String>,
    pub server_name: Option<String>,
    pub service_role_arn: Option<String>,
    pub status: Option<String>,
    pub status_reason: Option<String>,
    pub subnet_ids: Option<Vec<String>>,
}

Describes a configuration management server.

Fields

Associate a public IP address with a server that you are launching.

The number of automated backups to keep.

The ARN of the CloudFormation stack that was used to create the server.

Time stamp of server creation. Example 2016-07-29T13:38:47.520Z

Disables automated backups. The number of stored backups is dependent on the value of PreferredBackupCount.

A DNS name that can be used to access the engine. Example: myserver-asdfghjkl.us-east-1.opsworks.io

The engine type of the server. Valid values in this release include Chef and Puppet.

The response of a createServer() request returns the master credential to access the server in EngineAttributes. These credentials are not stored by AWS OpsWorks CM; they are returned only as part of the result of createServer().

Attributes returned in a createServer response for Chef

  • CHEFPIVOTALKEY: A base64-encoded RSA private key that is generated by AWS OpsWorks for Chef Automate. This private key is required to access the Chef API.

  • CHEFSTARTERKIT: A base64-encoded ZIP file. The ZIP file contains a Chef starter kit, which includes a README, a configuration file, and the required RSA private key. Save this file, unzip it, and then change to the directory where you've unzipped the file contents. From this directory, you can run Knife commands.

Attributes returned in a createServer response for Puppet

  • PUPPETSTARTERKIT: A base64-encoded ZIP file. The ZIP file contains a Puppet starter kit, including a README and a required private key. Save this file, unzip it, and then change to the directory where you've unzipped the file contents.

  • PUPPETADMINPASSWORD: An administrator password that you can use to sign in to the Puppet Enterprise console after the server is online.

The engine model of the server. Valid values in this release include Monolithic for Puppet and Single for Chef.

The engine version of the server. For a Chef server, the valid value for EngineVersion is currently 12. For a Puppet server, the valid value is 2017.

The instance profile ARN of the server.

The instance type for the server, as specified in the CloudFormation stack. This might not be the same instance type that is shown in the EC2 console.

The key pair associated with the server.

The status of the most recent server maintenance run. Shows SUCCESS or FAILED.

The preferred backup period specified for the server.

The preferred maintenance period specified for the server.

The security group IDs for the server, as specified in the CloudFormation stack. These might not be the same security groups that are shown in the EC2 console.

The ARN of the server.

The name of the server.

The service role ARN used to create the server.

The server's status. This field displays the states of actions in progress, such as creating, running, or backing up the server, as well as the server's health state.

Depending on the server status, this field has either a human-readable message (such as a create or backup error), or an escaped block of JSON (used for health check results).

The subnet IDs specified in a CreateServer request.

Trait Implementations

impl Default for Server
[src]

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

impl PartialEq<Server> for Server
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Server
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Server
[src]

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for Server
[src]

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for Server

impl Sync for Server

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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.

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

Performs the conversion.

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T