All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.kinesisvideoarchivedmedia.AWSKinesisVideoArchivedMediaClient Maven / Gradle / Ivy

Go to download

The AWS Android SDK for Amazon Kinesis Video Streams Archived Media module holds the client classes that are used for communicating with Amazon Kinesis Video Streams Service Archived Media

There is a newer version: 2.77.0
Show newest version
/*
 * Copyright 2010-2019 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.services.kinesisvideoarchivedmedia;

import java.util.*;

import com.amazonaws.*;
import com.amazonaws.auth.*;
import com.amazonaws.handlers.*;
import com.amazonaws.http.*;
import com.amazonaws.internal.*;
import com.amazonaws.metrics.*;
import com.amazonaws.transform.*;
import com.amazonaws.util.*;
import com.amazonaws.util.AWSRequestMetrics.Field;

import com.amazonaws.services.kinesisvideoarchivedmedia.model.*;
import com.amazonaws.services.kinesisvideoarchivedmedia.model.transform.*;

/**
 * Client for accessing AWSKinesisVideoFrontend. All service calls made using
 * this client are blocking, and will not return until the service call
 * completes.
 * 

*

*/ public class AWSKinesisVideoArchivedMediaClient extends AmazonWebServiceClient implements AWSKinesisVideoArchivedMedia { /** Provider for AWS credentials. */ private AWSCredentialsProvider awsCredentialsProvider; /** * List of exception unmarshallers for all AWSKinesisVideoFrontend * exceptions. */ protected List jsonErrorUnmarshallers; /** * Constructs a new client to invoke service methods on * AWSKinesisVideoArchivedMedia. A credentials provider chain will be used * that searches for credentials in this order: *

    *
  • Environment Variables - AWS_ACCESS_KEY_ID and AWS_SECRET_KEY
  • *
  • Java System Properties - aws.accessKeyId and aws.secretKey
  • *
  • Instance profile credentials delivered through the Amazon EC2 * metadata service
  • *
*

* All service calls made using this new client object are blocking, and * will not return until the service call completes. * * @see DefaultAWSCredentialsProviderChain */ @Deprecated public AWSKinesisVideoArchivedMediaClient() { this(new DefaultAWSCredentialsProviderChain(), new ClientConfiguration()); } /** * Constructs a new client to invoke service methods on * AWSKinesisVideoArchivedMedia. A credentials provider chain will be used * that searches for credentials in this order: *

    *
  • Environment Variables - AWS_ACCESS_KEY_ID and AWS_SECRET_KEY
  • *
  • Java System Properties - aws.accessKeyId and aws.secretKey
  • *
  • Instance profile credentials delivered through the Amazon EC2 * metadata service
  • *
*

* All service calls made using this new client object are blocking, and * will not return until the service call completes. * * @param clientConfiguration The client configuration options controlling * how this client connects to AWSKinesisVideoArchivedMedia (ex: * proxy settings, retry counts, etc.). * @see DefaultAWSCredentialsProviderChain */ @Deprecated public AWSKinesisVideoArchivedMediaClient(ClientConfiguration clientConfiguration) { this(new DefaultAWSCredentialsProviderChain(), clientConfiguration); } /** * Constructs a new client to invoke service methods on * AWSKinesisVideoArchivedMedia using the specified AWS account credentials. *

* The client requests are authenticated using the {@link AWSCredentials} * provided in this constructor. Static AWSCredentials can be passed for * quick testing. However, it is strongly recommended to use Amazon Cognito * vended temporary credentials for use in production. This can be achieved * by using {@link AWSMobileClient}. Please see * https://aws-amplify.github.io/docs/android/authentication for * instructions on how to enable {@link AWSMobileClient}. * *

     * AWSMobileClient.getInstance().initialize(getApplicationContext(), new Callback<UserStateDetails>() {
     *     @Override
     *     public void onResult(final UserStateDetails details) {
     *         AWSKinesisVideoArchivedMediaClient client = new AWSKinesisVideoArchivedMediaClient(AWSMobileClient.getInstance());
     *     }
     *
     *     @Override
     *     public void onError(final Exception e) {
     *         e.printStackTrace();
     *     }
     * });
     * 
*

* All service calls made using this new client object are blocking, and * will not return until the service call completes. * * @param awsCredentials The AWS credentials (access key ID and secret key) * to use when authenticating with AWS services. */ public AWSKinesisVideoArchivedMediaClient(AWSCredentials awsCredentials) { this(awsCredentials, new ClientConfiguration()); } /** * Constructs a new client to invoke service methods on * AWSKinesisVideoArchivedMedia using the specified AWS account credentials * and client configuration options. *

* The client requests are authenticated using the {@link AWSCredentials} * provided in this constructor. Static AWSCredentials can be passed for * quick testing. However, it is strongly recommended to use Amazon Cognito * vended temporary credentials for use in production. This can be achieved * by using {@link AWSMobileClient}. Please see * https://aws-amplify.github.io/docs/android/authentication for * instructions on how to enable {@link AWSMobileClient}. * *

     * AWSMobileClient.getInstance().initialize(getApplicationContext(), new Callback<UserStateDetails>() {
     *     @Override
     *     public void onResult(final UserStateDetails details) {
     *         AWSKinesisVideoArchivedMediaClient client = new AWSKinesisVideoArchivedMediaClient(AWSMobileClient.getInstance());
     *     }
     *
     *     @Override
     *     public void onError(final Exception e) {
     *         e.printStackTrace();
     *     }
     * });
     * 
*

* All service calls made using this new client object are blocking, and * will not return until the service call completes. * * @param awsCredentials The AWS credentials (access key ID and secret key) * to use when authenticating with AWS services. * @param clientConfiguration The client configuration options controlling * how this client connects to AWSKinesisVideoArchivedMedia (ex: * proxy settings, retry counts, etc.). */ public AWSKinesisVideoArchivedMediaClient(AWSCredentials awsCredentials, ClientConfiguration clientConfiguration) { this(new StaticCredentialsProvider(awsCredentials), clientConfiguration); } /** * Constructs a new client to invoke service methods on * AWSKinesisVideoArchivedMedia using the specified AWS account credentials * provider. *

* The client requests are authenticated using the {@link AWSCredentials} * provided in this constructor. Static AWSCredentials can be passed for * quick testing. However, it is strongly recommended to use Amazon Cognito * vended temporary credentials for use in production. This can be achieved * by using {@link AWSMobileClient}. Please see * https://aws-amplify.github.io/docs/android/authentication for * instructions on how to enable {@link AWSMobileClient}. * *

     * AWSMobileClient.getInstance().initialize(getApplicationContext(), new Callback<UserStateDetails>() {
     *     @Override
     *     public void onResult(final UserStateDetails details) {
     *         AWSKinesisVideoArchivedMediaClient client = new AWSKinesisVideoArchivedMediaClient(AWSMobileClient.getInstance());
     *     }
     *
     *     @Override
     *     public void onError(final Exception e) {
     *         e.printStackTrace();
     *     }
     * });
     * 
*

* All service calls made using this new client object are blocking, and * will not return until the service call completes. * * @param awsCredentialsProvider The AWS credentials provider which will * provide credentials to authenticate requests with AWS * services. */ public AWSKinesisVideoArchivedMediaClient(AWSCredentialsProvider awsCredentialsProvider) { this(awsCredentialsProvider, new ClientConfiguration()); } /** * Constructs a new client to invoke service methods on * AWSKinesisVideoArchivedMedia using the specified AWS account credentials * provider and client configuration options. *

* The client requests are authenticated using the {@link AWSCredentials} * provided in this constructor. Static AWSCredentials can be passed for * quick testing. However, it is strongly recommended to use Amazon Cognito * vended temporary credentials for use in production. This can be achieved * by using {@link AWSMobileClient}. Please see * https://aws-amplify.github.io/docs/android/authentication for * instructions on how to enable {@link AWSMobileClient}. * *

     * AWSMobileClient.getInstance().initialize(getApplicationContext(), new Callback<UserStateDetails>() {
     *     @Override
     *     public void onResult(final UserStateDetails details) {
     *         AWSKinesisVideoArchivedMediaClient client = new AWSKinesisVideoArchivedMediaClient(AWSMobileClient.getInstance());
     *     }
     *
     *     @Override
     *     public void onError(final Exception e) {
     *         e.printStackTrace();
     *     }
     * });
     * 
*

* All service calls made using this new client object are blocking, and * will not return until the service call completes. * * @param awsCredentialsProvider The AWS credentials provider which will * provide credentials to authenticate requests with AWS * services. * @param clientConfiguration The client configuration options controlling * how this client connects to AWSKinesisVideoArchivedMedia (ex: * proxy settings, retry counts, etc.). */ public AWSKinesisVideoArchivedMediaClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration) { this(awsCredentialsProvider, clientConfiguration, new UrlHttpClient(clientConfiguration)); } /** * Constructs a new client to invoke service methods on * AWSKinesisVideoArchivedMedia using the specified AWS account credentials * provider, client configuration options and request metric collector. *

* All service calls made using this new client object are blocking, and * will not return until the service call completes. * * @param awsCredentialsProvider The AWS credentials provider which will * provide credentials to authenticate requests with AWS * services. * @param clientConfiguration The client configuration options controlling * how this client connects to AWSKinesisVideoArchivedMedia (ex: * proxy settings, retry counts, etc.). * @param requestMetricCollector optional request metric collector */ @Deprecated public AWSKinesisVideoArchivedMediaClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector) { super(adjustClientConfiguration(clientConfiguration), requestMetricCollector); this.awsCredentialsProvider = awsCredentialsProvider; init(); } /** * Constructs a new client to invoke service methods on * AWSKinesisVideoArchivedMedia using the specified AWS account credentials * provider, client configuration options and request metric collector. *

* All service calls made using this new client object are blocking, and * will not return until the service call completes. * * @param awsCredentialsProvider The AWS credentials provider which will * provide credentials to authenticate requests with AWS * services. * @param clientConfiguration The client configuration options controlling * how this client connects to AWSKinesisVideoArchivedMedia (ex: * proxy settings, retry counts, etc.). * @param httpClient A http client */ public AWSKinesisVideoArchivedMediaClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, HttpClient httpClient) { super(adjustClientConfiguration(clientConfiguration), httpClient); this.awsCredentialsProvider = awsCredentialsProvider; init(); } private void init() { jsonErrorUnmarshallers = new ArrayList(); jsonErrorUnmarshallers.add(new ClientLimitExceededExceptionUnmarshaller()); jsonErrorUnmarshallers.add(new InvalidArgumentExceptionUnmarshaller()); jsonErrorUnmarshallers.add(new InvalidCodecPrivateDataExceptionUnmarshaller()); jsonErrorUnmarshallers.add(new MissingCodecPrivateDataExceptionUnmarshaller()); jsonErrorUnmarshallers.add(new NoDataRetentionExceptionUnmarshaller()); jsonErrorUnmarshallers.add(new NotAuthorizedExceptionUnmarshaller()); jsonErrorUnmarshallers.add(new ResourceNotFoundExceptionUnmarshaller()); jsonErrorUnmarshallers.add(new UnsupportedStreamMediaTypeExceptionUnmarshaller()); jsonErrorUnmarshallers.add(new JsonErrorUnmarshaller()); // calling this.setEndPoint(...) will also modify the signer accordingly this.setEndpoint("https://kinesisvideo.us-west-2.amazonaws.com"); this.endpointPrefix = "kinesisvideo"; HandlerChainFactory chainFactory = new HandlerChainFactory(); requestHandler2s.addAll(chainFactory.newRequestHandlerChain( "/com/amazonaws/services/kinesisvideoarchivedmedia/request.handlers")); requestHandler2s.addAll(chainFactory.newRequestHandler2Chain( "/com/amazonaws/services/kinesisvideoarchivedmedia/request.handler2s")); } private static ClientConfiguration adjustClientConfiguration(ClientConfiguration orig) { ClientConfiguration config = orig; return config; } /** *

* Retrieves an HTTP Live Streaming (HLS) URL for the stream. The URL can * then be opened in a browser or media player to view the stream contents. *

*

* You must specify either the StreamName or the * StreamARN. *

*

* An Amazon Kinesis video stream has the following requirements for * providing data through HLS: *

*
    *
  • *

    * The media type must be video/h264. *

    *
  • *
  • *

    * Data retention must be greater than 0. *

    *
  • *
  • *

    * The fragments must contain codec private data in the AVC (Advanced Video * Coding) for H.264 format (MPEG-4 specification * ISO/IEC 14496-15). For information about adapting stream data to a * given format, see NAL Adaptation Flags. *

    *
  • *
*

* Kinesis Video Streams HLS sessions contain fragments in the fragmented * MPEG-4 form (also called fMP4 or CMAF), rather than the MPEG-2 form (also * called TS chunks, which the HLS specification also supports). For more * information about HLS fragment types, see the HLS specification. *

*

* The following procedure shows how to use HLS with Kinesis Video Streams: *

*
    *
  1. *

    * Get an endpoint using GetDataEndpoint, specifying * GET_HLS_STREAMING_SESSION_URL for the APIName * parameter. *

    *
  2. *
  3. *

    * Retrieve the HLS URL using GetHLSStreamingSessionURL. * Kinesis Video Streams creates an HLS streaming session to be used for * accessing content in a stream using the HLS protocol. * GetHLSStreamingSessionURL returns an authenticated URL (that * includes an encrypted session token) for the session's HLS master * playlist (the root resource needed for streaming with HLS). *

    * *

    * Don't share or store this token where an unauthorized entity could access * it. The token provides access to the content of the stream. Safeguard the * token with the same measures that you would use with your AWS * credentials. *

    *
    *

    * The media that is made available through the playlist consists only of * the requested stream, time range, and format. No other media data (such * as frames outside the requested window or alternate bit rates) is made * available. *

    *
  4. *
  5. *

    * Provide the URL (containing the encrypted session token) for the HLS * master playlist to a media player that supports the HLS protocol. Kinesis * Video Streams makes the HLS media playlist, initialization fragment, and * media fragments available through the master playlist URL. The * initialization fragment contains the codec private data for the stream, * and other data needed to set up the video decoder and renderer. The media * fragments contain H.264-encoded video frames and time stamps. *

    *
  6. *
  7. *

    * The media player receives the authenticated URL and requests stream * metadata and media data normally. When the media player requests data, it * calls the following actions: *

    *
      *
    • *

      * GetHLSMasterPlaylist: Retrieves an HLS master playlist, which * contains a URL for the GetHLSMediaPlaylist action, and * additional metadata for the media player, including estimated bit rate * and resolution. *

      *
    • *
    • *

      * GetHLSMediaPlaylist: Retrieves an HLS media playlist, which * contains a URL to access the MP4 intitialization fragment with the * GetMP4InitFragment action, and URLs to access the MP4 media * fragments with the GetMP4MediaFragment actions. The HLS * media playlist also contains metadata about the stream that the player * needs to play it, such as whether the PlaybackMode is * LIVE or ON_DEMAND. The HLS media playlist is * typically static for sessions with a PlaybackType of * ON_DEMAND. The HLS media playlist is continually updated * with new fragments for sessions with a PlaybackType of * LIVE. *

      *
    • *
    • *

      * GetMP4InitFragment: Retrieves the MP4 initialization fragment. The * media player typically loads the initialization fragment before loading * any media fragments. This fragment contains the "fytp" and " * moov" MP4 atoms, and the child atoms that are needed to * initialize the media player decoder. *

      *

      * The initialization fragment does not correspond to a fragment in a * Kinesis video stream. It contains only the codec private data for the * stream, which the media player needs to decode video frames. *

      *
    • *
    • *

      * GetMP4MediaFragment: Retrieves MP4 media fragments. These * fragments contain the "moof" and "mdat" MP4 * atoms and their child atoms, containing the encoded fragment's video * frames and their time stamps. *

      * *

      * After the first media fragment is made available in a streaming session, * any fragments that don't contain the same codec private data are excluded * in the HLS media playlist. Therefore, the codec private data does not * change between fragments in a session. *

      *
    • *
    *
  8. *
* *

* The following restrictions apply to HLS sessions: *

*
    *
  • *

    * A streaming session URL should not be shared between players. The service * might throttle a session if multiple media players are sharing it. For * connection limits, see Kinesis Video Streams Limits. *

    *
  • *
  • *

    * A Kinesis video stream can have a maximum of five active HLS streaming * sessions. If a new session is created when the maximum number of sessions * is already active, the oldest (earliest created) session is closed. The * number of active GetMedia connections on a Kinesis video * stream does not count against this limit, and the number of active HLS * sessions does not count against the active GetMedia * connection limit. *

    *
  • *
*
*

* You can monitor the amount of data that the media player consumes by * monitoring the GetMP4MediaFragment.OutgoingBytes Amazon * CloudWatch metric. For information about using CloudWatch to monitor * Kinesis Video Streams, see Monitoring Kinesis Video Streams. For pricing information, see Amazon * Kinesis Video Streams Pricing and AWS Pricing. Charges for both * HLS sessions and outgoing AWS data apply. *

*

* For more information about HLS, see HTTP Live Streaming on * the Apple Developer site. *

* * @param getHLSStreamingSessionURLRequest * @return getHLSStreamingSessionURLResult The response from the * GetHLSStreamingSessionURL service method, as returned by * AWSKinesisVideoFrontend. * @throws ResourceNotFoundException * @throws InvalidArgumentException * @throws ClientLimitExceededException * @throws NotAuthorizedException * @throws UnsupportedStreamMediaTypeException * @throws NoDataRetentionException * @throws MissingCodecPrivateDataException * @throws InvalidCodecPrivateDataException * @throws AmazonClientException If any internal errors are encountered * inside the client while attempting to make the request or * handle the response. For example if a network connection is * not available. * @throws AmazonServiceException If an error response is returned by * AWSKinesisVideoFrontend indicating either a problem with the * data in the request, or a server side issue. */ public GetHLSStreamingSessionURLResult getHLSStreamingSessionURL( GetHLSStreamingSessionURLRequest getHLSStreamingSessionURLRequest) throws AmazonServiceException, AmazonClientException { ExecutionContext executionContext = createExecutionContext(getHLSStreamingSessionURLRequest); AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics(); awsRequestMetrics.startEvent(Field.ClientExecuteTime); Request request = null; Response response = null; try { awsRequestMetrics.startEvent(Field.RequestMarshallTime); try { request = new GetHLSStreamingSessionURLRequestMarshaller() .marshall(getHLSStreamingSessionURLRequest); // Binds the request metrics to the current request. request.setAWSRequestMetrics(awsRequestMetrics); } finally { awsRequestMetrics.endEvent(Field.RequestMarshallTime); } Unmarshaller unmarshaller = new GetHLSStreamingSessionURLResultJsonUnmarshaller(); JsonResponseHandler responseHandler = new JsonResponseHandler( unmarshaller); response = invoke(request, responseHandler, executionContext); return response.getAwsResponse(); } finally { awsRequestMetrics.endEvent(Field.ClientExecuteTime); endClientExecution(awsRequestMetrics, request, response, LOGGING_AWS_REQUEST_METRIC); } } /** *

* Gets media for a list of fragments (specified by fragment number) from * the archived data in an Amazon Kinesis video stream. *

*

* The following limits apply when using the * GetMediaForFragmentList API: *

*
    *
  • *

    * A client can call GetMediaForFragmentList up to five times * per second per stream. *

    *
  • *
  • *

    * Kinesis Video Streams sends media data at a rate of up to 25 megabytes * per second (or 200 megabits per second) during a * GetMediaForFragmentList session. *

    *
  • *
* * @param getMediaForFragmentListRequest * @return getMediaForFragmentListResult The response from the * GetMediaForFragmentList service method, as returned by * AWSKinesisVideoFrontend. * @throws ResourceNotFoundException * @throws InvalidArgumentException * @throws ClientLimitExceededException * @throws NotAuthorizedException * @throws AmazonClientException If any internal errors are encountered * inside the client while attempting to make the request or * handle the response. For example if a network connection is * not available. * @throws AmazonServiceException If an error response is returned by * AWSKinesisVideoFrontend indicating either a problem with the * data in the request, or a server side issue. */ public GetMediaForFragmentListResult getMediaForFragmentList( GetMediaForFragmentListRequest getMediaForFragmentListRequest) throws AmazonServiceException, AmazonClientException { ExecutionContext executionContext = createExecutionContext(getMediaForFragmentListRequest); AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics(); awsRequestMetrics.startEvent(Field.ClientExecuteTime); Request request = null; Response response = null; try { awsRequestMetrics.startEvent(Field.RequestMarshallTime); try { request = new GetMediaForFragmentListRequestMarshaller() .marshall(getMediaForFragmentListRequest); // Binds the request metrics to the current request. request.setAWSRequestMetrics(awsRequestMetrics); } finally { awsRequestMetrics.endEvent(Field.RequestMarshallTime); } Unmarshaller unmarshaller = new GetMediaForFragmentListResultJsonUnmarshaller(); JsonResponseHandler responseHandler = new JsonResponseHandler( unmarshaller); response = invoke(request, responseHandler, executionContext); return response.getAwsResponse(); } finally { awsRequestMetrics.endEvent(Field.ClientExecuteTime); endClientExecution(awsRequestMetrics, request, response, LOGGING_AWS_REQUEST_METRIC); } } /** *

* Returns a list of Fragment objects from the specified stream and * start location within the archived data. *

* * @param listFragmentsRequest * @return listFragmentsResult The response from the ListFragments service * method, as returned by AWSKinesisVideoFrontend. * @throws ResourceNotFoundException * @throws InvalidArgumentException * @throws ClientLimitExceededException * @throws NotAuthorizedException * @throws AmazonClientException If any internal errors are encountered * inside the client while attempting to make the request or * handle the response. For example if a network connection is * not available. * @throws AmazonServiceException If an error response is returned by * AWSKinesisVideoFrontend indicating either a problem with the * data in the request, or a server side issue. */ public ListFragmentsResult listFragments(ListFragmentsRequest listFragmentsRequest) throws AmazonServiceException, AmazonClientException { ExecutionContext executionContext = createExecutionContext(listFragmentsRequest); AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics(); awsRequestMetrics.startEvent(Field.ClientExecuteTime); Request request = null; Response response = null; try { awsRequestMetrics.startEvent(Field.RequestMarshallTime); try { request = new ListFragmentsRequestMarshaller().marshall(listFragmentsRequest); // Binds the request metrics to the current request. request.setAWSRequestMetrics(awsRequestMetrics); } finally { awsRequestMetrics.endEvent(Field.RequestMarshallTime); } Unmarshaller unmarshaller = new ListFragmentsResultJsonUnmarshaller(); JsonResponseHandler responseHandler = new JsonResponseHandler( unmarshaller); response = invoke(request, responseHandler, executionContext); return response.getAwsResponse(); } finally { awsRequestMetrics.endEvent(Field.ClientExecuteTime); endClientExecution(awsRequestMetrics, request, response, LOGGING_AWS_REQUEST_METRIC); } } /** * Returns additional metadata for a previously executed successful, * request, typically used for debugging issues where a service isn't acting * as expected. This data isn't considered part of the result data returned * by an operation, so it's available through this separate, diagnostic * interface. *

* Response metadata is only cached for a limited period of time, so if you * need to access this extra diagnostic information for an executed request, * you should use this method to retrieve it as soon as possible after * executing the request. * * @param request The originally executed request * @return The response metadata for the specified request, or null if none * is available. * @deprecated ResponseMetadata cache can hold up to 50 requests and * responses in memory and will cause memory issue. This method * now always returns null. */ @Deprecated public ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request) { return client.getResponseMetadataForRequest(request); } private Response invoke(Request request, HttpResponseHandler> responseHandler, ExecutionContext executionContext) { request.setEndpoint(endpoint); request.setTimeOffset(timeOffset); AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics(); AWSCredentials credentials; awsRequestMetrics.startEvent(Field.CredentialsRequestTime); try { credentials = awsCredentialsProvider.getCredentials(); } finally { awsRequestMetrics.endEvent(Field.CredentialsRequestTime); } AmazonWebServiceRequest originalRequest = request.getOriginalRequest(); if (originalRequest != null && originalRequest.getRequestCredentials() != null) { credentials = originalRequest.getRequestCredentials(); } executionContext.setCredentials(credentials); JsonErrorResponseHandler errorResponseHandler = new JsonErrorResponseHandler( jsonErrorUnmarshallers); Response result = client.execute(request, responseHandler, errorResponseHandler, executionContext); return result; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy