Module Values.SettingSource

The current account setting for a resource.

Sourcetype nonrec t = {
  1. name : SettingName.t option;
    (*

    The Amazon ECS resource name.

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

    Determines whether the account setting is on or off for the specified resource.

    *)
  3. principalArn : String_.t option;
    (*

    The ARN of the principal. It can be a user, role, or the root user. If this field is omitted, the authenticated user is assumed.

    *)
  4. type_ : SettingType.t option;
    (*

    Indicates whether Amazon Web Services manages the account setting, or if the user manages it. aws_managed account settings are read-only, as Amazon Web Services manages such on the customer's behalf. Currently, the guardDutyActivate account setting is the only one Amazon Web Services manages.

    *)
}
Sourceval make : ?name:??? -> ?value:??? -> ?principalArn:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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