Class AwsRequest
- java.lang.Object
-
- com.mongodb.stitch.core.services.aws.AwsRequest
-
public final class AwsRequest extends Object
An AwsRequest encapsulates the details of an AWS request over the AWS service.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAwsRequest.BuilderA builder that can buildAwsRequests.
-
Method Summary
Modifier and Type Method Description StringgetAction()Returns the action within the AWS service to perform.DocumentgetArguments()Returns the arguments that will be used in the action.StringgetRegion()Returns the region that service in this request should be scoped to.StringgetService()Returns the AWS service that the action in the request will be performed against.
-
-
-
Method Detail
-
getService
public String getService()
Returns the AWS service that the action in the request will be performed against.- Returns:
- the AWS service that the action in the request will be performed against.
-
getAction
public String getAction()
Returns the action within the AWS service to perform.- Returns:
- the action within the AWS service to perform.
-
getRegion
public String getRegion()
Returns the region that service in this request should be scoped to.- Returns:
- the region that service in this request should be scoped to.
-
getArguments
public Document getArguments()
Returns the arguments that will be used in the action.- Returns:
- the arguments that will be used in the action.
-
-