#[non_exhaustive]
pub struct Layer {
Show 23 fields pub arn: Option<String>, pub stack_id: Option<String>, pub layer_id: Option<String>, pub type: Option<LayerType>, pub name: Option<String>, pub shortname: Option<String>, pub attributes: Option<HashMap<LayerAttributesKeys, String>>, pub cloud_watch_logs_configuration: Option<CloudWatchLogsConfiguration>, pub custom_instance_profile_arn: Option<String>, pub custom_json: Option<String>, pub custom_security_group_ids: Option<Vec<String>>, pub default_security_group_names: Option<Vec<String>>, pub packages: Option<Vec<String>>, pub volume_configurations: Option<Vec<VolumeConfiguration>>, pub enable_auto_healing: Option<bool>, pub auto_assign_elastic_ips: Option<bool>, pub auto_assign_public_ips: Option<bool>, pub default_recipes: Option<Recipes>, pub custom_recipes: Option<Recipes>, pub created_at: Option<String>, pub install_updates_on_boot: Option<bool>, pub use_ebs_optimized_instances: Option<bool>, pub lifecycle_event_configuration: Option<LifecycleEventConfiguration>,
}
Expand description

Describes a layer.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
arn: Option<String>

The Amazon Resource Number (ARN) of a layer.

stack_id: Option<String>

The layer stack ID.

layer_id: Option<String>

The layer ID.

type: Option<LayerType>

The layer type.

name: Option<String>

The layer name.

shortname: Option<String>

The layer short name.

attributes: Option<HashMap<LayerAttributesKeys, 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.

cloud_watch_logs_configuration: Option<CloudWatchLogsConfiguration>

The Amazon CloudWatch Logs configuration settings for the layer.

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_security_group_ids: Option<Vec<String>>

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

default_security_group_names: Option<Vec<String>>

An array containing the layer's security group names.

packages: Option<Vec<String>>

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

volume_configurations: Option<Vec<VolumeConfiguration>>

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

enable_auto_healing: Option<bool>

Whether auto healing is disabled for the layer.

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.

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.

custom_recipes: Option<Recipes>

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

created_at: Option<String>

Date when the layer was created.

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.

use_ebs_optimized_instances: Option<bool>

Whether the layer uses Amazon EBS-optimized instances.

lifecycle_event_configuration: Option<LifecycleEventConfiguration>

A LifeCycleEventConfiguration object that specifies the Shutdown event configuration.

Implementations

The Amazon Resource Number (ARN) of a layer.

The layer stack ID.

The layer ID.

The layer type.

The layer name.

The layer short name.

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.

The Amazon CloudWatch Logs configuration settings for the layer.

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.

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

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

An array containing the layer's security group names.

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

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

Whether auto healing is disabled for the layer.

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

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.

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.

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

Date when the layer was created.

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.

Whether the layer uses Amazon EBS-optimized instances.

A LifeCycleEventConfiguration object that specifies the Shutdown event configuration.

Creates a new builder-style object to manufacture Layer

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more