Struct aws_sdk_ec2::model::RequestSpotLaunchSpecification
source · [−]#[non_exhaustive]pub struct RequestSpotLaunchSpecification { /* private fields */ }
Expand description
Describes the launch specification for an instance.
Implementations
sourceimpl RequestSpotLaunchSpecification
impl RequestSpotLaunchSpecification
sourcepub fn security_group_ids(&self) -> Option<&[String]>
pub fn security_group_ids(&self) -> Option<&[String]>
One or more security group IDs.
sourcepub fn security_groups(&self) -> Option<&[String]>
pub fn security_groups(&self) -> Option<&[String]>
One or more security groups. When requesting instances in a VPC, you must specify the IDs of the security groups. When requesting instances in EC2-Classic, you can specify the names or the IDs of the security groups.
sourcepub fn addressing_type(&self) -> Option<&str>
pub fn addressing_type(&self) -> Option<&str>
Deprecated.
sourcepub fn block_device_mappings(&self) -> Option<&[BlockDeviceMapping]>
pub fn block_device_mappings(&self) -> Option<&[BlockDeviceMapping]>
One or more block device mapping entries. You can't specify both a snapshot ID and an encryption value. This is because only blank volumes can be encrypted on creation. If a snapshot is the basis for a volume, it is not blank and its encryption status is used for the volume encryption status.
sourcepub fn ebs_optimized(&self) -> Option<bool>
pub fn ebs_optimized(&self) -> Option<bool>
Indicates whether the instance is optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn't available with all instance types. Additional usage charges apply when using an EBS Optimized instance.
Default: false
sourcepub fn iam_instance_profile(&self) -> Option<&IamInstanceProfileSpecification>
pub fn iam_instance_profile(&self) -> Option<&IamInstanceProfileSpecification>
The IAM instance profile.
sourcepub fn instance_type(&self) -> Option<&InstanceType>
pub fn instance_type(&self) -> Option<&InstanceType>
The instance type. Only one instance type can be specified.
sourcepub fn monitoring(&self) -> Option<&RunInstancesMonitoringEnabled>
pub fn monitoring(&self) -> Option<&RunInstancesMonitoringEnabled>
Indicates whether basic or detailed monitoring is enabled for the instance.
Default: Disabled
sourcepub fn network_interfaces(
&self
) -> Option<&[InstanceNetworkInterfaceSpecification]>
pub fn network_interfaces(
&self
) -> Option<&[InstanceNetworkInterfaceSpecification]>
One or more network interfaces. If you specify a network interface, you must specify subnet IDs and security group IDs using the network interface.
sourcepub fn placement(&self) -> Option<&SpotPlacement>
pub fn placement(&self) -> Option<&SpotPlacement>
The placement information for the instance.
sourcepub fn ramdisk_id(&self) -> Option<&str>
pub fn ramdisk_id(&self) -> Option<&str>
The ID of the RAM disk.
sourceimpl RequestSpotLaunchSpecification
impl RequestSpotLaunchSpecification
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RequestSpotLaunchSpecification
.
Trait Implementations
sourceimpl Clone for RequestSpotLaunchSpecification
impl Clone for RequestSpotLaunchSpecification
sourcefn clone(&self) -> RequestSpotLaunchSpecification
fn clone(&self) -> RequestSpotLaunchSpecification
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<RequestSpotLaunchSpecification> for RequestSpotLaunchSpecification
impl PartialEq<RequestSpotLaunchSpecification> for RequestSpotLaunchSpecification
sourcefn eq(&self, other: &RequestSpotLaunchSpecification) -> bool
fn eq(&self, other: &RequestSpotLaunchSpecification) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RequestSpotLaunchSpecification) -> bool
fn ne(&self, other: &RequestSpotLaunchSpecification) -> bool
This method tests for !=
.
impl StructuralPartialEq for RequestSpotLaunchSpecification
Auto Trait Implementations
impl RefUnwindSafe for RequestSpotLaunchSpecification
impl Send for RequestSpotLaunchSpecification
impl Sync for RequestSpotLaunchSpecification
impl Unpin for RequestSpotLaunchSpecification
impl UnwindSafe for RequestSpotLaunchSpecification
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more