#[non_exhaustive]pub struct FailedKeyRegistrationEntry {
pub key_arn: Option<String>,
pub message: String,
pub status_code: i32,
pub sender_fault: bool,
}Expand description
An entry that appears when a KeyRegistration update to Amazon QuickSight fails.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.key_arn: Option<String>The ARN of the KMS key that failed to update.
message: StringA message that provides information about why a FailedKeyRegistrationEntry error occurred.
status_code: i32The HTTP status of a FailedKeyRegistrationEntry error.
sender_fault: boolA boolean that indicates whether a FailedKeyRegistrationEntry resulted from user error. If the value of this property is True, the error was caused by user error. If the value of this property is False, the error occurred on the backend. If your job continues fail and with a False SenderFault value, contact Amazon Web Services Support.
Implementations§
source§impl FailedKeyRegistrationEntry
impl FailedKeyRegistrationEntry
sourcepub fn message(&self) -> &str
pub fn message(&self) -> &str
A message that provides information about why a FailedKeyRegistrationEntry error occurred.
sourcepub fn status_code(&self) -> i32
pub fn status_code(&self) -> i32
The HTTP status of a FailedKeyRegistrationEntry error.
sourcepub fn sender_fault(&self) -> bool
pub fn sender_fault(&self) -> bool
A boolean that indicates whether a FailedKeyRegistrationEntry resulted from user error. If the value of this property is True, the error was caused by user error. If the value of this property is False, the error occurred on the backend. If your job continues fail and with a False SenderFault value, contact Amazon Web Services Support.
source§impl FailedKeyRegistrationEntry
impl FailedKeyRegistrationEntry
sourcepub fn builder() -> FailedKeyRegistrationEntryBuilder
pub fn builder() -> FailedKeyRegistrationEntryBuilder
Creates a new builder-style object to manufacture FailedKeyRegistrationEntry.
Trait Implementations§
source§impl Clone for FailedKeyRegistrationEntry
impl Clone for FailedKeyRegistrationEntry
source§fn clone(&self) -> FailedKeyRegistrationEntry
fn clone(&self) -> FailedKeyRegistrationEntry
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for FailedKeyRegistrationEntry
impl Debug for FailedKeyRegistrationEntry
source§impl PartialEq for FailedKeyRegistrationEntry
impl PartialEq for FailedKeyRegistrationEntry
source§fn eq(&self, other: &FailedKeyRegistrationEntry) -> bool
fn eq(&self, other: &FailedKeyRegistrationEntry) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FailedKeyRegistrationEntry
Auto Trait Implementations§
impl Freeze for FailedKeyRegistrationEntry
impl RefUnwindSafe for FailedKeyRegistrationEntry
impl Send for FailedKeyRegistrationEntry
impl Sync for FailedKeyRegistrationEntry
impl Unpin for FailedKeyRegistrationEntry
impl UnwindSafe for FailedKeyRegistrationEntry
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