com.amazonaws.auth.presign.PresignerParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-core Show documentation
Show all versions of aws-java-sdk-core Show documentation
The AWS SDK for Java - Core module holds the classes that are used by the individual service clients to interact with Amazon Web Services. Users need to depend on aws-java-sdk artifact for accessing individual client classes.
/*
* Copyright 2011-2024 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.auth.presign;
import com.amazonaws.annotation.Immutable;
import com.amazonaws.annotation.SdkProtectedApi;
import com.amazonaws.annotation.SdkTestInternalApi;
import com.amazonaws.auth.AWSCredentialsProvider;
import com.amazonaws.auth.SdkClock;
import com.amazonaws.internal.auth.SignerProvider;
import java.net.URI;
/**
* Params object passed to the presigner extension class for a service client and also for {@link PresignerFacade}.
*/
@Immutable
@SdkProtectedApi
public class PresignerParams {
private final URI endpoint;
private final AWSCredentialsProvider credentialsProvider;
private final SignerProvider signerProvider;
private final SdkClock clock;
public PresignerParams(URI endpoint,
AWSCredentialsProvider credentialsProvider,
SignerProvider signerProvider,
SdkClock clock) {
this.endpoint = endpoint;
this.credentialsProvider = credentialsProvider;
this.signerProvider = signerProvider;
this.clock = clock;
}
public static Builder builder() {
return new Builder();
}
public URI endpoint() {
return endpoint;
}
public AWSCredentialsProvider credentialsProvider() {
return credentialsProvider;
}
public SignerProvider signerProvider() {
return signerProvider;
}
/**
* @return Clock providing the current time in milliseconds.
*/
public SdkClock clock() {
return this.clock;
}
public static class Builder {
private URI endpoint;
private AWSCredentialsProvider credentialsProvider;
private SignerProvider signerProvider;
private SdkClock clock;
private Builder() {
}
public Builder endpoint(URI endpoint) {
this.endpoint = endpoint;
return this;
}
public Builder credentialsProvider(AWSCredentialsProvider credentialsProvider) {
this.credentialsProvider = credentialsProvider;
return this;
}
public Builder signerProvider(SignerProvider signerProvider) {
this.signerProvider = signerProvider;
return this;
}
@SdkTestInternalApi
public Builder clock(SdkClock clock) {
this.clock = clock;
return this;
}
public PresignerParams build() {
return new PresignerParams(endpoint, credentialsProvider, signerProvider, resolveClock());
}
private SdkClock resolveClock() {
return clock == null ? SdkClock.STANDARD : clock;
}
}
}