pub struct GetServiceSettingsResponse {
pub enable_cross_accounts_discovery: Option<bool>,
pub license_manager_resource_share_arn: Option<String>,
pub organization_configuration: Option<OrganizationConfiguration>,
pub s3_bucket_arn: Option<String>,
pub sns_topic_arn: Option<String>,
}Fields§
§enable_cross_accounts_discovery: Option<bool>Indicates whether cross-account discovery has been enabled.
Amazon Resource Name (ARN) of the AWS resource share. The License Manager master account will provide member accounts with access to this share.
organization_configuration: Option<OrganizationConfiguration>Indicates whether AWS Organizations has been integrated with License Manager for cross-account discovery.
s3_bucket_arn: Option<String>Regional S3 bucket path for storing reports, license trail event data, discovery data, and so on.
sns_topic_arn: Option<String>SNS topic configured to receive notifications from License Manager.
Trait Implementations§
Source§impl Clone for GetServiceSettingsResponse
impl Clone for GetServiceSettingsResponse
Source§fn clone(&self) -> GetServiceSettingsResponse
fn clone(&self) -> GetServiceSettingsResponse
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 GetServiceSettingsResponse
impl Debug for GetServiceSettingsResponse
Source§impl Default for GetServiceSettingsResponse
impl Default for GetServiceSettingsResponse
Source§fn default() -> GetServiceSettingsResponse
fn default() -> GetServiceSettingsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetServiceSettingsResponse
impl<'de> Deserialize<'de> for GetServiceSettingsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for GetServiceSettingsResponse
Auto Trait Implementations§
impl Freeze for GetServiceSettingsResponse
impl RefUnwindSafe for GetServiceSettingsResponse
impl Send for GetServiceSettingsResponse
impl Sync for GetServiceSettingsResponse
impl Unpin for GetServiceSettingsResponse
impl UnwindSafe for GetServiceSettingsResponse
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