Uses of Interface
com.amazonaws.Request

Packages that use Request
com.amazonaws   
com.amazonaws.auth   
com.amazonaws.handlers   
com.amazonaws.http   
com.amazonaws.metrics Classes used to support the AWS SDK metrics API. 
com.amazonaws.services.ec2.model Classes modeling the various types represented by AmazonEC2. 
com.amazonaws.services.s3 Synchronous client for accessing Amazon S3. 
com.amazonaws.services.sqs Synchronous and asynchronous client classes for accessing AmazonSQS. 
com.amazonaws.util   
 

Uses of Request in com.amazonaws
 

Classes in com.amazonaws that implement Request
 class DefaultRequest<T>
          Default implementation of the Request interface.
 

Methods in com.amazonaws that return Request
 Request<T> Request.withParameter(String name, String value)
          Adds the specified request parameter to this request, and returns the updated request object.
 Request<T> DefaultRequest.withParameter(String name, String value)
           
 Request<T> Request.withTimeOffset(int timeOffset)
          Sets the optional value for time offset for this request.
 Request<T> DefaultRequest.withTimeOffset(int timeOffset)
           
 

Methods in com.amazonaws with parameters of type Request
protected
<T> HttpRequest
AmazonWebServiceClient.convertToHttpRequest(Request<T> request, HttpMethodName methodName)
          Deprecated. 
protected  ExecutionContext AmazonWebServiceClient.createExecutionContext(Request<?> req)
           
protected  void AmazonWebServiceClient.endClientExecution(AWSRequestMetrics awsRequestMetrics, Request<?> request, Response<?> response)
          Convenient method to end the client execution without logging the awsRequestMetrics.
protected  void AmazonWebServiceClient.endClientExecution(AWSRequestMetrics awsRequestMetrics, Request<?> request, Response<?> response, boolean loggingAwsRequestMetrics)
          Common routine to end a client AWS request/response execution and collect the request metrics.
protected  RequestMetricCollector AmazonWebServiceClient.findRequestMetricCollector(Request<?> req)
          Returns the most specific request metric collector, starting from the request level, then client level, then finally the AWS SDK level.
 

Uses of Request in com.amazonaws.auth
 

Methods in com.amazonaws.auth with parameters of type Request
protected  void AWS4Signer.addHostHeader(Request<?> request)
           
protected  void QueryStringSigner.addSessionCredentials(Request<?> request, AWSSessionCredentials credentials)
           
protected  void CloudFrontSigner.addSessionCredentials(Request<?> request, AWSSessionCredentials credentials)
           
protected  void AWS4Signer.addSessionCredentials(Request<?> request, AWSSessionCredentials credentials)
           
protected  void AWS3Signer.addSessionCredentials(Request<?> request, AWSSessionCredentials credentials)
           
protected abstract  void AbstractAWSSigner.addSessionCredentials(Request<?> request, AWSSessionCredentials credentials)
          Adds session credentials to the request given.
protected  String AWS4Signer.calculateContentHash(Request<?> request)
          Calculate the hash of the request's payload.
protected  String AWS4Signer.calculateContentHashPresign(Request<?> request)
          Calculate the hash of the request's payload.
protected  AWS4Signer.HeaderSigningResult AWS4Signer.computeSignature(Request<?> request, String dateStamp, String timeStamp, String algorithm, String contentSha256, AWSCredentials sanitizedCredentials)
           
protected  byte[] AbstractAWSSigner.getBinaryRequestPayload(Request<?> request)
          Returns the request's payload as binary data.
protected  InputStream AbstractAWSSigner.getBinaryRequestPayloadStream(Request<?> request)
           
protected  InputStream AbstractAWSSigner.getBinaryRequestPayloadStreamWithoutQueryParams(Request<?> request)
           
protected  byte[] AbstractAWSSigner.getBinaryRequestPayloadWithoutQueryParams(Request<?> request)
          Returns the request's payload contents as binary data, without processing any query string params (i.e.
protected  String AWS3Signer.getCanonicalizedHeadersForStringToSign(Request<?> request)
           
protected  String AWS4Signer.getCanonicalizedHeaderString(Request<?> request)
           
protected  String AbstractAWSSigner.getCanonicalizedQueryString(Request<?> request)
           
protected  String AWS4Signer.getCanonicalRequest(Request<?> request, String contentSha256)
           
protected  long AWS4Signer.getDateFromRequest(Request<?> request)
           
protected  List<String> AWS3Signer.getHeadersForStringToSign(Request<?> request)
           
protected  String AbstractAWSSigner.getRequestPayload(Request<?> request)
          Returns the request's payload as a String.
protected  String AbstractAWSSigner.getRequestPayloadWithoutQueryParams(Request<?> request)
          Returns the request's payload contents as a String, without processing any query string params (i.e.
protected  String AWS4Signer.getScope(Request<?> request, String dateStamp)
           
protected  String AWS4Signer.getSignedHeadersString(Request<?> request)
           
protected  int AbstractAWSSigner.getTimeOffset(Request<?> request)
           
 void Presigner.presignRequest(Request<?> request, AWSCredentials credentials, Date expiration)
          Signs the request by adding the signature to the URL rather than as a header.
 void AWS4Signer.presignRequest(Request<?> request, AWSCredentials credentials, Date expiration)
           
protected  void AWS4Signer.processRequestPayload(Request<?> request, AWS4Signer.HeaderSigningResult headerSigningResult)
          Subclass could override this method to perform any additional procedure on the request payload, with access to the result from signing the header.
protected  boolean AWS3Signer.shouldUseHttpsScheme(Request<?> request)
           
 void Signer.sign(Request<?> request, AWSCredentials credentials)
          Sign the given request with the given set of credentials.
 void QueryStringSigner.sign(Request<?> request, AWSCredentials credentials)
          This signer will add "Signature" parameter to the request.
 void NoOpSigner.sign(Request<?> request, AWSCredentials credentials)
           
 void CloudFrontSigner.sign(Request<?> request, AWSCredentials credentials)
           
 void AWS4Signer.sign(Request<?> request, AWSCredentials credentials)
           
 void AWS3Signer.sign(Request<?> request, AWSCredentials credentials)
          Signs the specified request with the AWS3 signing protocol by using the AWS account credentials specified when this object was constructed and adding the required AWS3 headers to the request.
 void QueryStringSigner.sign(Request<?> request, SignatureVersion version, SigningAlgorithm algorithm, AWSCredentials credentials)
          This signer will add following authentication parameters to the request: AWSAccessKeyId SignatureVersion SignatureMethod Timestamp Signature
 

Uses of Request in com.amazonaws.handlers
 

Methods in com.amazonaws.handlers with parameters of type Request
 void RequestHandler.afterError(Request<?> request, Exception e)
          Deprecated. Runs any additional processing logic on a request after it has failed.
 void AbstractRequestHandler.afterError(Request<?> request, Exception e)
          Deprecated.  
abstract  void RequestHandler2.afterError(Request<?> request, Response<?> response, Exception e)
          Runs any additional processing logic on a request after it has failed.
 void RequestHandler.afterResponse(Request<?> request, Object response, TimingInfo timingInfo)
          Deprecated. Runs any additional processing logic on the specified request (after is has been executed by the client runtime).
 void AbstractRequestHandler.afterResponse(Request<?> request, Object response, TimingInfo timingInfo)
          Deprecated.  
abstract  void RequestHandler2.afterResponse(Request<?> request, Response<?> response)
          Runs any additional processing logic on the specified request (after is has been executed by the client runtime).
abstract  void RequestHandler2.beforeRequest(Request<?> request)
          Runs any additional processing logic on the specified request (before it is executed by the client runtime).
 void RequestHandler.beforeRequest(Request<?> request)
          Deprecated. Runs any additional processing logic on the specified request (before it is executed by the client runtime).
 void AbstractRequestHandler.beforeRequest(Request<?> request)
          Deprecated.  
 

Uses of Request in com.amazonaws.http
 

Methods in com.amazonaws.http that return Request
 Request<?> HttpResponse.getRequest()
          Returns the original request associated with this response.
 

Methods in com.amazonaws.http with parameters of type Request
<T> Response<T>
AmazonHttpClient.execute(Request<?> request, HttpResponseHandler<AmazonWebServiceResponse<T>> responseHandler, HttpResponseHandler<AmazonServiceException> errorResponseHandler, ExecutionContext executionContext)
          Executes the request and returns the result.
 

Constructors in com.amazonaws.http with parameters of type Request
HttpResponse(Request<?> request, org.apache.http.client.methods.HttpRequestBase httpRequest)
          Constructs a new HttpResponse associated with the specified request.
 

Uses of Request in com.amazonaws.metrics
 

Methods in com.amazonaws.metrics with parameters of type Request
abstract  void RequestMetricCollector.collectMetrics(Request<?> request, Response<?> response)
          Used to collect the metric at the end of a request/response cycle.
 

Uses of Request in com.amazonaws.services.ec2.model
 

Methods in com.amazonaws.services.ec2.model that return Request
 Request<UnmonitorInstancesRequest> UnmonitorInstancesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<TerminateInstancesRequest> TerminateInstancesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<StopInstancesRequest> StopInstancesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<StartInstancesRequest> StartInstancesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<RunInstancesRequest> RunInstancesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<RevokeSecurityGroupIngressRequest> RevokeSecurityGroupIngressRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<RevokeSecurityGroupEgressRequest> RevokeSecurityGroupEgressRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ResetSnapshotAttributeRequest> ResetSnapshotAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ResetNetworkInterfaceAttributeRequest> ResetNetworkInterfaceAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ResetInstanceAttributeRequest> ResetInstanceAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ResetImageAttributeRequest> ResetImageAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<RequestSpotInstancesRequest> RequestSpotInstancesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ReportInstanceStatusRequest> ReportInstanceStatusRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ReplaceRouteTableAssociationRequest> ReplaceRouteTableAssociationRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ReplaceRouteRequest> ReplaceRouteRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ReplaceNetworkAclEntryRequest> ReplaceNetworkAclEntryRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ReplaceNetworkAclAssociationRequest> ReplaceNetworkAclAssociationRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ReleaseAddressRequest> ReleaseAddressRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<RejectVpcPeeringConnectionRequest> RejectVpcPeeringConnectionRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<RegisterImageRequest> RegisterImageRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<RebootInstancesRequest> RebootInstancesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<PurchaseReservedInstancesOfferingRequest> PurchaseReservedInstancesOfferingRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<MonitorInstancesRequest> MonitorInstancesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ModifyVolumeAttributeRequest> ModifyVolumeAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ModifySnapshotAttributeRequest> ModifySnapshotAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ModifyNetworkInterfaceAttributeRequest> ModifyNetworkInterfaceAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ModifyInstanceAttributeRequest> ModifyInstanceAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ModifyImageAttributeRequest> ModifyImageAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ImportVolumeRequest> ImportVolumeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ImportKeyPairRequest> ImportKeyPairRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ImportInstanceRequest> ImportInstanceRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<GetPasswordDataRequest> GetPasswordDataRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<GetConsoleOutputRequest> GetConsoleOutputRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<EnableVolumeIORequest> EnableVolumeIORequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<X> DryRunSupportedRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DisassociateRouteTableRequest> DisassociateRouteTableRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DisassociateAddressRequest> DisassociateAddressRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DetachVpnGatewayRequest> DetachVpnGatewayRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DetachVolumeRequest> DetachVolumeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DetachNetworkInterfaceRequest> DetachNetworkInterfaceRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DetachInternetGatewayRequest> DetachInternetGatewayRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeVpnGatewaysRequest> DescribeVpnGatewaysRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeVpnConnectionsRequest> DescribeVpnConnectionsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeVpcsRequest> DescribeVpcsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeVpcPeeringConnectionsRequest> DescribeVpcPeeringConnectionsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeVpcAttributeRequest> DescribeVpcAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeVolumeStatusRequest> DescribeVolumeStatusRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeVolumesRequest> DescribeVolumesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeVolumeAttributeRequest> DescribeVolumeAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeTagsRequest> DescribeTagsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeSubnetsRequest> DescribeSubnetsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeSpotPriceHistoryRequest> DescribeSpotPriceHistoryRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeSpotInstanceRequestsRequest> DescribeSpotInstanceRequestsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeSpotDatafeedSubscriptionRequest> DescribeSpotDatafeedSubscriptionRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeSnapshotsRequest> DescribeSnapshotsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeSnapshotAttributeRequest> DescribeSnapshotAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeSecurityGroupsRequest> DescribeSecurityGroupsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeRouteTablesRequest> DescribeRouteTablesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeReservedInstancesRequest> DescribeReservedInstancesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeReservedInstancesOfferingsRequest> DescribeReservedInstancesOfferingsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeRegionsRequest> DescribeRegionsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribePlacementGroupsRequest> DescribePlacementGroupsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeNetworkInterfacesRequest> DescribeNetworkInterfacesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeNetworkInterfaceAttributeRequest> DescribeNetworkInterfaceAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeNetworkAclsRequest> DescribeNetworkAclsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeKeyPairsRequest> DescribeKeyPairsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeInternetGatewaysRequest> DescribeInternetGatewaysRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeInstanceStatusRequest> DescribeInstanceStatusRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeInstancesRequest> DescribeInstancesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeInstanceAttributeRequest> DescribeInstanceAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeImagesRequest> DescribeImagesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeImageAttributeRequest> DescribeImageAttributeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeDhcpOptionsRequest> DescribeDhcpOptionsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeCustomerGatewaysRequest> DescribeCustomerGatewaysRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeConversionTasksRequest> DescribeConversionTasksRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeBundleTasksRequest> DescribeBundleTasksRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeAvailabilityZonesRequest> DescribeAvailabilityZonesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeAddressesRequest> DescribeAddressesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DescribeAccountAttributesRequest> DescribeAccountAttributesRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeregisterImageRequest> DeregisterImageRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteVpnGatewayRequest> DeleteVpnGatewayRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteVpnConnectionRequest> DeleteVpnConnectionRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteVpcRequest> DeleteVpcRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteVpcPeeringConnectionRequest> DeleteVpcPeeringConnectionRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteVolumeRequest> DeleteVolumeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteTagsRequest> DeleteTagsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteSubnetRequest> DeleteSubnetRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteSpotDatafeedSubscriptionRequest> DeleteSpotDatafeedSubscriptionRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteSnapshotRequest> DeleteSnapshotRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteSecurityGroupRequest> DeleteSecurityGroupRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteRouteTableRequest> DeleteRouteTableRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteRouteRequest> DeleteRouteRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeletePlacementGroupRequest> DeletePlacementGroupRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteNetworkInterfaceRequest> DeleteNetworkInterfaceRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteNetworkAclRequest> DeleteNetworkAclRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteNetworkAclEntryRequest> DeleteNetworkAclEntryRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteKeyPairRequest> DeleteKeyPairRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteInternetGatewayRequest> DeleteInternetGatewayRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteDhcpOptionsRequest> DeleteDhcpOptionsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<DeleteCustomerGatewayRequest> DeleteCustomerGatewayRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateVpnGatewayRequest> CreateVpnGatewayRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateVpnConnectionRequest> CreateVpnConnectionRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateVpcRequest> CreateVpcRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateVpcPeeringConnectionRequest> CreateVpcPeeringConnectionRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateVolumeRequest> CreateVolumeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateTagsRequest> CreateTagsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateSubnetRequest> CreateSubnetRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateSpotDatafeedSubscriptionRequest> CreateSpotDatafeedSubscriptionRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateSnapshotRequest> CreateSnapshotRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateSecurityGroupRequest> CreateSecurityGroupRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateRouteTableRequest> CreateRouteTableRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateRouteRequest> CreateRouteRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreatePlacementGroupRequest> CreatePlacementGroupRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateNetworkInterfaceRequest> CreateNetworkInterfaceRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateNetworkAclRequest> CreateNetworkAclRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateNetworkAclEntryRequest> CreateNetworkAclEntryRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateKeyPairRequest> CreateKeyPairRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateInternetGatewayRequest> CreateInternetGatewayRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateImageRequest> CreateImageRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateDhcpOptionsRequest> CreateDhcpOptionsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CreateCustomerGatewayRequest> CreateCustomerGatewayRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CopySnapshotRequest> CopySnapshotRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CopyImageRequest> CopyImageRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<ConfirmProductInstanceRequest> ConfirmProductInstanceRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CancelSpotInstanceRequestsRequest> CancelSpotInstanceRequestsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CancelConversionTaskRequest> CancelConversionTaskRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<CancelBundleTaskRequest> CancelBundleTaskRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<BundleInstanceRequest> BundleInstanceRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<AuthorizeSecurityGroupIngressRequest> AuthorizeSecurityGroupIngressRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<AuthorizeSecurityGroupEgressRequest> AuthorizeSecurityGroupEgressRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<AttachVpnGatewayRequest> AttachVpnGatewayRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<AttachVolumeRequest> AttachVolumeRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<AttachNetworkInterfaceRequest> AttachNetworkInterfaceRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<AttachInternetGatewayRequest> AttachInternetGatewayRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<AssociateRouteTableRequest> AssociateRouteTableRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<AssociateDhcpOptionsRequest> AssociateDhcpOptionsRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<AssociateAddressRequest> AssociateAddressRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<AllocateAddressRequest> AllocateAddressRequest.getDryRunRequest()
          This method is intended for internal use only.
 Request<AcceptVpcPeeringConnectionRequest> AcceptVpcPeeringConnectionRequest.getDryRunRequest()
          This method is intended for internal use only.
 

Uses of Request in com.amazonaws.services.s3
 

Methods in com.amazonaws.services.s3 that return Request
protected
<X extends AmazonWebServiceRequest>
Request<X>
AmazonS3Client.createRequest(String bucketName, String key, X originalRequest, HttpMethodName httpMethod)
          Creates and initializes a new request object for the specified S3 resource.
 

Methods in com.amazonaws.services.s3 with parameters of type Request
protected  Signer AmazonS3Client.createSigner(Request<?> request, String bucketName, String key)
          Returns a "complete" S3 specific signer, taking into the S3 bucket, key, and the current S3 client configuration into account.
protected static void AmazonS3Client.populateRequestMetadata(Request<?> request, ObjectMetadata metadata)
           Populates the specified request object with the appropriate headers from the ObjectMetadata object.
protected
<T> void
AmazonS3Client.presignRequest(Request<T> request, HttpMethod methodName, String bucketName, String key, Date expiration, String subResource)
          Pre-signs the specified request, using a signature query-string parameter.
 

Uses of Request in com.amazonaws.services.sqs
 

Methods in com.amazonaws.services.sqs with parameters of type Request
 void MessageMD5ChecksumHandler.afterResponse(Request<?> request, Object response, TimingInfo timingInfo)
           
 void QueueUrlHandler.beforeRequest(Request<?> request)
           
 

Uses of Request in com.amazonaws.util
 

Methods in com.amazonaws.util with parameters of type Request
static String HttpUtils.encodeParameters(Request<?> request)
          Creates an encoded query string from all the parameters in the specified request.
static boolean HttpUtils.usePayloadForQueryParameters(Request<?> request)
           
 



Copyright © 2016. All rights reserved.