Module Values_0.TopicRuleDestinationSummarySource

Information about the topic rule destination.

Sourcetype nonrec t = {
  1. arn : AwsArn.t option;
    (*

    The topic rule destination ARN.

    *)
  2. status : TopicRuleDestinationStatus.t option;
    (*

    The status of the topic rule destination. Valid values are: IN_PROGRESS A topic rule destination was created but has not been confirmed. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint. ENABLED Confirmation was completed, and traffic to this destination is allowed. You can set status to DISABLED by calling UpdateTopicRuleDestination. DISABLED Confirmation was completed, and traffic to this destination is not allowed. You can set status to ENABLED by calling UpdateTopicRuleDestination. ERROR Confirmation could not be completed, for example if the confirmation timed out. You can call GetTopicRuleDestination for details about the error. You can set status to IN_PROGRESS by calling UpdateTopicRuleDestination. Calling UpdateTopicRuleDestination causes a new confirmation challenge to be sent to your confirmation endpoint.

    *)
  3. createdAt : CreatedAtDate.t option;
    (*

    The date and time when the topic rule destination was created.

    *)
  4. lastUpdatedAt : LastUpdatedAtDate.t option;
    (*

    The date and time when the topic rule destination was last updated.

    *)
  5. statusReason : String_.t option;
    (*

    The reason the topic rule destination is in the current status.

    *)
  6. httpUrlSummary : HttpUrlDestinationSummary.t option;
    (*

    Information about the HTTP URL.

    *)
  7. vpcDestinationSummary : VpcDestinationSummary.t option;
    (*

    Information about the virtual private cloud (VPC) connection.

    *)
}
Sourceval make : ?arn:??? -> ?status:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?statusReason:??? -> ?httpUrlSummary:??? -> ?vpcDestinationSummary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AwsArn.t | `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `String of Url.t ]) list | `Timestamp of CreatedAtDate.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