Struct aws_sdk_cloudhsm::operation::modify_hapg::ModifyHapgInput
source · #[non_exhaustive]pub struct ModifyHapgInput {
pub hapg_arn: Option<String>,
pub label: Option<String>,
pub partition_serial_list: Option<Vec<String>>,
}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.hapg_arn: Option<String>The ARN of the high-availability partition group to modify.
label: Option<String>The new label for the high-availability partition group.
partition_serial_list: Option<Vec<String>>The list of partition serial numbers to make members of the high-availability partition group.
Implementations§
source§impl ModifyHapgInput
impl ModifyHapgInput
source§impl ModifyHapgInput
impl ModifyHapgInput
sourcepub fn builder() -> ModifyHapgInputBuilder
pub fn builder() -> ModifyHapgInputBuilder
Creates a new builder-style object to manufacture ModifyHapgInput.
Trait Implementations§
source§impl Clone for ModifyHapgInput
impl Clone for ModifyHapgInput
source§fn clone(&self) -> ModifyHapgInput
fn clone(&self) -> ModifyHapgInput
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 ModifyHapgInput
impl Debug for ModifyHapgInput
source§impl PartialEq<ModifyHapgInput> for ModifyHapgInput
impl PartialEq<ModifyHapgInput> for ModifyHapgInput
source§fn eq(&self, other: &ModifyHapgInput) -> bool
fn eq(&self, other: &ModifyHapgInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ModifyHapgInput
Auto Trait Implementations§
impl RefUnwindSafe for ModifyHapgInput
impl Send for ModifyHapgInput
impl Sync for ModifyHapgInput
impl Unpin for ModifyHapgInput
impl UnwindSafe for ModifyHapgInput
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