Module Values.UpdateTrustAnchorRequestSource

Updates a trust anchor. You establish trust between IAM Roles Anywhere and your certificate authority (CA) by configuring a trust anchor. You can define a trust anchor as a reference to an Private Certificate Authority (Private CA) or by uploading a CA certificate. Your Amazon Web Services workloads can authenticate with the trust anchor using certificates issued by the CA in exchange for temporary Amazon Web Services credentials. Required permissions: rolesanywhere:UpdateTrustAnchor.

Sourcetype nonrec t = {
  1. trustAnchorId : Uuid.t;
    (*

    The unique identifier of the trust anchor.

    *)
  2. name : ResourceName.t option;
    (*

    The name of the trust anchor.

    *)
  3. source : Source.t option;
    (*

    The trust anchor type and its related certificate data.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?source:??? -> trustAnchorId:Uuid.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Uuid.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of SourceDataX509CertificateDataString.t ]) list ]) 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