Struct aws_sdk_rds::operation::modify_certificates::builders::ModifyCertificatesInputBuilder
source · #[non_exhaustive]pub struct ModifyCertificatesInputBuilder { /* private fields */ }Expand description
A builder for ModifyCertificatesInput.
Implementations§
source§impl ModifyCertificatesInputBuilder
impl ModifyCertificatesInputBuilder
sourcepub fn certificate_identifier(self, input: impl Into<String>) -> Self
pub fn certificate_identifier(self, input: impl Into<String>) -> Self
The new default certificate identifier to override the current one with.
To determine the valid values, use the describe-certificates CLI command or the DescribeCertificates API operation.
sourcepub fn set_certificate_identifier(self, input: Option<String>) -> Self
pub fn set_certificate_identifier(self, input: Option<String>) -> Self
The new default certificate identifier to override the current one with.
To determine the valid values, use the describe-certificates CLI command or the DescribeCertificates API operation.
sourcepub fn get_certificate_identifier(&self) -> &Option<String>
pub fn get_certificate_identifier(&self) -> &Option<String>
The new default certificate identifier to override the current one with.
To determine the valid values, use the describe-certificates CLI command or the DescribeCertificates API operation.
sourcepub fn remove_customer_override(self, input: bool) -> Self
pub fn remove_customer_override(self, input: bool) -> Self
Specifies whether to remove the override for the default certificate. If the override is removed, the default certificate is the system default.
sourcepub fn set_remove_customer_override(self, input: Option<bool>) -> Self
pub fn set_remove_customer_override(self, input: Option<bool>) -> Self
Specifies whether to remove the override for the default certificate. If the override is removed, the default certificate is the system default.
sourcepub fn get_remove_customer_override(&self) -> &Option<bool>
pub fn get_remove_customer_override(&self) -> &Option<bool>
Specifies whether to remove the override for the default certificate. If the override is removed, the default certificate is the system default.
sourcepub fn build(self) -> Result<ModifyCertificatesInput, BuildError>
pub fn build(self) -> Result<ModifyCertificatesInput, BuildError>
Consumes the builder and constructs a ModifyCertificatesInput.
source§impl ModifyCertificatesInputBuilder
impl ModifyCertificatesInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ModifyCertificatesOutput, SdkError<ModifyCertificatesError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ModifyCertificatesOutput, SdkError<ModifyCertificatesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ModifyCertificatesInputBuilder
impl Clone for ModifyCertificatesInputBuilder
source§fn clone(&self) -> ModifyCertificatesInputBuilder
fn clone(&self) -> ModifyCertificatesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ModifyCertificatesInputBuilder
impl Default for ModifyCertificatesInputBuilder
source§fn default() -> ModifyCertificatesInputBuilder
fn default() -> ModifyCertificatesInputBuilder
source§impl PartialEq for ModifyCertificatesInputBuilder
impl PartialEq for ModifyCertificatesInputBuilder
source§fn eq(&self, other: &ModifyCertificatesInputBuilder) -> bool
fn eq(&self, other: &ModifyCertificatesInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ModifyCertificatesInputBuilder
Auto Trait Implementations§
impl Freeze for ModifyCertificatesInputBuilder
impl RefUnwindSafe for ModifyCertificatesInputBuilder
impl Send for ModifyCertificatesInputBuilder
impl Sync for ModifyCertificatesInputBuilder
impl Unpin for ModifyCertificatesInputBuilder
impl UnwindSafe for ModifyCertificatesInputBuilder
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