Struct aws_sdk_cloudhsm::operation::get_config::GetConfigInput
source · #[non_exhaustive]pub struct GetConfigInput {
pub client_arn: Option<String>,
pub client_version: Option<ClientVersion>,
pub hapg_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.client_arn: Option<String>The ARN of the client.
client_version: Option<ClientVersion>The client version.
hapg_list: Option<Vec<String>>A list of ARNs that identify the high-availability partition groups that are associated with the client.
Implementations§
source§impl GetConfigInput
impl GetConfigInput
sourcepub fn client_arn(&self) -> Option<&str>
pub fn client_arn(&self) -> Option<&str>
The ARN of the client.
sourcepub fn client_version(&self) -> Option<&ClientVersion>
pub fn client_version(&self) -> Option<&ClientVersion>
The client version.
source§impl GetConfigInput
impl GetConfigInput
sourcepub fn builder() -> GetConfigInputBuilder
pub fn builder() -> GetConfigInputBuilder
Creates a new builder-style object to manufacture GetConfigInput.
Trait Implementations§
source§impl Clone for GetConfigInput
impl Clone for GetConfigInput
source§fn clone(&self) -> GetConfigInput
fn clone(&self) -> GetConfigInput
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 GetConfigInput
impl Debug for GetConfigInput
source§impl PartialEq<GetConfigInput> for GetConfigInput
impl PartialEq<GetConfigInput> for GetConfigInput
source§fn eq(&self, other: &GetConfigInput) -> bool
fn eq(&self, other: &GetConfigInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetConfigInput
Auto Trait Implementations§
impl RefUnwindSafe for GetConfigInput
impl Send for GetConfigInput
impl Sync for GetConfigInput
impl Unpin for GetConfigInput
impl UnwindSafe for GetConfigInput
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