Module Values.SourceAwsConfigurationSource

Configuration for AWS source account integration. Note: passRole check on 'assumableRoleArn' is not supported.

Sourcetype nonrec t = {
  1. accountId : SourceAwsConfigurationAccountIdString.t;
    (*

    AWS Account Id corresponding to provided resources.

    *)
  2. accountType : SourceAccountType.t;
    (*

    Account Type 'source' for AIDevOps monitoring.

    *)
  3. assumableRoleArn : RoleArn.t;
    (*

    Role ARN to be assumed by AIDevOps to operate on behalf of customer.

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

    External ID for additional security when assuming the role. Used to prevent the confused deputy problem.

    *)
}
Sourceval context_ : string
Sourceval make : ?externalId:??? -> accountId:SourceAwsConfigurationAccountIdString.t -> accountType:SourceAccountType.t -> assumableRoleArn:RoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SourceAwsConfigurationAccountIdString.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