Struct aws_sdk_appfabric::types::AppBundle
source · #[non_exhaustive]pub struct AppBundle {
pub arn: Option<String>,
pub customer_managed_key_arn: Option<String>,
}
Expand description
Contains information about an app bundle.
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.arn: Option<String>
The Amazon Resource Name (ARN) of the app bundle.
customer_managed_key_arn: Option<String>
The Amazon Resource Name (ARN) of the Key Management Service (KMS) key used to encrypt the application data.
Implementations§
Trait Implementations§
source§impl PartialEq<AppBundle> for AppBundle
impl PartialEq<AppBundle> for AppBundle
impl StructuralPartialEq for AppBundle
Auto Trait Implementations§
impl RefUnwindSafe for AppBundle
impl Send for AppBundle
impl Sync for AppBundle
impl Unpin for AppBundle
impl UnwindSafe for AppBundle
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