Module Values_0.AccountSettingsSource

The Quick Sight settings associated with your Amazon Web Services account.

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

    The "account name" you provided for the Quick Sight subscription in your Amazon Web Services account. You create this name when you sign up for Quick Sight. It is unique in all of Amazon Web Services and it appears only when users sign in.

    *)
  2. edition : Edition.t option;
    (*

    The edition of Quick Sight that you're currently subscribed to: Enterprise edition or Standard edition.

    *)
  3. defaultNamespace : Namespace.t option;
    (*

    The default Quick Sight namespace for your Amazon Web Services account.

    *)
  4. notificationEmail : String_.t option;
    (*

    The main notification email for your Quick Sight subscription.

    *)
  5. publicSharingEnabled : Boolean.t option;
    (*

    A Boolean value that indicates whether public sharing is turned on for an Quick account. For more information about turning on public sharing, see UpdatePublicSharingSettings.

    *)
  6. terminationProtectionEnabled : Boolean.t option;
    (*

    A boolean value that determines whether or not an Quick Sight account can be deleted. A True value doesn't allow the account to be deleted and results in an error message if a user tries to make a DeleteAccountSubsctiption request. A False value will allow the ccount to be deleted.

    *)
}
Sourceval make : ?accountName:??? -> ?edition:??? -> ?defaultNamespace:??? -> ?notificationEmail:??? -> ?publicSharingEnabled:??? -> ?terminationProtectionEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of String_.t ]) 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