[−][src]Struct rusoto_opsworks::CreateLayerRequest
Fields
attributes: Option<HashMap<String, String>>
One or more user-defined key-value pairs to be added to the stack attributes.
To create a cluster layer, set the EcsClusterArn
attribute 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>
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 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. This feature is supported as of version 1.7.42 of the AWS CLI.
custom_recipes: Option<Recipes>
A LayerCustomRecipes
object that specifies the layer custom recipes.
custom_security_group_ids: Option<Vec<String>>
An array containing the layer custom security group IDs.
enable_auto_healing: Option<bool>
Whether to disable auto healing 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
. 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 by manually running yum
(Amazon Linux) or apt-get
(Ubuntu) on the instances.
To ensure that your instances have the latest security updates, we strongly recommend using the default value of true
.
lifecycle_event_configuration: Option<LifecycleEventConfiguration>
A LifeCycleEventConfiguration
object that you can use to configure the Shutdown event to specify an execution timeout and enable or disable Elastic Load Balancer connection draining.
name: String
The layer name, which is used by the console.
packages: Option<Vec<String>>
An array of Package
objects that describes the layer packages.
shortname: 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 recipes. 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, which are limited to the alphanumeric characters, '-', '_', and '.'.
The built-in layers' short names are defined by AWS OpsWorks Stacks. For more information, see the Layer Reference.
stack_id: String
The layer stack ID.
type_: String
The layer type. A stack cannot have more than one built-in layer of the same type. It can have any number of custom layers. Built-in layers are not available in Chef 12 stacks.
use_ebs_optimized_instances: Option<bool>
Whether to use Amazon EBS-optimized instances.
volume_configurations: Option<Vec<VolumeConfiguration>>
A VolumeConfigurations
object that describes the layer's Amazon EBS volumes.
Trait Implementations
impl PartialEq<CreateLayerRequest> for CreateLayerRequest
[src]
fn eq(&self, other: &CreateLayerRequest) -> bool
[src]
fn ne(&self, other: &CreateLayerRequest) -> bool
[src]
impl Default for CreateLayerRequest
[src]
fn default() -> CreateLayerRequest
[src]
impl Clone for CreateLayerRequest
[src]
fn clone(&self) -> CreateLayerRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateLayerRequest
[src]
impl Serialize for CreateLayerRequest
[src]
Auto Trait Implementations
impl Send for CreateLayerRequest
impl Sync for CreateLayerRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self