Module Values.UpdateServiceSettingsRequestSource

Updates License Manager settings for the current Region.

Sourcetype nonrec t = {
  1. s3BucketArn : String_.t option;
    (*

    Amazon Resource Name (ARN) of the Amazon S3 bucket where the License Manager information is stored.

    *)
  2. snsTopicArn : String_.t option;
    (*

    Amazon Resource Name (ARN) of the Amazon SNS topic used for License Manager alerts.

    *)
  3. organizationConfiguration : OrganizationConfiguration.t option;
    (*

    Enables integration with Organizations for cross-account discovery.

    *)
  4. enableCrossAccountsDiscovery : BoxBoolean.t option;
    (*

    Activates cross-account discovery.

    *)
  5. enabledDiscoverySourceRegions : StringList.t option;
    (*

    Cross region discovery enabled source regions.

    *)
}
Sourceval make : ?s3BucketArn:??? -> ?snsTopicArn:??? -> ?organizationConfiguration:??? -> ?enableCrossAccountsDiscovery:??? -> ?enabledDiscoverySourceRegions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BoxBoolean.t | `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t