/* * Copyright 2012-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.sns.message; import com.amazonaws.SdkClientException; import com.amazonaws.services.sns.AmazonSNS; import com.amazonaws.services.sns.model.ConfirmSubscriptionRequest; import com.amazonaws.services.sns.model.ConfirmSubscriptionResult; import java.net.URL; import org.apache.http.client.HttpClient; /** * After you subscribe an HTTP/HTTPS endpoint, Amazon SNS sends a subscription confirmation message to the HTTP/HTTPS endpoint. * This message contains a SubscribeURL value that you must visit to confirm the subscription (alternatively, you can use the * Token value with the ConfirmSubscription). Note that Amazon SNS will not send notifications to this endpoint until the * subscription is confirmed. Use the {@link #confirmSubscription()} method to visit the confirmation URL via this object. */ public final class SnsSubscriptionConfirmation extends SnsMessage { private final HttpClient httpClient; private final String message; private final URL subscribeUrl; private final String token; private SnsSubscriptionConfirmation(Builder builder) { super(builder); this.httpClient = builder.httpClient; this.message = builder.message; this.subscribeUrl = Utils.createUrl(builder.subscribeUrl); this.token = builder.token; } /** * @return A string that describes the message. For subscription confirmation, this string looks like this: * You have chosen to subscribe to the topic arn:aws:sns:us-east-1:123456789012:MyTopic.\nTo confirm the subscription, * visit the SubscribeURL included in this message. * */ public String getMessage() { return message; } /** * @return The URL that you must visit in order to confirm the subscription. Alternatively, you can instead use the Token * with the {@link AmazonSNS#confirmSubscription(ConfirmSubscriptionRequest)} action to confirm the subscription. */ public URL getSubscribeUrl() { return subscribeUrl; } /** * @return A value you can use with the {@link AmazonSNS#confirmSubscription(ConfirmSubscriptionRequest)} action to confirm * the subscription. Alternatively, you can simply visit the SubscribeURL. */ public String getToken() { return token; } @Override public void handle(SnsMessageHandler handler) { handler.handle(this); } /** * Will attempt to confirm the subscription by visiting the URL at {@link #getSubscribeUrl()}. * * @return ConfirmSubscriptionResult if confirmation was successful. * @throws SdkClientException if confirmation could not be confirmed. */ public ConfirmSubscriptionResult confirmSubscription() throws SdkClientException { return Utils.confirmSubscription(httpClient, subscribeUrl.toExternalForm()); } /** * Creates a builder for {@link SnsSubscriptionConfirmation}. * * @param httpClient HTTP client instance used to confirm subscription. * @return Builder instance. */ static Builder builder(HttpClient httpClient) { return new Builder(httpClient); } /** * Builder for {@link SnsSubscriptionConfirmation}. */ static final class Builder extends SnsMessage.Builder { private HttpClient httpClient; private String message; private String subscribeUrl; private String token; private Builder(HttpClient httpClient) { this.httpClient = httpClient; } public Builder withMessage(String message) { this.message = message; return this; } public Builder withSubscribeUrl(String subscribeUrl) { this.subscribeUrl = subscribeUrl; return this; } public Builder withToken(String token) { this.token = token; return this; } public SnsSubscriptionConfirmation build() { return new SnsSubscriptionConfirmation(this); } } }