Struct aws_sdk_batch::operation::create_compute_environment::builders::CreateComputeEnvironmentOutputBuilder
source · #[non_exhaustive]pub struct CreateComputeEnvironmentOutputBuilder { /* private fields */ }
Expand description
A builder for CreateComputeEnvironmentOutput
.
Implementations§
source§impl CreateComputeEnvironmentOutputBuilder
impl CreateComputeEnvironmentOutputBuilder
sourcepub fn compute_environment_name(self, input: impl Into<String>) -> Self
pub fn compute_environment_name(self, input: impl Into<String>) -> Self
The name of the compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).
sourcepub fn set_compute_environment_name(self, input: Option<String>) -> Self
pub fn set_compute_environment_name(self, input: Option<String>) -> Self
The name of the compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).
sourcepub fn get_compute_environment_name(&self) -> &Option<String>
pub fn get_compute_environment_name(&self) -> &Option<String>
The name of the compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).
sourcepub fn compute_environment_arn(self, input: impl Into<String>) -> Self
pub fn compute_environment_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the compute environment.
sourcepub fn set_compute_environment_arn(self, input: Option<String>) -> Self
pub fn set_compute_environment_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the compute environment.
sourcepub fn get_compute_environment_arn(&self) -> &Option<String>
pub fn get_compute_environment_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the compute environment.
sourcepub fn build(self) -> CreateComputeEnvironmentOutput
pub fn build(self) -> CreateComputeEnvironmentOutput
Consumes the builder and constructs a CreateComputeEnvironmentOutput
.
Trait Implementations§
source§impl Clone for CreateComputeEnvironmentOutputBuilder
impl Clone for CreateComputeEnvironmentOutputBuilder
source§fn clone(&self) -> CreateComputeEnvironmentOutputBuilder
fn clone(&self) -> CreateComputeEnvironmentOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateComputeEnvironmentOutputBuilder
impl Default for CreateComputeEnvironmentOutputBuilder
source§fn default() -> CreateComputeEnvironmentOutputBuilder
fn default() -> CreateComputeEnvironmentOutputBuilder
source§impl PartialEq for CreateComputeEnvironmentOutputBuilder
impl PartialEq for CreateComputeEnvironmentOutputBuilder
source§fn eq(&self, other: &CreateComputeEnvironmentOutputBuilder) -> bool
fn eq(&self, other: &CreateComputeEnvironmentOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateComputeEnvironmentOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateComputeEnvironmentOutputBuilder
impl RefUnwindSafe for CreateComputeEnvironmentOutputBuilder
impl Send for CreateComputeEnvironmentOutputBuilder
impl Sync for CreateComputeEnvironmentOutputBuilder
impl Unpin for CreateComputeEnvironmentOutputBuilder
impl UnwindSafe for CreateComputeEnvironmentOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more