update documentation for NestedPropertyProcessor

This commit is contained in:
Vincent Viloria 2025-02-28 09:28:26 -08:00
parent 995325813b
commit b9f44acffd

View file

@ -26,11 +26,11 @@ public interface NestedPropertyProcessor {
* *
* @param serviceEndpoint the service endpoint either with or without the protocol * @param serviceEndpoint the service endpoint either with or without the protocol
* (e.g., https://sns.us-west-1.amazonaws.com, sns.us-west-1.amazonaws.com) * (e.g., https://sns.us-west-1.amazonaws.com, sns.us-west-1.amazonaws.com)
* @param signingRegion the region to use for SigV4 signing of requests (e.g. us-west-1) * @param signingRegion the region to use for the client (e.g. us-west-1)
* *
* @see #acceptEndpointRegion(Region) * @see #acceptEndpointRegion(Region)
* @see <a href="https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/client/builder/AwsClientBuilder.EndpointConfiguration.html"> * @see <a href="https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/core/client/builder/SdkClientBuilder.html#endpointOverride(java.net.URI)">
* AwsClientBuilder.EndpointConfiguration</a> * AwsClientBuilder.endpointOverride</a>
*/ */
void acceptEndpoint(String serviceEndpoint, String signingRegion); void acceptEndpoint(String serviceEndpoint, String signingRegion);