#[non_exhaustive]pub struct IamRegistrationResponse { /* private fields */ }Expand description
Information about registering an Identity and Access Management (IAM) resource so Amazon Web Services IoT FleetWise edge agent software can transfer your vehicle data to Amazon Timestream.
Implementations§
source§impl IamRegistrationResponse
impl IamRegistrationResponse
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM role to register.
sourcepub fn registration_status(&self) -> Option<&RegistrationStatus>
pub fn registration_status(&self) -> Option<&RegistrationStatus>
The status of registering your IAM resource. The status can be one of REGISTRATION_SUCCESS, REGISTRATION_PENDING, REGISTRATION_FAILURE.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
A message associated with a registration error.
source§impl IamRegistrationResponse
impl IamRegistrationResponse
sourcepub fn builder() -> IamRegistrationResponseBuilder
pub fn builder() -> IamRegistrationResponseBuilder
Creates a new builder-style object to manufacture IamRegistrationResponse.
Trait Implementations§
source§impl Clone for IamRegistrationResponse
impl Clone for IamRegistrationResponse
source§fn clone(&self) -> IamRegistrationResponse
fn clone(&self) -> IamRegistrationResponse
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 Debug for IamRegistrationResponse
impl Debug for IamRegistrationResponse
source§impl PartialEq<IamRegistrationResponse> for IamRegistrationResponse
impl PartialEq<IamRegistrationResponse> for IamRegistrationResponse
source§fn eq(&self, other: &IamRegistrationResponse) -> bool
fn eq(&self, other: &IamRegistrationResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for IamRegistrationResponse
Auto Trait Implementations§
impl RefUnwindSafe for IamRegistrationResponse
impl Send for IamRegistrationResponse
impl Sync for IamRegistrationResponse
impl Unpin for IamRegistrationResponse
impl UnwindSafe for IamRegistrationResponse
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