Struct aws_sdk_apigateway::operation::update_client_certificate::builders::UpdateClientCertificateOutputBuilder
source · #[non_exhaustive]pub struct UpdateClientCertificateOutputBuilder { /* private fields */ }Expand description
A builder for UpdateClientCertificateOutput.
Implementations§
source§impl UpdateClientCertificateOutputBuilder
impl UpdateClientCertificateOutputBuilder
sourcepub fn client_certificate_id(self, input: impl Into<String>) -> Self
pub fn client_certificate_id(self, input: impl Into<String>) -> Self
The identifier of the client certificate.
sourcepub fn set_client_certificate_id(self, input: Option<String>) -> Self
pub fn set_client_certificate_id(self, input: Option<String>) -> Self
The identifier of the client certificate.
sourcepub fn get_client_certificate_id(&self) -> &Option<String>
pub fn get_client_certificate_id(&self) -> &Option<String>
The identifier of the client certificate.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the client certificate.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the client certificate.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the client certificate.
sourcepub fn pem_encoded_certificate(self, input: impl Into<String>) -> Self
pub fn pem_encoded_certificate(self, input: impl Into<String>) -> Self
The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .
sourcepub fn set_pem_encoded_certificate(self, input: Option<String>) -> Self
pub fn set_pem_encoded_certificate(self, input: Option<String>) -> Self
The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .
sourcepub fn get_pem_encoded_certificate(&self) -> &Option<String>
pub fn get_pem_encoded_certificate(&self) -> &Option<String>
The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .
sourcepub fn created_date(self, input: DateTime) -> Self
pub fn created_date(self, input: DateTime) -> Self
The timestamp when the client certificate was created.
sourcepub fn set_created_date(self, input: Option<DateTime>) -> Self
pub fn set_created_date(self, input: Option<DateTime>) -> Self
The timestamp when the client certificate was created.
sourcepub fn get_created_date(&self) -> &Option<DateTime>
pub fn get_created_date(&self) -> &Option<DateTime>
The timestamp when the client certificate was created.
sourcepub fn expiration_date(self, input: DateTime) -> Self
pub fn expiration_date(self, input: DateTime) -> Self
The timestamp when the client certificate will expire.
sourcepub fn set_expiration_date(self, input: Option<DateTime>) -> Self
pub fn set_expiration_date(self, input: Option<DateTime>) -> Self
The timestamp when the client certificate will expire.
sourcepub fn get_expiration_date(&self) -> &Option<DateTime>
pub fn get_expiration_date(&self) -> &Option<DateTime>
The timestamp when the client certificate will expire.
Adds a key-value pair to tags.
To override the contents of this collection use set_tags.
The collection of tags. Each tag element is associated with a given resource.
The collection of tags. Each tag element is associated with a given resource.
The collection of tags. Each tag element is associated with a given resource.
sourcepub fn build(self) -> UpdateClientCertificateOutput
pub fn build(self) -> UpdateClientCertificateOutput
Consumes the builder and constructs a UpdateClientCertificateOutput.
Trait Implementations§
source§impl Clone for UpdateClientCertificateOutputBuilder
impl Clone for UpdateClientCertificateOutputBuilder
source§fn clone(&self) -> UpdateClientCertificateOutputBuilder
fn clone(&self) -> UpdateClientCertificateOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateClientCertificateOutputBuilder
impl Default for UpdateClientCertificateOutputBuilder
source§fn default() -> UpdateClientCertificateOutputBuilder
fn default() -> UpdateClientCertificateOutputBuilder
source§impl PartialEq for UpdateClientCertificateOutputBuilder
impl PartialEq for UpdateClientCertificateOutputBuilder
source§fn eq(&self, other: &UpdateClientCertificateOutputBuilder) -> bool
fn eq(&self, other: &UpdateClientCertificateOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateClientCertificateOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateClientCertificateOutputBuilder
impl RefUnwindSafe for UpdateClientCertificateOutputBuilder
impl Send for UpdateClientCertificateOutputBuilder
impl Sync for UpdateClientCertificateOutputBuilder
impl Unpin for UpdateClientCertificateOutputBuilder
impl UnwindSafe for UpdateClientCertificateOutputBuilder
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