#[non_exhaustive]pub struct LaunchTemplatePlacementRequestBuilder { /* private fields */ }
Expand description
A builder for LaunchTemplatePlacementRequest
.
Implementations§
source§impl LaunchTemplatePlacementRequestBuilder
impl LaunchTemplatePlacementRequestBuilder
sourcepub fn availability_zone(self, input: impl Into<String>) -> Self
pub fn availability_zone(self, input: impl Into<String>) -> Self
The Availability Zone for the instance.
sourcepub fn set_availability_zone(self, input: Option<String>) -> Self
pub fn set_availability_zone(self, input: Option<String>) -> Self
The Availability Zone for the instance.
sourcepub fn get_availability_zone(&self) -> &Option<String>
pub fn get_availability_zone(&self) -> &Option<String>
The Availability Zone for the instance.
sourcepub fn affinity(self, input: impl Into<String>) -> Self
pub fn affinity(self, input: impl Into<String>) -> Self
The affinity setting for an instance on a Dedicated Host.
sourcepub fn set_affinity(self, input: Option<String>) -> Self
pub fn set_affinity(self, input: Option<String>) -> Self
The affinity setting for an instance on a Dedicated Host.
sourcepub fn get_affinity(&self) -> &Option<String>
pub fn get_affinity(&self) -> &Option<String>
The affinity setting for an instance on a Dedicated Host.
sourcepub fn group_name(self, input: impl Into<String>) -> Self
pub fn group_name(self, input: impl Into<String>) -> Self
The name of the placement group for the instance.
sourcepub fn set_group_name(self, input: Option<String>) -> Self
pub fn set_group_name(self, input: Option<String>) -> Self
The name of the placement group for the instance.
sourcepub fn get_group_name(&self) -> &Option<String>
pub fn get_group_name(&self) -> &Option<String>
The name of the placement group for the instance.
sourcepub fn host_id(self, input: impl Into<String>) -> Self
pub fn host_id(self, input: impl Into<String>) -> Self
The ID of the Dedicated Host for the instance.
sourcepub fn set_host_id(self, input: Option<String>) -> Self
pub fn set_host_id(self, input: Option<String>) -> Self
The ID of the Dedicated Host for the instance.
sourcepub fn get_host_id(&self) -> &Option<String>
pub fn get_host_id(&self) -> &Option<String>
The ID of the Dedicated Host for the instance.
sourcepub fn tenancy(self, input: Tenancy) -> Self
pub fn tenancy(self, input: Tenancy) -> Self
The tenancy of the instance. An instance with a tenancy of dedicated runs on single-tenant hardware.
sourcepub fn set_tenancy(self, input: Option<Tenancy>) -> Self
pub fn set_tenancy(self, input: Option<Tenancy>) -> Self
The tenancy of the instance. An instance with a tenancy of dedicated runs on single-tenant hardware.
sourcepub fn get_tenancy(&self) -> &Option<Tenancy>
pub fn get_tenancy(&self) -> &Option<Tenancy>
The tenancy of the instance. An instance with a tenancy of dedicated runs on single-tenant hardware.
sourcepub fn spread_domain(self, input: impl Into<String>) -> Self
pub fn spread_domain(self, input: impl Into<String>) -> Self
Reserved for future use.
sourcepub fn set_spread_domain(self, input: Option<String>) -> Self
pub fn set_spread_domain(self, input: Option<String>) -> Self
Reserved for future use.
sourcepub fn get_spread_domain(&self) -> &Option<String>
pub fn get_spread_domain(&self) -> &Option<String>
Reserved for future use.
sourcepub fn host_resource_group_arn(self, input: impl Into<String>) -> Self
pub fn host_resource_group_arn(self, input: impl Into<String>) -> Self
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
.
sourcepub fn set_host_resource_group_arn(self, input: Option<String>) -> Self
pub fn set_host_resource_group_arn(self, input: Option<String>) -> Self
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
.
sourcepub fn get_host_resource_group_arn(&self) -> &Option<String>
pub fn get_host_resource_group_arn(&self) -> &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
.
sourcepub fn partition_number(self, input: i32) -> Self
pub fn partition_number(self, input: i32) -> Self
The number of the partition the instance should launch in. Valid only if the placement group strategy is set to partition
.
sourcepub fn set_partition_number(self, input: Option<i32>) -> Self
pub fn set_partition_number(self, input: Option<i32>) -> Self
The number of the partition the instance should launch in. Valid only if the placement group strategy is set to partition
.
sourcepub fn get_partition_number(&self) -> &Option<i32>
pub fn get_partition_number(&self) -> &Option<i32>
The number of the partition the instance should launch in. Valid only if the placement group strategy is set to partition
.
sourcepub fn group_id(self, input: impl Into<String>) -> Self
pub fn group_id(self, input: impl Into<String>) -> Self
The Group Id of a placement group. You must specify the Placement Group Group Id to launch an instance in a shared placement group.
sourcepub fn set_group_id(self, input: Option<String>) -> Self
pub fn set_group_id(self, input: Option<String>) -> Self
The Group Id of a placement group. You must specify the Placement Group Group Id to launch an instance in a shared placement group.
sourcepub fn get_group_id(&self) -> &Option<String>
pub fn get_group_id(&self) -> &Option<String>
The Group Id of a placement group. You must specify the Placement Group Group Id to launch an instance in a shared placement group.
sourcepub fn build(self) -> LaunchTemplatePlacementRequest
pub fn build(self) -> LaunchTemplatePlacementRequest
Consumes the builder and constructs a LaunchTemplatePlacementRequest
.
Trait Implementations§
source§impl Clone for LaunchTemplatePlacementRequestBuilder
impl Clone for LaunchTemplatePlacementRequestBuilder
source§fn clone(&self) -> LaunchTemplatePlacementRequestBuilder
fn clone(&self) -> LaunchTemplatePlacementRequestBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for LaunchTemplatePlacementRequestBuilder
impl Default for LaunchTemplatePlacementRequestBuilder
source§fn default() -> LaunchTemplatePlacementRequestBuilder
fn default() -> LaunchTemplatePlacementRequestBuilder
source§impl PartialEq<LaunchTemplatePlacementRequestBuilder> for LaunchTemplatePlacementRequestBuilder
impl PartialEq<LaunchTemplatePlacementRequestBuilder> for LaunchTemplatePlacementRequestBuilder
source§fn eq(&self, other: &LaunchTemplatePlacementRequestBuilder) -> bool
fn eq(&self, other: &LaunchTemplatePlacementRequestBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.