#[non_exhaustive]pub struct RejectCertificateTransferInput {
pub certificate_id: Option<String>,
pub reject_reason: Option<String>,
}Expand description
The input for the RejectCertificateTransfer 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_id: Option<String>The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)
reject_reason: Option<String>The reason the certificate transfer was rejected.
Implementations§
source§impl RejectCertificateTransferInput
impl RejectCertificateTransferInput
sourcepub fn certificate_id(&self) -> Option<&str>
pub fn certificate_id(&self) -> Option<&str>
The ID of the certificate. (The last part of the certificate ARN contains the certificate ID.)
sourcepub fn reject_reason(&self) -> Option<&str>
pub fn reject_reason(&self) -> Option<&str>
The reason the certificate transfer was rejected.
source§impl RejectCertificateTransferInput
impl RejectCertificateTransferInput
sourcepub fn builder() -> RejectCertificateTransferInputBuilder
pub fn builder() -> RejectCertificateTransferInputBuilder
Creates a new builder-style object to manufacture RejectCertificateTransferInput.
Trait Implementations§
source§impl Clone for RejectCertificateTransferInput
impl Clone for RejectCertificateTransferInput
source§fn clone(&self) -> RejectCertificateTransferInput
fn clone(&self) -> RejectCertificateTransferInput
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 RejectCertificateTransferInput
impl PartialEq for RejectCertificateTransferInput
source§fn eq(&self, other: &RejectCertificateTransferInput) -> bool
fn eq(&self, other: &RejectCertificateTransferInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RejectCertificateTransferInput
Auto Trait Implementations§
impl Freeze for RejectCertificateTransferInput
impl RefUnwindSafe for RejectCertificateTransferInput
impl Send for RejectCertificateTransferInput
impl Sync for RejectCertificateTransferInput
impl Unpin for RejectCertificateTransferInput
impl UnwindSafe for RejectCertificateTransferInput
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.