pub struct Arn {
pub partition: String,
pub service: String,
pub region: String,
pub account_id: String,
pub resource: String,
}Expand description
An Amazon Resource Name.
Format: arn:partition:service:region:account-id:resource
Fields§
§partition: String§service: String§region: String§account_id: String§resource: StringImplementations§
Trait Implementations§
impl Eq for Arn
impl StructuralPartialEq for Arn
Auto Trait Implementations§
impl Freeze for Arn
impl RefUnwindSafe for Arn
impl Send for Arn
impl Sync for Arn
impl Unpin for Arn
impl UnsafeUnpin for Arn
impl UnwindSafe for Arn
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