Module Values.AwsSnsTopicDetailsSource

Provides information about an Amazon SNS topic to which notifications can be published.

Sourcetype nonrec t = {
  1. kmsMasterKeyId : NonEmptyString.t option;
    (*

    The ID of an Amazon Web Services managed key for Amazon SNS or a customer managed key.

    *)
  2. subscription : AwsSnsTopicSubscriptionList.t option;
    (*

    Subscription is an embedded property that describes the subscription endpoints of an Amazon SNS topic.

    *)
  3. topicName : NonEmptyString.t option;
    (*

    The name of the Amazon SNS topic.

    *)
  4. owner : NonEmptyString.t option;
    (*

    The subscription's owner.

    *)
  5. sqsSuccessFeedbackRoleArn : NonEmptyString.t option;
    (*

    Indicates successful message delivery status for an Amazon SNS topic that is subscribed to an Amazon SQS endpoint.

    *)
  6. sqsFailureFeedbackRoleArn : NonEmptyString.t option;
    (*

    Indicates failed message delivery status for an Amazon SNS topic that is subscribed to an Amazon SQS endpoint.

    *)
  7. applicationSuccessFeedbackRoleArn : NonEmptyString.t option;
    (*

    Indicates failed message delivery status for an Amazon SNS topic that is subscribed to a platform application endpoint.

    *)
  8. firehoseSuccessFeedbackRoleArn : NonEmptyString.t option;
    (*

    Indicates successful message delivery status for an Amazon SNS topic that is subscribed to an Amazon Kinesis Data Firehose endpoint.

    *)
  9. firehoseFailureFeedbackRoleArn : NonEmptyString.t option;
    (*

    Indicates failed message delivery status for an Amazon SNS topic that is subscribed to an Amazon Kinesis Data Firehose endpoint.

    *)
  10. httpSuccessFeedbackRoleArn : NonEmptyString.t option;
    (*

    Indicates successful message delivery status for an Amazon SNS topic that is subscribed to an HTTP endpoint.

    *)
  11. httpFailureFeedbackRoleArn : NonEmptyString.t option;
    (*

    Indicates failed message delivery status for an Amazon SNS topic that is subscribed to an HTTP endpoint.

    *)
}
Sourceval make : ?kmsMasterKeyId:??? -> ?subscription:??? -> ?topicName:??? -> ?owner:??? -> ?sqsSuccessFeedbackRoleArn:??? -> ?sqsFailureFeedbackRoleArn:??? -> ?applicationSuccessFeedbackRoleArn:??? -> ?firehoseSuccessFeedbackRoleArn:??? -> ?firehoseFailureFeedbackRoleArn:??? -> ?httpSuccessFeedbackRoleArn:??? -> ?httpFailureFeedbackRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.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