Module Values.CreateTargetAccountConfigurationRequestSource

Creates a target account configuration for the experiment template. A target account configuration is required when accountTargeting of experimentOptions is set to multi-account. For more information, see experiment options in the Fault Injection Service User Guide.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
  2. experimentTemplateId : ExperimentTemplateId.t;
    (*

    The experiment template ID.

    *)
  3. accountId : TargetAccountId.t;
    (*

    The Amazon Web Services account ID of the target account.

    *)
  4. roleArn : RoleArn.t;
    (*

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

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

    The description of the target account.

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