Module Values.AppInputSourceSource

The list of Resilience Hub application input sources.

Sourcetype nonrec t = {
  1. eksSourceClusterNamespace : EksSourceClusterNamespace.t option;
    (*

    The namespace on your Amazon Elastic Kubernetes Service cluster.

    *)
  2. importType : ResourceMappingType.t option;
    (*

    The resource type of the input source.

    *)
  3. resourceCount : Integer.t option;
    (*

    The number of resources.

    *)
  4. sourceArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the input source. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.

    *)
  5. sourceName : String255.t option;
    (*

    The name of the input source.

    *)
  6. terraformSource : TerraformSource.t option;
    (*

    The name of the Terraform s3 state file.

    *)
}
Sourceval make : ?eksSourceClusterNamespace:??? -> ?importType:??? -> ?resourceCount:??? -> ?sourceArn:??? -> ?sourceName:??? -> ?terraformSource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of Arn.t | `Structure of (string * [> `String of Arn.t ]) list ]) 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