Module Values.CreateTrustAnchorRequestSource

Creates a trust anchor to establish trust between IAM Roles Anywhere and your certificate authority (CA). 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:CreateTrustAnchor.

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

    The name of the trust anchor.

    *)
  2. source : Source.t;
    (*

    The trust anchor type and its related certificate data.

    *)
  3. enabled : Boolean.t option;
    (*

    Specifies whether the trust anchor is enabled.

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

    The tags to attach to the trust anchor.

    *)
  5. notificationSettings : NotificationSettings.t option;
    (*

    A list of notification settings to be associated to the trust anchor.

    *)
}
Sourceval context_ : string
Sourceval make : ?enabled:??? -> ?tags:??? -> ?notificationSettings:??? -> name:ResourceName.t -> source:Source.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of NotificationSettingThresholdInteger.t | `String of TagKey.t ]) list ] list | `String of ResourceName.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