#[non_exhaustive]pub struct LayerVersionContentOutputBuilder { /* private fields */ }
Expand description
A builder for LayerVersionContentOutput
.
Implementations§
source§impl LayerVersionContentOutputBuilder
impl LayerVersionContentOutputBuilder
sourcepub fn location(self, input: impl Into<String>) -> Self
pub fn location(self, input: impl Into<String>) -> Self
A link to the layer archive in Amazon S3 that is valid for 10 minutes.
sourcepub fn set_location(self, input: Option<String>) -> Self
pub fn set_location(self, input: Option<String>) -> Self
A link to the layer archive in Amazon S3 that is valid for 10 minutes.
sourcepub fn get_location(&self) -> &Option<String>
pub fn get_location(&self) -> &Option<String>
A link to the layer archive in Amazon S3 that is valid for 10 minutes.
sourcepub fn code_sha256(self, input: impl Into<String>) -> Self
pub fn code_sha256(self, input: impl Into<String>) -> Self
The SHA-256 hash of the layer archive.
sourcepub fn set_code_sha256(self, input: Option<String>) -> Self
pub fn set_code_sha256(self, input: Option<String>) -> Self
The SHA-256 hash of the layer archive.
sourcepub fn get_code_sha256(&self) -> &Option<String>
pub fn get_code_sha256(&self) -> &Option<String>
The SHA-256 hash of the layer archive.
sourcepub fn set_code_size(self, input: Option<i64>) -> Self
pub fn set_code_size(self, input: Option<i64>) -> Self
The size of the layer archive in bytes.
sourcepub fn get_code_size(&self) -> &Option<i64>
pub fn get_code_size(&self) -> &Option<i64>
The size of the layer archive in bytes.
sourcepub fn signing_profile_version_arn(self, input: impl Into<String>) -> Self
pub fn signing_profile_version_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) for a signing profile version.
sourcepub fn set_signing_profile_version_arn(self, input: Option<String>) -> Self
pub fn set_signing_profile_version_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) for a signing profile version.
sourcepub fn get_signing_profile_version_arn(&self) -> &Option<String>
pub fn get_signing_profile_version_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) for a signing profile version.
sourcepub fn signing_job_arn(self, input: impl Into<String>) -> Self
pub fn signing_job_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of a signing job.
sourcepub fn set_signing_job_arn(self, input: Option<String>) -> Self
pub fn set_signing_job_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of a signing job.
sourcepub fn get_signing_job_arn(&self) -> &Option<String>
pub fn get_signing_job_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of a signing job.
sourcepub fn build(self) -> LayerVersionContentOutput
pub fn build(self) -> LayerVersionContentOutput
Consumes the builder and constructs a LayerVersionContentOutput
.
Trait Implementations§
source§impl Clone for LayerVersionContentOutputBuilder
impl Clone for LayerVersionContentOutputBuilder
source§fn clone(&self) -> LayerVersionContentOutputBuilder
fn clone(&self) -> LayerVersionContentOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for LayerVersionContentOutputBuilder
impl Default for LayerVersionContentOutputBuilder
source§fn default() -> LayerVersionContentOutputBuilder
fn default() -> LayerVersionContentOutputBuilder
source§impl PartialEq for LayerVersionContentOutputBuilder
impl PartialEq for LayerVersionContentOutputBuilder
source§fn eq(&self, other: &LayerVersionContentOutputBuilder) -> bool
fn eq(&self, other: &LayerVersionContentOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LayerVersionContentOutputBuilder
Auto Trait Implementations§
impl Freeze for LayerVersionContentOutputBuilder
impl RefUnwindSafe for LayerVersionContentOutputBuilder
impl Send for LayerVersionContentOutputBuilder
impl Sync for LayerVersionContentOutputBuilder
impl Unpin for LayerVersionContentOutputBuilder
impl UnwindSafe for LayerVersionContentOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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