Module Values.SubscriptionSource

Information about the Shield Advanced subscription for an account.

Sourcetype nonrec t = {
  1. startTime : Timestamp.t option;
    (*

    The start time of the subscription, in Unix time in seconds.

    *)
  2. endTime : Timestamp.t option;
    (*

    The date and time your subscription will end.

    *)
  3. timeCommitmentInSeconds : DurationInSeconds.t option;
    (*

    The length, in seconds, of the Shield Advanced subscription for the account.

    *)
  4. autoRenew : AutoRenew.t option;
    (*

    If ENABLED, the subscription will be automatically renewed at the end of the existing subscription period. When you initally create a subscription, AutoRenew is set to ENABLED. You can change this by submitting an UpdateSubscription request. If the UpdateSubscription request does not included a value for AutoRenew, the existing value for AutoRenew remains unchanged.

    *)
  5. limits : Limits.t option;
    (*

    Specifies how many protections of a given type you can create.

    *)
  6. proactiveEngagementStatus : ProactiveEngagementStatus.t option;
    (*

    If ENABLED, the Shield Response Team (SRT) will use email and phone to notify contacts about escalations to the SRT and to initiate proactive customer support. If PENDING, you have requested proactive engagement and the request is pending. The status changes to ENABLED when your request is fully processed. If DISABLED, the SRT will not proactively notify contacts about escalations or to initiate proactive customer support.

    *)
  7. subscriptionLimits : SubscriptionLimits.t option;
    (*

    Limits settings for your subscription.

    *)
  8. subscriptionArn : ResourceArn.t option;
    (*

    The ARN (Amazon Resource Name) of the subscription.

    *)
}
Sourceval make : ?startTime:??? -> ?endTime:??? -> ?timeCommitmentInSeconds:??? -> ?autoRenew:??? -> ?limits:??? -> ?proactiveEngagementStatus:??? -> ?subscriptionLimits:??? -> ?subscriptionArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Long of Long.t | `String of String_.t ]) list ] list | `Long of DurationInSeconds.t | `String of ResourceArn.t | `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `Long of Long.t | `String of String_.t ]) list ] list | `Long of Long.t | `Structure of (string * [> `Structure of (string * [> `Long of Long.t ]) list ]) list ]) list ]) list | `Timestamp of Timestamp.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