Module Values.TargetAccountConfigurationSummarySource

Provides a summary of a target account configuration.

Sourcetype nonrec t = {
  1. roleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of an IAM role for the target account.

    *)
  2. accountId : TargetAccountId.t option;
    (*

    The Amazon Web Services account ID of the target account.

    *)
  3. description : TargetAccountConfigurationDescription.t option;
    (*

    The description of the target account.

    *)
}
Sourceval make : ?roleArn:??? -> ?accountId:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RoleArn.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