#[non_exhaustive]pub struct CreateLayerInput {Show 18 fields
pub stack_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 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
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.stack_id: Option<String>
The layer stack ID.
type: Option<LayerType>
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.
name: Option<String>
The layer name, which is used by the console. Layer names can be a maximum of 32 characters.
shortname: Option<String>
For custom layers only, use this parameter to specify the layer's short name, which is used internally by 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 32 characters, which are limited to the alphanumeric characters, '-', '_', and '.'.
Built-in layer short names are defined by 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.
To create a cluster layer, set the EcsClusterArn
attribute to the cluster's ARN.
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 CLI.
custom_security_group_ids: Option<Vec<String>>
An array containing the layer custom security group IDs.
packages: Option<Vec<String>>
An array of Package
objects that describes the layer 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 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 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
.
use_ebs_optimized_instances: Option<bool>
Whether to use Amazon EBS-optimized instances.
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.
Implementations§
Source§impl CreateLayerInput
impl CreateLayerInput
Sourcepub fn type(&self) -> Option<&LayerType>
pub fn type(&self) -> Option<&LayerType>
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.
Sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The layer name, which is used by the console. Layer names can be a maximum of 32 characters.
Sourcepub fn shortname(&self) -> Option<&str>
pub fn shortname(&self) -> Option<&str>
For custom layers only, use this parameter to specify the layer's short name, which is used internally by 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 32 characters, which are limited to the alphanumeric characters, '-', '_', and '.'.
Built-in layer short names are defined by OpsWorks Stacks. For more information, see the Layer Reference.
Sourcepub fn attributes(&self) -> Option<&HashMap<LayerAttributesKeys, String>>
pub fn attributes(&self) -> Option<&HashMap<LayerAttributesKeys, 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.
Sourcepub fn cloud_watch_logs_configuration(
&self,
) -> Option<&CloudWatchLogsConfiguration>
pub fn cloud_watch_logs_configuration( &self, ) -> Option<&CloudWatchLogsConfiguration>
Specifies CloudWatch Logs configuration options for the layer. For more information, see CloudWatchLogsLogStream
.
Sourcepub fn custom_instance_profile_arn(&self) -> Option<&str>
pub fn custom_instance_profile_arn(&self) -> Option<&str>
The ARN of an IAM profile to be used for the layer's EC2 instances. For more information about IAM ARNs, see Using Identifiers.
Sourcepub fn custom_json(&self) -> Option<&str>
pub fn custom_json(&self) -> Option<&str>
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 CLI.
Sourcepub fn custom_security_group_ids(&self) -> &[String]
pub fn custom_security_group_ids(&self) -> &[String]
An array containing the layer custom security group IDs.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .custom_security_group_ids.is_none()
.
Sourcepub fn packages(&self) -> &[String]
pub fn packages(&self) -> &[String]
An array of Package
objects that describes the layer packages.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .packages.is_none()
.
Sourcepub fn volume_configurations(&self) -> &[VolumeConfiguration]
pub fn volume_configurations(&self) -> &[VolumeConfiguration]
A VolumeConfigurations
object that describes the layer's Amazon EBS volumes.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .volume_configurations.is_none()
.
Sourcepub fn enable_auto_healing(&self) -> Option<bool>
pub fn enable_auto_healing(&self) -> Option<bool>
Whether to disable auto healing for the layer.
Sourcepub fn auto_assign_elastic_ips(&self) -> Option<bool>
pub fn auto_assign_elastic_ips(&self) -> Option<bool>
Whether to automatically assign an Elastic IP address to the layer's instances. For more information, see How to Edit a Layer.
Sourcepub fn auto_assign_public_ips(&self) -> Option<bool>
pub fn auto_assign_public_ips(&self) -> 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.
Sourcepub fn custom_recipes(&self) -> Option<&Recipes>
pub fn custom_recipes(&self) -> Option<&Recipes>
A LayerCustomRecipes
object that specifies the layer custom recipes.
Sourcepub fn install_updates_on_boot(&self) -> Option<bool>
pub fn install_updates_on_boot(&self) -> 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
.
Sourcepub fn use_ebs_optimized_instances(&self) -> Option<bool>
pub fn use_ebs_optimized_instances(&self) -> Option<bool>
Whether to use Amazon EBS-optimized instances.
Sourcepub fn lifecycle_event_configuration(
&self,
) -> Option<&LifecycleEventConfiguration>
pub fn lifecycle_event_configuration( &self, ) -> 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.
Source§impl CreateLayerInput
impl CreateLayerInput
Sourcepub fn builder() -> CreateLayerInputBuilder
pub fn builder() -> CreateLayerInputBuilder
Creates a new builder-style object to manufacture CreateLayerInput
.
Trait Implementations§
Source§impl Clone for CreateLayerInput
impl Clone for CreateLayerInput
Source§fn clone(&self) -> CreateLayerInput
fn clone(&self) -> CreateLayerInput
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CreateLayerInput
impl Debug for CreateLayerInput
Source§impl PartialEq for CreateLayerInput
impl PartialEq for CreateLayerInput
impl StructuralPartialEq for CreateLayerInput
Auto Trait Implementations§
impl Freeze for CreateLayerInput
impl RefUnwindSafe for CreateLayerInput
impl Send for CreateLayerInput
impl Sync for CreateLayerInput
impl Unpin for CreateLayerInput
impl UnwindSafe for CreateLayerInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute
value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
Quirk
value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition
value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);