Module Values.CreateTrustStoreInputSource

Creates a trust store. For more information, see Mutual TLS for Application Load Balancers.

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

    The name of the trust store. This name must be unique per region and can't be changed after creation.

    *)
  2. caCertificatesBundleS3Bucket : S3Bucket.t;
    (*

    The Amazon S3 bucket for the ca certificates bundle.

    *)
  3. caCertificatesBundleS3Key : S3Key.t;
    (*

    The Amazon S3 path for the ca certificates bundle.

    *)
  4. caCertificatesBundleS3ObjectVersion : S3ObjectVersion.t option;
    (*

    The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used.

    *)
  5. tags : TagList.t option;
    (*

    The tags to assign to the trust store.

    *)
}
Sourceval context_ : string
Sourceval make : ?caCertificatesBundleS3ObjectVersion:??? -> ?tags:??? -> name:TrustStoreName.t -> caCertificatesBundleS3Bucket:S3Bucket.t -> caCertificatesBundleS3Key:S3Key.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of TrustStoreName.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