Struct aws_sdk_opsworks::input::UpdateLayerInput[][src]

#[non_exhaustive]
pub struct UpdateLayerInput {
Show 17 fields pub layer_id: Option<String>, 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 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 custom_recipes: Option<Recipes>, pub install_updates_on_boot: Option<bool>, pub use_ebs_optimized_instances: Option<bool>, pub lifecycle_event_configuration: Option<LifecycleEventConfiguration>,
}

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.
layer_id: Option<String>

The layer ID.

name: Option<String>

The layer name, which is used by the console.

shortname: Option<String>

For custom layers only, use this parameter to specify the layer's short name, which is used internally by AWS OpsWorks Stacks and by Chef. The short name is also used as the name for the directory where your app files are installed. It can have a maximum of 200 characters and must be in the following format: /\A[a-z0-9\-\_\.]+\Z/.

The built-in layers' short names are defined by AWS OpsWorks Stacks. For more information, see the Layer Reference

attributes: Option<HashMap<LayerAttributesKeys, String>>

One or more user-defined key/value pairs to be added to the stack attributes.

cloud_watch_logs_configuration: Option<CloudWatchLogsConfiguration>

Specifies CloudWatch Logs configuration options for the layer. For more information, see CloudWatchLogsLogStream.

custom_instance_profile_arn: Option<String>

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

custom_json: Option<String>

A JSON-formatted string containing custom stack configuration and deployment attributes to be installed on the layer's instances. For more information, see Using Custom JSON.

custom_security_group_ids: Option<Vec<String>>

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

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 to disable auto healing 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.

custom_recipes: Option<Recipes>

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

install_updates_on_boot: Option<bool>

Whether to install operating system and package updates when the instance boots. The default value is true. To control when updates are installed, set this value 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 to use Amazon EBS-optimized instances.

lifecycle_event_configuration: Option<LifecycleEventConfiguration>

Implementations

Consumes the builder and constructs an Operation<UpdateLayer>

Creates a new builder-style object to manufacture UpdateLayerInput

The layer ID.

The layer name, which is used by the console.

For custom layers only, use this parameter to specify the layer's short name, which is used internally by AWS OpsWorks Stacks and by Chef. The short name is also used as the name for the directory where your app files are installed. It can have a maximum of 200 characters and must be in the following format: /\A[a-z0-9\-\_\.]+\Z/.

The built-in layers' short names are defined by AWS OpsWorks Stacks. For more information, see the Layer Reference

One or more user-defined key/value pairs to be added to the stack attributes.

Specifies CloudWatch Logs configuration options for the layer. For more information, see CloudWatchLogsLogStream.

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

A JSON-formatted string containing custom stack configuration and deployment attributes to be installed on the layer's instances. For more information, see Using Custom JSON.

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

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

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

Whether to disable auto healing 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.

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

Whether to install operating system and package updates when the instance boots. The default value is true. To control when updates are installed, set this value 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 to use Amazon EBS-optimized instances.

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

Performs the conversion.

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

Performs the conversion.

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)

recently added

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