Struct aws_sdk_licensemanager::operation::update_service_settings::UpdateServiceSettingsInput
source · #[non_exhaustive]pub struct UpdateServiceSettingsInput {
pub s3_bucket_arn: Option<String>,
pub sns_topic_arn: Option<String>,
pub organization_configuration: Option<OrganizationConfiguration>,
pub enable_cross_accounts_discovery: Option<bool>,
}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.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.
organization_configuration: Option<OrganizationConfiguration>Enables integration with Organizations for cross-account discovery.
enable_cross_accounts_discovery: Option<bool>Activates cross-account discovery.
Implementations§
source§impl UpdateServiceSettingsInput
impl UpdateServiceSettingsInput
sourcepub fn s3_bucket_arn(&self) -> Option<&str>
pub fn s3_bucket_arn(&self) -> Option<&str>
Amazon Resource Name (ARN) of the Amazon S3 bucket where the License Manager information is stored.
sourcepub fn sns_topic_arn(&self) -> Option<&str>
pub fn sns_topic_arn(&self) -> Option<&str>
Amazon Resource Name (ARN) of the Amazon SNS topic used for License Manager alerts.
sourcepub fn organization_configuration(&self) -> Option<&OrganizationConfiguration>
pub fn organization_configuration(&self) -> Option<&OrganizationConfiguration>
Enables integration with Organizations for cross-account discovery.
sourcepub fn enable_cross_accounts_discovery(&self) -> Option<bool>
pub fn enable_cross_accounts_discovery(&self) -> Option<bool>
Activates cross-account discovery.
source§impl UpdateServiceSettingsInput
impl UpdateServiceSettingsInput
sourcepub fn builder() -> UpdateServiceSettingsInputBuilder
pub fn builder() -> UpdateServiceSettingsInputBuilder
Creates a new builder-style object to manufacture UpdateServiceSettingsInput.
Trait Implementations§
source§impl Clone for UpdateServiceSettingsInput
impl Clone for UpdateServiceSettingsInput
source§fn clone(&self) -> UpdateServiceSettingsInput
fn clone(&self) -> UpdateServiceSettingsInput
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 UpdateServiceSettingsInput
impl Debug for UpdateServiceSettingsInput
source§impl PartialEq<UpdateServiceSettingsInput> for UpdateServiceSettingsInput
impl PartialEq<UpdateServiceSettingsInput> for UpdateServiceSettingsInput
source§fn eq(&self, other: &UpdateServiceSettingsInput) -> bool
fn eq(&self, other: &UpdateServiceSettingsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateServiceSettingsInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateServiceSettingsInput
impl Send for UpdateServiceSettingsInput
impl Sync for UpdateServiceSettingsInput
impl Unpin for UpdateServiceSettingsInput
impl UnwindSafe for UpdateServiceSettingsInput
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