#[non_exhaustive]pub struct GetCertificateOutputBuilder { /* private fields */ }
Expand description
A builder for GetCertificateOutput
.
Implementations§
source§impl GetCertificateOutputBuilder
impl GetCertificateOutputBuilder
sourcepub fn certificate(self, input: impl Into<String>) -> Self
pub fn certificate(self, input: impl Into<String>) -> Self
The ACM-issued certificate corresponding to the ARN specified as input.
sourcepub fn set_certificate(self, input: Option<String>) -> Self
pub fn set_certificate(self, input: Option<String>) -> Self
The ACM-issued certificate corresponding to the ARN specified as input.
sourcepub fn get_certificate(&self) -> &Option<String>
pub fn get_certificate(&self) -> &Option<String>
The ACM-issued certificate corresponding to the ARN specified as input.
sourcepub fn certificate_chain(self, input: impl Into<String>) -> Self
pub fn certificate_chain(self, input: impl Into<String>) -> Self
Certificates forming the requested certificate's chain of trust. The chain consists of the certificate of the issuing CA and the intermediate certificates of any other subordinate CAs.
sourcepub fn set_certificate_chain(self, input: Option<String>) -> Self
pub fn set_certificate_chain(self, input: Option<String>) -> Self
Certificates forming the requested certificate's chain of trust. The chain consists of the certificate of the issuing CA and the intermediate certificates of any other subordinate CAs.
sourcepub fn get_certificate_chain(&self) -> &Option<String>
pub fn get_certificate_chain(&self) -> &Option<String>
Certificates forming the requested certificate's chain of trust. The chain consists of the certificate of the issuing CA and the intermediate certificates of any other subordinate CAs.
sourcepub fn build(self) -> GetCertificateOutput
pub fn build(self) -> GetCertificateOutput
Consumes the builder and constructs a GetCertificateOutput
.
Trait Implementations§
source§impl Clone for GetCertificateOutputBuilder
impl Clone for GetCertificateOutputBuilder
source§fn clone(&self) -> GetCertificateOutputBuilder
fn clone(&self) -> GetCertificateOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetCertificateOutputBuilder
impl Debug for GetCertificateOutputBuilder
source§impl Default for GetCertificateOutputBuilder
impl Default for GetCertificateOutputBuilder
source§fn default() -> GetCertificateOutputBuilder
fn default() -> GetCertificateOutputBuilder
impl StructuralPartialEq for GetCertificateOutputBuilder
Auto Trait Implementations§
impl Freeze for GetCertificateOutputBuilder
impl RefUnwindSafe for GetCertificateOutputBuilder
impl Send for GetCertificateOutputBuilder
impl Sync for GetCertificateOutputBuilder
impl Unpin for GetCertificateOutputBuilder
impl UnwindSafe for GetCertificateOutputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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