Struct aws_sdk_ecs::model::Resource
source · [−]#[non_exhaustive]pub struct Resource {
pub name: Option<String>,
pub type: Option<String>,
pub double_value: f64,
pub long_value: i64,
pub integer_value: i32,
pub string_set_value: Option<Vec<String>>,
}
Expand description
Describes the resources available for a container instance.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the resource, such as CPU
, MEMORY
, PORTS
, PORTS_UDP
, or a user-defined resource.
type: Option<String>
The type of the resource. Valid values: INTEGER
, DOUBLE
, LONG
, or STRINGSET
.
double_value: f64
When the doubleValue
type is set, the value of the resource must be a double precision floating-point type.
long_value: i64
When the longValue
type is set, the value of the resource must be an extended precision floating-point type.
integer_value: i32
When the integerValue
type is set, the value of the resource must be an integer.
string_set_value: Option<Vec<String>>
When the stringSetValue
type is set, the value of the resource must be a string type.
Implementations
sourceimpl Resource
impl Resource
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the resource, such as CPU
, MEMORY
, PORTS
, PORTS_UDP
, or a user-defined resource.
sourcepub fn type(&self) -> Option<&str>
pub fn type(&self) -> Option<&str>
The type of the resource. Valid values: INTEGER
, DOUBLE
, LONG
, or STRINGSET
.
sourcepub fn double_value(&self) -> f64
pub fn double_value(&self) -> f64
When the doubleValue
type is set, the value of the resource must be a double precision floating-point type.
sourcepub fn long_value(&self) -> i64
pub fn long_value(&self) -> i64
When the longValue
type is set, the value of the resource must be an extended precision floating-point type.
sourcepub fn integer_value(&self) -> i32
pub fn integer_value(&self) -> i32
When the integerValue
type is set, the value of the resource must be an integer.
Trait Implementations
impl StructuralPartialEq for Resource
Auto Trait Implementations
impl RefUnwindSafe for Resource
impl Send for Resource
impl Sync for Resource
impl Unpin for Resource
impl UnwindSafe for Resource
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