Struct aws_sdk_databasemigration::operation::describe_certificates::builders::DescribeCertificatesOutputBuilder
source · #[non_exhaustive]pub struct DescribeCertificatesOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeCertificatesOutput
.
Implementations§
source§impl DescribeCertificatesOutputBuilder
impl DescribeCertificatesOutputBuilder
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The pagination token.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
The pagination token.
sourcepub fn certificates(self, input: Certificate) -> Self
pub fn certificates(self, input: Certificate) -> Self
Appends an item to certificates
.
To override the contents of this collection use set_certificates
.
The Secure Sockets Layer (SSL) certificates associated with the replication instance.
sourcepub fn set_certificates(self, input: Option<Vec<Certificate>>) -> Self
pub fn set_certificates(self, input: Option<Vec<Certificate>>) -> Self
The Secure Sockets Layer (SSL) certificates associated with the replication instance.
sourcepub fn get_certificates(&self) -> &Option<Vec<Certificate>>
pub fn get_certificates(&self) -> &Option<Vec<Certificate>>
The Secure Sockets Layer (SSL) certificates associated with the replication instance.
sourcepub fn build(self) -> DescribeCertificatesOutput
pub fn build(self) -> DescribeCertificatesOutput
Consumes the builder and constructs a DescribeCertificatesOutput
.
Trait Implementations§
source§impl Clone for DescribeCertificatesOutputBuilder
impl Clone for DescribeCertificatesOutputBuilder
source§fn clone(&self) -> DescribeCertificatesOutputBuilder
fn clone(&self) -> DescribeCertificatesOutputBuilder
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 Default for DescribeCertificatesOutputBuilder
impl Default for DescribeCertificatesOutputBuilder
source§fn default() -> DescribeCertificatesOutputBuilder
fn default() -> DescribeCertificatesOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeCertificatesOutputBuilder
impl PartialEq for DescribeCertificatesOutputBuilder
source§fn eq(&self, other: &DescribeCertificatesOutputBuilder) -> bool
fn eq(&self, other: &DescribeCertificatesOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeCertificatesOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeCertificatesOutputBuilder
impl RefUnwindSafe for DescribeCertificatesOutputBuilder
impl Send for DescribeCertificatesOutputBuilder
impl Sync for DescribeCertificatesOutputBuilder
impl Unpin for DescribeCertificatesOutputBuilder
impl UnwindSafe for DescribeCertificatesOutputBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.