#[non_exhaustive]pub struct CreateCertificateFromCsrInput {
pub certificate_signing_request: Option<String>,
pub set_as_active: Option<bool>,
}Expand description
The input for the CreateCertificateFromCsr operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.certificate_signing_request: Option<String>The certificate signing request (CSR).
set_as_active: Option<bool>Specifies whether the certificate is active.
Implementations§
source§impl CreateCertificateFromCsrInput
impl CreateCertificateFromCsrInput
sourcepub fn certificate_signing_request(&self) -> Option<&str>
pub fn certificate_signing_request(&self) -> Option<&str>
The certificate signing request (CSR).
sourcepub fn set_as_active(&self) -> Option<bool>
pub fn set_as_active(&self) -> Option<bool>
Specifies whether the certificate is active.
source§impl CreateCertificateFromCsrInput
impl CreateCertificateFromCsrInput
sourcepub fn builder() -> CreateCertificateFromCsrInputBuilder
pub fn builder() -> CreateCertificateFromCsrInputBuilder
Creates a new builder-style object to manufacture CreateCertificateFromCsrInput.
Trait Implementations§
source§impl Clone for CreateCertificateFromCsrInput
impl Clone for CreateCertificateFromCsrInput
source§fn clone(&self) -> CreateCertificateFromCsrInput
fn clone(&self) -> CreateCertificateFromCsrInput
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 PartialEq for CreateCertificateFromCsrInput
impl PartialEq for CreateCertificateFromCsrInput
source§fn eq(&self, other: &CreateCertificateFromCsrInput) -> bool
fn eq(&self, other: &CreateCertificateFromCsrInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateCertificateFromCsrInput
Auto Trait Implementations§
impl Freeze for CreateCertificateFromCsrInput
impl RefUnwindSafe for CreateCertificateFromCsrInput
impl Send for CreateCertificateFromCsrInput
impl Sync for CreateCertificateFromCsrInput
impl Unpin for CreateCertificateFromCsrInput
impl UnwindSafe for CreateCertificateFromCsrInput
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>
Creates a shared type from an unshared type.