Struct aws_sdk_pipes::types::builders::EcsEnvironmentFileBuilder
source · #[non_exhaustive]pub struct EcsEnvironmentFileBuilder { /* private fields */ }
Expand description
A builder for EcsEnvironmentFile
.
Implementations§
source§impl EcsEnvironmentFileBuilder
impl EcsEnvironmentFileBuilder
sourcepub fn type(self, input: EcsEnvironmentFileType) -> Self
pub fn type(self, input: EcsEnvironmentFileType) -> Self
The file type to use. The only supported value is s3
.
sourcepub fn set_type(self, input: Option<EcsEnvironmentFileType>) -> Self
pub fn set_type(self, input: Option<EcsEnvironmentFileType>) -> Self
The file type to use. The only supported value is s3
.
sourcepub fn value(self, input: impl Into<String>) -> Self
pub fn value(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the Amazon S3 object containing the environment variable file.
sourcepub fn set_value(self, input: Option<String>) -> Self
pub fn set_value(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the Amazon S3 object containing the environment variable file.
sourcepub fn build(self) -> EcsEnvironmentFile
pub fn build(self) -> EcsEnvironmentFile
Consumes the builder and constructs a EcsEnvironmentFile
.
Trait Implementations§
source§impl Clone for EcsEnvironmentFileBuilder
impl Clone for EcsEnvironmentFileBuilder
source§fn clone(&self) -> EcsEnvironmentFileBuilder
fn clone(&self) -> EcsEnvironmentFileBuilder
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 EcsEnvironmentFileBuilder
impl Debug for EcsEnvironmentFileBuilder
source§impl Default for EcsEnvironmentFileBuilder
impl Default for EcsEnvironmentFileBuilder
source§fn default() -> EcsEnvironmentFileBuilder
fn default() -> EcsEnvironmentFileBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<EcsEnvironmentFileBuilder> for EcsEnvironmentFileBuilder
impl PartialEq<EcsEnvironmentFileBuilder> for EcsEnvironmentFileBuilder
source§fn eq(&self, other: &EcsEnvironmentFileBuilder) -> bool
fn eq(&self, other: &EcsEnvironmentFileBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EcsEnvironmentFileBuilder
Auto Trait Implementations§
impl RefUnwindSafe for EcsEnvironmentFileBuilder
impl Send for EcsEnvironmentFileBuilder
impl Sync for EcsEnvironmentFileBuilder
impl Unpin for EcsEnvironmentFileBuilder
impl UnwindSafe for EcsEnvironmentFileBuilder
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