Struct aws_sdk_ssmsap::operation::update_application_settings::UpdateApplicationSettingsInput
source · #[non_exhaustive]pub struct UpdateApplicationSettingsInput {
pub application_id: Option<String>,
pub credentials_to_add_or_update: Option<Vec<ApplicationCredential>>,
pub credentials_to_remove: Option<Vec<ApplicationCredential>>,
pub backint: Option<BackintConfig>,
}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.application_id: Option<String>The ID of the application.
credentials_to_add_or_update: Option<Vec<ApplicationCredential>>The credentials to be added or updated.
credentials_to_remove: Option<Vec<ApplicationCredential>>The credentials to be removed.
backint: Option<BackintConfig>Installation of AWS Backint Agent for SAP HANA.
Implementations§
source§impl UpdateApplicationSettingsInput
impl UpdateApplicationSettingsInput
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The ID of the application.
sourcepub fn credentials_to_add_or_update(&self) -> Option<&[ApplicationCredential]>
pub fn credentials_to_add_or_update(&self) -> Option<&[ApplicationCredential]>
The credentials to be added or updated.
sourcepub fn credentials_to_remove(&self) -> Option<&[ApplicationCredential]>
pub fn credentials_to_remove(&self) -> Option<&[ApplicationCredential]>
The credentials to be removed.
sourcepub fn backint(&self) -> Option<&BackintConfig>
pub fn backint(&self) -> Option<&BackintConfig>
Installation of AWS Backint Agent for SAP HANA.
source§impl UpdateApplicationSettingsInput
impl UpdateApplicationSettingsInput
sourcepub fn builder() -> UpdateApplicationSettingsInputBuilder
pub fn builder() -> UpdateApplicationSettingsInputBuilder
Creates a new builder-style object to manufacture UpdateApplicationSettingsInput.
Trait Implementations§
source§impl Clone for UpdateApplicationSettingsInput
impl Clone for UpdateApplicationSettingsInput
source§fn clone(&self) -> UpdateApplicationSettingsInput
fn clone(&self) -> UpdateApplicationSettingsInput
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 PartialEq for UpdateApplicationSettingsInput
impl PartialEq for UpdateApplicationSettingsInput
source§fn eq(&self, other: &UpdateApplicationSettingsInput) -> bool
fn eq(&self, other: &UpdateApplicationSettingsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateApplicationSettingsInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateApplicationSettingsInput
impl Send for UpdateApplicationSettingsInput
impl Sync for UpdateApplicationSettingsInput
impl Unpin for UpdateApplicationSettingsInput
impl UnwindSafe for UpdateApplicationSettingsInput
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