Interface SigV4Authorization.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SigV4Authorization.Builder,SigV4Authorization>,SdkBuilder<SigV4Authorization.Builder,SigV4Authorization>,SdkPojo
- Enclosing class:
- SigV4Authorization
public static interface SigV4Authorization.Builder extends SdkPojo, CopyableBuilder<SigV4Authorization.Builder,SigV4Authorization>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SigV4Authorization.BuilderroleArn(String roleArn)The ARN of the signing role.SigV4Authorization.BuilderserviceName(String serviceName)The service name to use while signing with Sig V4.SigV4Authorization.BuildersigningRegion(String signingRegion)The signing region.-
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
-
signingRegion
SigV4Authorization.Builder signingRegion(String signingRegion)
The signing region.
- Parameters:
signingRegion- The signing region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceName
SigV4Authorization.Builder serviceName(String serviceName)
The service name to use while signing with Sig V4.
- Parameters:
serviceName- The service name to use while signing with Sig V4.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
roleArn
SigV4Authorization.Builder roleArn(String roleArn)
The ARN of the signing role.
- Parameters:
roleArn- The ARN of the signing role.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-