Struct aws_sdk_batch::types::builders::ShareAttributesBuilder
source · #[non_exhaustive]pub struct ShareAttributesBuilder { /* private fields */ }
Expand description
A builder for ShareAttributes
.
Implementations§
A fair share identifier or fair share identifier prefix. If the string ends with an asterisk (*), this entry specifies the weight factor to use for fair share identifiers that start with that prefix. The list of fair share identifiers in a fair share policy can't overlap. For example, you can't have one that specifies a shareIdentifier
of UserA*
and another that specifies a shareIdentifier
of UserA-1
.
There can be no more than 500 fair share identifiers active in a job queue.
The string is limited to 255 alphanumeric characters, and can be followed by an asterisk (*).
A fair share identifier or fair share identifier prefix. If the string ends with an asterisk (*), this entry specifies the weight factor to use for fair share identifiers that start with that prefix. The list of fair share identifiers in a fair share policy can't overlap. For example, you can't have one that specifies a shareIdentifier
of UserA*
and another that specifies a shareIdentifier
of UserA-1
.
There can be no more than 500 fair share identifiers active in a job queue.
The string is limited to 255 alphanumeric characters, and can be followed by an asterisk (*).
A fair share identifier or fair share identifier prefix. If the string ends with an asterisk (*), this entry specifies the weight factor to use for fair share identifiers that start with that prefix. The list of fair share identifiers in a fair share policy can't overlap. For example, you can't have one that specifies a shareIdentifier
of UserA*
and another that specifies a shareIdentifier
of UserA-1
.
There can be no more than 500 fair share identifiers active in a job queue.
The string is limited to 255 alphanumeric characters, and can be followed by an asterisk (*).
sourcepub fn weight_factor(self, input: f32) -> Self
pub fn weight_factor(self, input: f32) -> Self
The weight factor for the fair share identifier. The default value is 1.0. A lower value has a higher priority for compute resources. For example, jobs that use a share identifier with a weight factor of 0.125 (1/8) get 8 times the compute resources of jobs that use a share identifier with a weight factor of 1.
The smallest supported value is 0.0001, and the largest supported value is 999.9999.
sourcepub fn set_weight_factor(self, input: Option<f32>) -> Self
pub fn set_weight_factor(self, input: Option<f32>) -> Self
The weight factor for the fair share identifier. The default value is 1.0. A lower value has a higher priority for compute resources. For example, jobs that use a share identifier with a weight factor of 0.125 (1/8) get 8 times the compute resources of jobs that use a share identifier with a weight factor of 1.
The smallest supported value is 0.0001, and the largest supported value is 999.9999.
sourcepub fn get_weight_factor(&self) -> &Option<f32>
pub fn get_weight_factor(&self) -> &Option<f32>
The weight factor for the fair share identifier. The default value is 1.0. A lower value has a higher priority for compute resources. For example, jobs that use a share identifier with a weight factor of 0.125 (1/8) get 8 times the compute resources of jobs that use a share identifier with a weight factor of 1.
The smallest supported value is 0.0001, and the largest supported value is 999.9999.
sourcepub fn build(self) -> ShareAttributes
pub fn build(self) -> ShareAttributes
Consumes the builder and constructs a ShareAttributes
.
Trait Implementations§
source§fn clone(&self) -> ShareAttributesBuilder
fn clone(&self) -> ShareAttributesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§fn default() -> ShareAttributesBuilder
fn default() -> ShareAttributesBuilder
source§fn eq(&self, other: &ShareAttributesBuilder) -> bool
fn eq(&self, other: &ShareAttributesBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.