pub struct UpdateServiceSettingsRequest {
pub enable_cross_accounts_discovery: Option<bool>,
pub organization_configuration: Option<OrganizationConfiguration>,
pub s3_bucket_arn: Option<String>,
pub sns_topic_arn: Option<String>,
}Fields§
§enable_cross_accounts_discovery: Option<bool>Activates cross-account discovery.
organization_configuration: Option<OrganizationConfiguration>Enables integration with AWS Organizations for cross-account discovery.
s3_bucket_arn: Option<String>Amazon Resource Name (ARN) of the Amazon S3 bucket where the License Manager information is stored.
sns_topic_arn: Option<String>Amazon Resource Name (ARN) of the Amazon SNS topic used for License Manager alerts.
Trait Implementations§
Source§impl Clone for UpdateServiceSettingsRequest
impl Clone for UpdateServiceSettingsRequest
Source§fn clone(&self) -> UpdateServiceSettingsRequest
fn clone(&self) -> UpdateServiceSettingsRequest
Returns a duplicate 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 UpdateServiceSettingsRequest
impl Debug for UpdateServiceSettingsRequest
Source§impl Default for UpdateServiceSettingsRequest
impl Default for UpdateServiceSettingsRequest
Source§fn default() -> UpdateServiceSettingsRequest
fn default() -> UpdateServiceSettingsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateServiceSettingsRequest
impl PartialEq for UpdateServiceSettingsRequest
Source§fn eq(&self, other: &UpdateServiceSettingsRequest) -> bool
fn eq(&self, other: &UpdateServiceSettingsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateServiceSettingsRequest
Auto Trait Implementations§
impl Freeze for UpdateServiceSettingsRequest
impl RefUnwindSafe for UpdateServiceSettingsRequest
impl Send for UpdateServiceSettingsRequest
impl Sync for UpdateServiceSettingsRequest
impl Unpin for UpdateServiceSettingsRequest
impl UnwindSafe for UpdateServiceSettingsRequest
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