[−][src]Struct rusoto_opsworks::Stack
Describes a stack.
Fields
agent_version: Option<String>
The agent version. This parameter is set to LATEST
for auto-update. or a version number for a fixed agent version.
arn: Option<String>
The stack's ARN.
attributes: Option<HashMap<String, String>>
The stack's attributes.
chef_configuration: Option<ChefConfiguration>
A ChefConfiguration
object that specifies whether to enable Berkshelf and the Berkshelf version. For more information, see Create a New Stack.
configuration_manager: Option<StackConfigurationManager>
The configuration manager.
created_at: Option<String>
The date when the stack was created.
custom_cookbooks_source: Option<Source>
custom_json: Option<String>
A JSON object that contains user-defined attributes to be added to the stack configuration and deployment attributes. You can use custom JSON to override the corresponding default stack configuration attribute values or to pass data to recipes. The string should be in the following format:
"{\"key1\": \"value1\", \"key2\": \"value2\",...}"
For more information on custom JSON, see Use Custom JSON to Modify the Stack Configuration Attributes.
default_availability_zone: Option<String>
The stack's default Availability Zone. For more information, see Regions and Endpoints.
default_instance_profile_arn: Option<String>
The ARN of an IAM profile that is the default profile for all of the stack's EC2 instances. For more information about IAM ARNs, see Using Identifiers.
default_os: Option<String>
The stack's default operating system.
default_root_device_type: Option<String>
The default root device type. This value is used by default for all instances in the stack, but you can override it when you create an instance. For more information, see Storage for the Root Device.
default_ssh_key_name: Option<String>
A default Amazon EC2 key pair for the stack's instances. You can override this value when you create or update an instance.
default_subnet_id: Option<String>
The default subnet ID; applicable only if the stack is running in a VPC.
hostname_theme: Option<String>
The stack host name theme, with spaces replaced by underscores.
name: Option<String>
The stack name.
region: Option<String>
The stack AWS region, such as "ap-northeast-2". For more information about AWS regions, see Regions and Endpoints.
service_role_arn: Option<String>
The stack AWS Identity and Access Management (IAM) role.
stack_id: Option<String>
The stack ID.
use_custom_cookbooks: Option<bool>
Whether the stack uses custom cookbooks.
use_opsworks_security_groups: Option<bool>
Whether the stack automatically associates the AWS OpsWorks Stacks built-in security groups with the stack's layers.
vpc_id: Option<String>
The VPC ID; applicable only if the stack is running in a VPC.
Trait Implementations
impl PartialEq<Stack> for Stack
[src]
impl Default for Stack
[src]
impl Clone for Stack
[src]
fn clone(&self) -> Stack
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Stack
[src]
impl<'de> Deserialize<'de> for Stack
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
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> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self