[][src]Struct rusoto_opsworks::Layer

pub struct Layer {
    pub arn: Option<String>,
    pub attributes: Option<HashMap<String, String>>,
    pub auto_assign_elastic_ips: Option<bool>,
    pub auto_assign_public_ips: Option<bool>,
    pub cloud_watch_logs_configuration: Option<CloudWatchLogsConfiguration>,
    pub created_at: Option<String>,
    pub custom_instance_profile_arn: Option<String>,
    pub custom_json: Option<String>,
    pub custom_recipes: Option<Recipes>,
    pub custom_security_group_ids: Option<Vec<String>>,
    pub default_recipes: Option<Recipes>,
    pub default_security_group_names: Option<Vec<String>>,
    pub enable_auto_healing: Option<bool>,
    pub install_updates_on_boot: Option<bool>,
    pub layer_id: Option<String>,
    pub lifecycle_event_configuration: Option<LifecycleEventConfiguration>,
    pub name: Option<String>,
    pub packages: Option<Vec<String>>,
    pub shortname: Option<String>,
    pub stack_id: Option<String>,
    pub type_: Option<String>,
    pub use_ebs_optimized_instances: Option<bool>,
    pub volume_configurations: Option<Vec<VolumeConfiguration>>,
}

Describes a layer.

Fields

arn: Option<String>

The Amazon Resource Number (ARN) of a layer.

attributes: Option<HashMap<String, String>>

The layer attributes.

For the HaproxyStatsPassword, MysqlRootPassword, and GangliaPassword attributes, AWS OpsWorks Stacks returns *****FILTERED***** instead of the actual value

For an ECS Cluster layer, AWS OpsWorks Stacks the EcsClusterArn attribute is set to the cluster's ARN.

auto_assign_elastic_ips: Option<bool>

Whether to automatically assign an Elastic IP address to the layer's instances. For more information, see How to Edit a Layer.

auto_assign_public_ips: Option<bool>

For stacks that are running in a VPC, whether to automatically assign a public IP address to the layer's instances. For more information, see How to Edit a Layer.

cloud_watch_logs_configuration: Option<CloudWatchLogsConfiguration>

The Amazon CloudWatch Logs configuration settings for the layer.

created_at: Option<String>

Date when the layer was created.

custom_instance_profile_arn: Option<String>

The ARN of the default IAM profile to be used for the layer's EC2 instances. For more information about IAM ARNs, see Using Identifiers.

custom_json: Option<String>

A JSON formatted string containing the layer's custom stack configuration and deployment attributes.

custom_recipes: Option<Recipes>

A LayerCustomRecipes object that specifies the layer's custom recipes.

custom_security_group_ids: Option<Vec<String>>

An array containing the layer's custom security group IDs.

default_recipes: Option<Recipes>

AWS OpsWorks Stacks supports five lifecycle events: setup, configuration, deploy, undeploy, and shutdown. For each layer, AWS OpsWorks Stacks runs a set of standard recipes for each event. You can also provide custom recipes for any or all layers and events. AWS OpsWorks Stacks runs custom event recipes after the standard recipes. LayerCustomRecipes specifies the custom recipes for a particular layer to be run in response to each of the five events.

To specify a recipe, use the cookbook's directory name in the repository followed by two colons and the recipe name, which is the recipe's file name without the .rb extension. For example: phpapp2::dbsetup specifies the dbsetup.rb recipe in the repository's phpapp2 folder.

default_security_group_names: Option<Vec<String>>

An array containing the layer's security group names.

enable_auto_healing: Option<bool>

Whether auto healing is disabled for the layer.

install_updates_on_boot: Option<bool>

Whether to install operating system and package updates when the instance boots. The default value is true. If this value is set to false, you must then update your instances manually by using CreateDeployment to run the update_dependencies stack command or manually running yum (Amazon Linux) or apt-get (Ubuntu) on the instances.

We strongly recommend using the default value of true, to ensure that your instances have the latest security updates.

layer_id: Option<String>

The layer ID.

lifecycle_event_configuration: Option<LifecycleEventConfiguration>

A LifeCycleEventConfiguration object that specifies the Shutdown event configuration.

name: Option<String>

The layer name.

packages: Option<Vec<String>>

An array of Package objects that describe the layer's packages.

shortname: Option<String>

The layer short name.

stack_id: Option<String>

The layer stack ID.

type_: Option<String>

The layer type.

use_ebs_optimized_instances: Option<bool>

Whether the layer uses Amazon EBS-optimized instances.

volume_configurations: Option<Vec<VolumeConfiguration>>

A VolumeConfigurations object that describes the layer's Amazon EBS volumes.

Trait Implementations

impl Clone for Layer[src]

impl Debug for Layer[src]

impl Default for Layer[src]

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

impl PartialEq<Layer> for Layer[src]

impl StructuralPartialEq for Layer[src]

Auto Trait Implementations

impl RefUnwindSafe for Layer

impl Send for Layer

impl Sync for Layer

impl Unpin for Layer

impl UnwindSafe for Layer

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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> Sealed<T> for T where
    T: ?Sized

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.