Module Values_0.ActivationSource

An activation registers one or more on-premises servers or virtual machines (VMs) with Amazon Web Services so that you can configure those servers or VMs using Run Command. A server or VM that has been registered with Amazon Web Services Systems Manager is called a managed node.

Sourcetype nonrec t = {
  1. activationId : ActivationId.t option;
    (*

    The ID created by Systems Manager when you submitted the activation.

    *)
  2. description : ActivationDescription.t option;
    (*

    A user defined description of the activation.

    *)
  3. defaultInstanceName : DefaultInstanceName.t option;
    (*

    A name for the managed node when it is created.

    *)
  4. iamRole : IamRole.t option;
    (*

    The Identity and Access Management (IAM) role to assign to the managed node.

    *)
  5. registrationLimit : RegistrationLimit.t option;
    (*

    The maximum number of managed nodes that can be registered using this activation.

    *)
  6. registrationsCount : RegistrationsCount.t option;
    (*

    The number of managed nodes already registered with this activation.

    *)
  7. expirationDate : ExpirationDate.t option;
    (*

    The date when this activation can no longer be used to register managed nodes.

    *)
  8. expired : Boolean.t option;
    (*

    Whether or not the activation is expired.

    *)
  9. createdDate : CreatedDate.t option;
    (*

    The date the activation was created.

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

    Tags assigned to the activation.

    *)
}
Sourceval make : ?activationId:??? -> ?description:??? -> ?defaultInstanceName:??? -> ?iamRole:??? -> ?registrationLimit:??? -> ?registrationsCount:??? -> ?expirationDate:??? -> ?expired:??? -> ?createdDate:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of RegistrationLimit.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ActivationId.t | `Timestamp of ExpirationDate.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