Struct aws_sdk_iotanalytics::types::ResourceConfiguration
source · #[non_exhaustive]pub struct ResourceConfiguration { /* private fields */ }
Expand description
The configuration of the resource used to execute the containerAction
.
Implementations§
source§impl ResourceConfiguration
impl ResourceConfiguration
sourcepub fn compute_type(&self) -> Option<&ComputeType>
pub fn compute_type(&self) -> Option<&ComputeType>
The type of the compute resource used to execute the containerAction
. Possible values are: ACU_1
(vCPU=4, memory=16 GiB) or ACU_2
(vCPU=8, memory=32 GiB).
sourcepub fn volume_size_in_gb(&self) -> i32
pub fn volume_size_in_gb(&self) -> i32
The size, in GB, of the persistent storage available to the resource instance used to execute the containerAction
(min: 1, max: 50).
source§impl ResourceConfiguration
impl ResourceConfiguration
sourcepub fn builder() -> ResourceConfigurationBuilder
pub fn builder() -> ResourceConfigurationBuilder
Creates a new builder-style object to manufacture ResourceConfiguration
.
Trait Implementations§
source§impl Clone for ResourceConfiguration
impl Clone for ResourceConfiguration
source§fn clone(&self) -> ResourceConfiguration
fn clone(&self) -> ResourceConfiguration
Returns a copy 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 ResourceConfiguration
impl Debug for ResourceConfiguration
source§impl PartialEq<ResourceConfiguration> for ResourceConfiguration
impl PartialEq<ResourceConfiguration> for ResourceConfiguration
source§fn eq(&self, other: &ResourceConfiguration) -> bool
fn eq(&self, other: &ResourceConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResourceConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for ResourceConfiguration
impl Send for ResourceConfiguration
impl Sync for ResourceConfiguration
impl Unpin for ResourceConfiguration
impl UnwindSafe for ResourceConfiguration
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