Interface ApiKeyCredentials.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApiKeyCredentials.Builder,ApiKeyCredentials>,SdkBuilder<ApiKeyCredentials.Builder,ApiKeyCredentials>,SdkPojo
- Enclosing class:
- ApiKeyCredentials
public static interface ApiKeyCredentials.Builder extends SdkPojo, CopyableBuilder<ApiKeyCredentials.Builder,ApiKeyCredentials>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApiKeyCredentials.BuilderapiKey(String apiKey)The API key required for API key authentication.ApiKeyCredentials.BuilderapiSecretKey(String apiSecretKey)The API secret key required for API key authentication.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
apiKey
ApiKeyCredentials.Builder apiKey(String apiKey)
The API key required for API key authentication.
- Parameters:
apiKey- The API key required for API key authentication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
apiSecretKey
ApiKeyCredentials.Builder apiSecretKey(String apiSecretKey)
The API secret key required for API key authentication.
- Parameters:
apiSecretKey- The API secret key required for API key authentication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-