pub struct LaunchTemplatePlacementRequest {
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 an instance on a Dedicated Host.
availability_zone: Option<String>The Availability Zone for 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. If you specify a host resource group ARN, omit the Tenancy parameter or set it to host.
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 LaunchTemplatePlacementRequest
impl Clone for LaunchTemplatePlacementRequest
Source§fn clone(&self) -> LaunchTemplatePlacementRequest
fn clone(&self) -> LaunchTemplatePlacementRequest
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 Default for LaunchTemplatePlacementRequest
impl Default for LaunchTemplatePlacementRequest
Source§fn default() -> LaunchTemplatePlacementRequest
fn default() -> LaunchTemplatePlacementRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for LaunchTemplatePlacementRequest
impl PartialEq for LaunchTemplatePlacementRequest
Source§fn eq(&self, other: &LaunchTemplatePlacementRequest) -> bool
fn eq(&self, other: &LaunchTemplatePlacementRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LaunchTemplatePlacementRequest
Auto Trait Implementations§
impl Freeze for LaunchTemplatePlacementRequest
impl RefUnwindSafe for LaunchTemplatePlacementRequest
impl Send for LaunchTemplatePlacementRequest
impl Sync for LaunchTemplatePlacementRequest
impl Unpin for LaunchTemplatePlacementRequest
impl UnwindSafe for LaunchTemplatePlacementRequest
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