pub struct LaunchTemplatePlacement {
pub affinity: Option<String>,
pub availability_zone: Option<String>,
pub group_name: Option<String>,
pub host_id: Option<String>,
pub host_resource_group_arn: Option<String>,
pub partition_number: Option<i64>,
pub spread_domain: Option<String>,
pub tenancy: Option<String>,
}Expand description
Describes the placement of an instance.
Fields§
§affinity: Option<String>The affinity setting for the instance on the Dedicated Host.
availability_zone: Option<String>The Availability Zone of the instance.
group_name: Option<String>The name of the placement group for the instance.
host_id: Option<String>The ID of the Dedicated Host for the instance.
host_resource_group_arn: Option<String>The ARN of the host resource group in which to launch the instances.
partition_number: Option<i64>The number of the partition the instance should launch in. Valid only if the placement group strategy is set to partition.
spread_domain: Option<String>Reserved for future use.
tenancy: Option<String>The tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of dedicated runs on single-tenant hardware.
Trait Implementations§
Source§impl Clone for LaunchTemplatePlacement
impl Clone for LaunchTemplatePlacement
Source§fn clone(&self) -> LaunchTemplatePlacement
fn clone(&self) -> LaunchTemplatePlacement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LaunchTemplatePlacement
impl Debug for LaunchTemplatePlacement
Source§impl Default for LaunchTemplatePlacement
impl Default for LaunchTemplatePlacement
Source§fn default() -> LaunchTemplatePlacement
fn default() -> LaunchTemplatePlacement
Returns the “default value” for a type. Read more
Source§impl PartialEq for LaunchTemplatePlacement
impl PartialEq for LaunchTemplatePlacement
impl StructuralPartialEq for LaunchTemplatePlacement
Auto Trait Implementations§
impl Freeze for LaunchTemplatePlacement
impl RefUnwindSafe for LaunchTemplatePlacement
impl Send for LaunchTemplatePlacement
impl Sync for LaunchTemplatePlacement
impl Unpin for LaunchTemplatePlacement
impl UnwindSafe for LaunchTemplatePlacement
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
Mutably borrows from an owned value. Read more