com.amazonaws.services.appfabric.AWSAppFabricAsync Maven / Gradle / Ivy
Show all versions of aws-java-sdk-appfabric Show documentation
/*
* Copyright 2019-2024 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.appfabric;
import javax.annotation.Generated;
import com.amazonaws.services.appfabric.model.*;
/**
* Interface for accessing AppFabric asynchronously. Each asynchronous method will return a Java Future object
* representing the asynchronous operation; overloads which accept an {@code AsyncHandler} can be used to receive
* notification when an asynchronous operation completes.
*
* Note: Do not directly implement this interface, new methods are added to it regularly. Extend from
* {@link com.amazonaws.services.appfabric.AbstractAWSAppFabricAsync} instead.
*
*
*
* Amazon Web Services AppFabric quickly connects software as a service (SaaS) applications across your organization.
* This allows IT and security teams to easily manage and secure applications using a standard schema, and employees can
* complete everyday tasks faster using generative artificial intelligence (AI). You can use these APIs to complete
* AppFabric tasks, such as setting up audit log ingestions or viewing user access. For more information about
* AppFabric, including the required permissions to use the service, see the Amazon Web Services AppFabric Administration
* Guide. For more information about using the Command Line Interface (CLI) to manage your AppFabric resources, see
* the AppFabric section of the CLI
* Reference.
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public interface AWSAppFabricAsync extends AWSAppFabric {
/**
*
* Gets user access details in a batch request.
*
*
* This action polls data from the tasks that are kicked off by the StartUserAccessTasks
action.
*
*
* @param batchGetUserAccessTasksRequest
* @return A Java Future containing the result of the BatchGetUserAccessTasks operation returned by the service.
* @sample AWSAppFabricAsync.BatchGetUserAccessTasks
* @see AWS API Documentation
*/
java.util.concurrent.Future batchGetUserAccessTasksAsync(BatchGetUserAccessTasksRequest batchGetUserAccessTasksRequest);
/**
*
* Gets user access details in a batch request.
*
*
* This action polls data from the tasks that are kicked off by the StartUserAccessTasks
action.
*
*
* @param batchGetUserAccessTasksRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the BatchGetUserAccessTasks operation returned by the service.
* @sample AWSAppFabricAsyncHandler.BatchGetUserAccessTasks
* @see AWS API Documentation
*/
java.util.concurrent.Future batchGetUserAccessTasksAsync(BatchGetUserAccessTasksRequest batchGetUserAccessTasksRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Establishes a connection between Amazon Web Services AppFabric and an application, which allows AppFabric to call
* the APIs of the application.
*
*
* @param connectAppAuthorizationRequest
* @return A Java Future containing the result of the ConnectAppAuthorization operation returned by the service.
* @sample AWSAppFabricAsync.ConnectAppAuthorization
* @see AWS API Documentation
*/
java.util.concurrent.Future connectAppAuthorizationAsync(ConnectAppAuthorizationRequest connectAppAuthorizationRequest);
/**
*
* Establishes a connection between Amazon Web Services AppFabric and an application, which allows AppFabric to call
* the APIs of the application.
*
*
* @param connectAppAuthorizationRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the ConnectAppAuthorization operation returned by the service.
* @sample AWSAppFabricAsyncHandler.ConnectAppAuthorization
* @see AWS API Documentation
*/
java.util.concurrent.Future connectAppAuthorizationAsync(ConnectAppAuthorizationRequest connectAppAuthorizationRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Creates an app authorization within an app bundle, which allows AppFabric to connect to an application.
*
*
* @param createAppAuthorizationRequest
* @return A Java Future containing the result of the CreateAppAuthorization operation returned by the service.
* @sample AWSAppFabricAsync.CreateAppAuthorization
* @see AWS API Documentation
*/
java.util.concurrent.Future createAppAuthorizationAsync(CreateAppAuthorizationRequest createAppAuthorizationRequest);
/**
*
* Creates an app authorization within an app bundle, which allows AppFabric to connect to an application.
*
*
* @param createAppAuthorizationRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateAppAuthorization operation returned by the service.
* @sample AWSAppFabricAsyncHandler.CreateAppAuthorization
* @see AWS API Documentation
*/
java.util.concurrent.Future createAppAuthorizationAsync(CreateAppAuthorizationRequest createAppAuthorizationRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Creates an app bundle to collect data from an application using AppFabric.
*
*
* @param createAppBundleRequest
* @return A Java Future containing the result of the CreateAppBundle operation returned by the service.
* @sample AWSAppFabricAsync.CreateAppBundle
* @see AWS API
* Documentation
*/
java.util.concurrent.Future createAppBundleAsync(CreateAppBundleRequest createAppBundleRequest);
/**
*
* Creates an app bundle to collect data from an application using AppFabric.
*
*
* @param createAppBundleRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateAppBundle operation returned by the service.
* @sample AWSAppFabricAsyncHandler.CreateAppBundle
* @see AWS API
* Documentation
*/
java.util.concurrent.Future createAppBundleAsync(CreateAppBundleRequest createAppBundleRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Creates a data ingestion for an application.
*
*
* @param createIngestionRequest
* @return A Java Future containing the result of the CreateIngestion operation returned by the service.
* @sample AWSAppFabricAsync.CreateIngestion
* @see AWS API
* Documentation
*/
java.util.concurrent.Future createIngestionAsync(CreateIngestionRequest createIngestionRequest);
/**
*
* Creates a data ingestion for an application.
*
*
* @param createIngestionRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateIngestion operation returned by the service.
* @sample AWSAppFabricAsyncHandler.CreateIngestion
* @see AWS API
* Documentation
*/
java.util.concurrent.Future createIngestionAsync(CreateIngestionRequest createIngestionRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Creates an ingestion destination, which specifies how an application's ingested data is processed by Amazon Web
* Services AppFabric and where it's delivered.
*
*
* @param createIngestionDestinationRequest
* @return A Java Future containing the result of the CreateIngestionDestination operation returned by the service.
* @sample AWSAppFabricAsync.CreateIngestionDestination
* @see AWS API Documentation
*/
java.util.concurrent.Future createIngestionDestinationAsync(
CreateIngestionDestinationRequest createIngestionDestinationRequest);
/**
*
* Creates an ingestion destination, which specifies how an application's ingested data is processed by Amazon Web
* Services AppFabric and where it's delivered.
*
*
* @param createIngestionDestinationRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the CreateIngestionDestination operation returned by the service.
* @sample AWSAppFabricAsyncHandler.CreateIngestionDestination
* @see AWS API Documentation
*/
java.util.concurrent.Future createIngestionDestinationAsync(
CreateIngestionDestinationRequest createIngestionDestinationRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Deletes an app authorization. You must delete the associated ingestion before you can delete an app
* authorization.
*
*
* @param deleteAppAuthorizationRequest
* @return A Java Future containing the result of the DeleteAppAuthorization operation returned by the service.
* @sample AWSAppFabricAsync.DeleteAppAuthorization
* @see AWS API Documentation
*/
java.util.concurrent.Future deleteAppAuthorizationAsync(DeleteAppAuthorizationRequest deleteAppAuthorizationRequest);
/**
*
* Deletes an app authorization. You must delete the associated ingestion before you can delete an app
* authorization.
*
*
* @param deleteAppAuthorizationRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteAppAuthorization operation returned by the service.
* @sample AWSAppFabricAsyncHandler.DeleteAppAuthorization
* @see AWS API Documentation
*/
java.util.concurrent.Future deleteAppAuthorizationAsync(DeleteAppAuthorizationRequest deleteAppAuthorizationRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Deletes an app bundle. You must delete all associated app authorizations before you can delete an app bundle.
*
*
* @param deleteAppBundleRequest
* @return A Java Future containing the result of the DeleteAppBundle operation returned by the service.
* @sample AWSAppFabricAsync.DeleteAppBundle
* @see AWS API
* Documentation
*/
java.util.concurrent.Future deleteAppBundleAsync(DeleteAppBundleRequest deleteAppBundleRequest);
/**
*
* Deletes an app bundle. You must delete all associated app authorizations before you can delete an app bundle.
*
*
* @param deleteAppBundleRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteAppBundle operation returned by the service.
* @sample AWSAppFabricAsyncHandler.DeleteAppBundle
* @see AWS API
* Documentation
*/
java.util.concurrent.Future deleteAppBundleAsync(DeleteAppBundleRequest deleteAppBundleRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Deletes an ingestion. You must stop (disable) the ingestion and you must delete all associated ingestion
* destinations before you can delete an app ingestion.
*
*
* @param deleteIngestionRequest
* @return A Java Future containing the result of the DeleteIngestion operation returned by the service.
* @sample AWSAppFabricAsync.DeleteIngestion
* @see AWS API
* Documentation
*/
java.util.concurrent.Future deleteIngestionAsync(DeleteIngestionRequest deleteIngestionRequest);
/**
*
* Deletes an ingestion. You must stop (disable) the ingestion and you must delete all associated ingestion
* destinations before you can delete an app ingestion.
*
*
* @param deleteIngestionRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteIngestion operation returned by the service.
* @sample AWSAppFabricAsyncHandler.DeleteIngestion
* @see AWS API
* Documentation
*/
java.util.concurrent.Future deleteIngestionAsync(DeleteIngestionRequest deleteIngestionRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Deletes an ingestion destination.
*
*
* This deletes the association between an ingestion and it's destination. It doesn't delete previously ingested
* data or the storage destination, such as the Amazon S3 bucket where the data is delivered. If the ingestion
* destination is deleted while the associated ingestion is enabled, the ingestion will fail and is eventually
* disabled.
*
*
* @param deleteIngestionDestinationRequest
* @return A Java Future containing the result of the DeleteIngestionDestination operation returned by the service.
* @sample AWSAppFabricAsync.DeleteIngestionDestination
* @see AWS API Documentation
*/
java.util.concurrent.Future deleteIngestionDestinationAsync(
DeleteIngestionDestinationRequest deleteIngestionDestinationRequest);
/**
*
* Deletes an ingestion destination.
*
*
* This deletes the association between an ingestion and it's destination. It doesn't delete previously ingested
* data or the storage destination, such as the Amazon S3 bucket where the data is delivered. If the ingestion
* destination is deleted while the associated ingestion is enabled, the ingestion will fail and is eventually
* disabled.
*
*
* @param deleteIngestionDestinationRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the DeleteIngestionDestination operation returned by the service.
* @sample AWSAppFabricAsyncHandler.DeleteIngestionDestination
* @see AWS API Documentation
*/
java.util.concurrent.Future deleteIngestionDestinationAsync(
DeleteIngestionDestinationRequest deleteIngestionDestinationRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Returns information about an app authorization.
*
*
* @param getAppAuthorizationRequest
* @return A Java Future containing the result of the GetAppAuthorization operation returned by the service.
* @sample AWSAppFabricAsync.GetAppAuthorization
* @see AWS
* API Documentation
*/
java.util.concurrent.Future getAppAuthorizationAsync(GetAppAuthorizationRequest getAppAuthorizationRequest);
/**
*
* Returns information about an app authorization.
*
*
* @param getAppAuthorizationRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the GetAppAuthorization operation returned by the service.
* @sample AWSAppFabricAsyncHandler.GetAppAuthorization
* @see AWS
* API Documentation
*/
java.util.concurrent.Future getAppAuthorizationAsync(GetAppAuthorizationRequest getAppAuthorizationRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Returns information about an app bundle.
*
*
* @param getAppBundleRequest
* @return A Java Future containing the result of the GetAppBundle operation returned by the service.
* @sample AWSAppFabricAsync.GetAppBundle
* @see AWS API
* Documentation
*/
java.util.concurrent.Future getAppBundleAsync(GetAppBundleRequest getAppBundleRequest);
/**
*
* Returns information about an app bundle.
*
*
* @param getAppBundleRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the GetAppBundle operation returned by the service.
* @sample AWSAppFabricAsyncHandler.GetAppBundle
* @see AWS API
* Documentation
*/
java.util.concurrent.Future getAppBundleAsync(GetAppBundleRequest getAppBundleRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Returns information about an ingestion.
*
*
* @param getIngestionRequest
* @return A Java Future containing the result of the GetIngestion operation returned by the service.
* @sample AWSAppFabricAsync.GetIngestion
* @see AWS API
* Documentation
*/
java.util.concurrent.Future getIngestionAsync(GetIngestionRequest getIngestionRequest);
/**
*
* Returns information about an ingestion.
*
*
* @param getIngestionRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the GetIngestion operation returned by the service.
* @sample AWSAppFabricAsyncHandler.GetIngestion
* @see AWS API
* Documentation
*/
java.util.concurrent.Future getIngestionAsync(GetIngestionRequest getIngestionRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Returns information about an ingestion destination.
*
*
* @param getIngestionDestinationRequest
* @return A Java Future containing the result of the GetIngestionDestination operation returned by the service.
* @sample AWSAppFabricAsync.GetIngestionDestination
* @see AWS API Documentation
*/
java.util.concurrent.Future getIngestionDestinationAsync(GetIngestionDestinationRequest getIngestionDestinationRequest);
/**
*
* Returns information about an ingestion destination.
*
*
* @param getIngestionDestinationRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the GetIngestionDestination operation returned by the service.
* @sample AWSAppFabricAsyncHandler.GetIngestionDestination
* @see AWS API Documentation
*/
java.util.concurrent.Future getIngestionDestinationAsync(GetIngestionDestinationRequest getIngestionDestinationRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Returns a list of all app authorizations configured for an app bundle.
*
*
* @param listAppAuthorizationsRequest
* @return A Java Future containing the result of the ListAppAuthorizations operation returned by the service.
* @sample AWSAppFabricAsync.ListAppAuthorizations
* @see AWS API Documentation
*/
java.util.concurrent.Future listAppAuthorizationsAsync(ListAppAuthorizationsRequest listAppAuthorizationsRequest);
/**
*
* Returns a list of all app authorizations configured for an app bundle.
*
*
* @param listAppAuthorizationsRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the ListAppAuthorizations operation returned by the service.
* @sample AWSAppFabricAsyncHandler.ListAppAuthorizations
* @see AWS API Documentation
*/
java.util.concurrent.Future listAppAuthorizationsAsync(ListAppAuthorizationsRequest listAppAuthorizationsRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Returns a list of app bundles.
*
*
* @param listAppBundlesRequest
* @return A Java Future containing the result of the ListAppBundles operation returned by the service.
* @sample AWSAppFabricAsync.ListAppBundles
* @see AWS API
* Documentation
*/
java.util.concurrent.Future listAppBundlesAsync(ListAppBundlesRequest listAppBundlesRequest);
/**
*
* Returns a list of app bundles.
*
*
* @param listAppBundlesRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the ListAppBundles operation returned by the service.
* @sample AWSAppFabricAsyncHandler.ListAppBundles
* @see AWS API
* Documentation
*/
java.util.concurrent.Future listAppBundlesAsync(ListAppBundlesRequest listAppBundlesRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Returns a list of all ingestion destinations configured for an ingestion.
*
*
* @param listIngestionDestinationsRequest
* @return A Java Future containing the result of the ListIngestionDestinations operation returned by the service.
* @sample AWSAppFabricAsync.ListIngestionDestinations
* @see AWS API Documentation
*/
java.util.concurrent.Future listIngestionDestinationsAsync(
ListIngestionDestinationsRequest listIngestionDestinationsRequest);
/**
*
* Returns a list of all ingestion destinations configured for an ingestion.
*
*
* @param listIngestionDestinationsRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the ListIngestionDestinations operation returned by the service.
* @sample AWSAppFabricAsyncHandler.ListIngestionDestinations
* @see AWS API Documentation
*/
java.util.concurrent.Future listIngestionDestinationsAsync(
ListIngestionDestinationsRequest listIngestionDestinationsRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Returns a list of all ingestions configured for an app bundle.
*
*
* @param listIngestionsRequest
* @return A Java Future containing the result of the ListIngestions operation returned by the service.
* @sample AWSAppFabricAsync.ListIngestions
* @see AWS API
* Documentation
*/
java.util.concurrent.Future listIngestionsAsync(ListIngestionsRequest listIngestionsRequest);
/**
*
* Returns a list of all ingestions configured for an app bundle.
*
*
* @param listIngestionsRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the ListIngestions operation returned by the service.
* @sample AWSAppFabricAsyncHandler.ListIngestions
* @see AWS API
* Documentation
*/
java.util.concurrent.Future listIngestionsAsync(ListIngestionsRequest listIngestionsRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Returns a list of tags for a resource.
*
*
* @param listTagsForResourceRequest
* @return A Java Future containing the result of the ListTagsForResource operation returned by the service.
* @sample AWSAppFabricAsync.ListTagsForResource
* @see AWS
* API Documentation
*/
java.util.concurrent.Future listTagsForResourceAsync(ListTagsForResourceRequest listTagsForResourceRequest);
/**
*
* Returns a list of tags for a resource.
*
*
* @param listTagsForResourceRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the ListTagsForResource operation returned by the service.
* @sample AWSAppFabricAsyncHandler.ListTagsForResource
* @see AWS
* API Documentation
*/
java.util.concurrent.Future listTagsForResourceAsync(ListTagsForResourceRequest listTagsForResourceRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Starts (enables) an ingestion, which collects data from an application.
*
*
* @param startIngestionRequest
* @return A Java Future containing the result of the StartIngestion operation returned by the service.
* @sample AWSAppFabricAsync.StartIngestion
* @see AWS API
* Documentation
*/
java.util.concurrent.Future startIngestionAsync(StartIngestionRequest startIngestionRequest);
/**
*
* Starts (enables) an ingestion, which collects data from an application.
*
*
* @param startIngestionRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the StartIngestion operation returned by the service.
* @sample AWSAppFabricAsyncHandler.StartIngestion
* @see AWS API
* Documentation
*/
java.util.concurrent.Future startIngestionAsync(StartIngestionRequest startIngestionRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Starts the tasks to search user access status for a specific email address.
*
*
* The tasks are stopped when the user access status data is found. The tasks are terminated when the API calls to
* the application time out.
*
*
* @param startUserAccessTasksRequest
* @return A Java Future containing the result of the StartUserAccessTasks operation returned by the service.
* @sample AWSAppFabricAsync.StartUserAccessTasks
* @see AWS
* API Documentation
*/
java.util.concurrent.Future startUserAccessTasksAsync(StartUserAccessTasksRequest startUserAccessTasksRequest);
/**
*
* Starts the tasks to search user access status for a specific email address.
*
*
* The tasks are stopped when the user access status data is found. The tasks are terminated when the API calls to
* the application time out.
*
*
* @param startUserAccessTasksRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the StartUserAccessTasks operation returned by the service.
* @sample AWSAppFabricAsyncHandler.StartUserAccessTasks
* @see AWS
* API Documentation
*/
java.util.concurrent.Future startUserAccessTasksAsync(StartUserAccessTasksRequest startUserAccessTasksRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Stops (disables) an ingestion.
*
*
* @param stopIngestionRequest
* @return A Java Future containing the result of the StopIngestion operation returned by the service.
* @sample AWSAppFabricAsync.StopIngestion
* @see AWS API
* Documentation
*/
java.util.concurrent.Future stopIngestionAsync(StopIngestionRequest stopIngestionRequest);
/**
*
* Stops (disables) an ingestion.
*
*
* @param stopIngestionRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the StopIngestion operation returned by the service.
* @sample AWSAppFabricAsyncHandler.StopIngestion
* @see AWS API
* Documentation
*/
java.util.concurrent.Future stopIngestionAsync(StopIngestionRequest stopIngestionRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Assigns one or more tags (key-value pairs) to the specified resource.
*
*
* @param tagResourceRequest
* @return A Java Future containing the result of the TagResource operation returned by the service.
* @sample AWSAppFabricAsync.TagResource
* @see AWS API
* Documentation
*/
java.util.concurrent.Future tagResourceAsync(TagResourceRequest tagResourceRequest);
/**
*
* Assigns one or more tags (key-value pairs) to the specified resource.
*
*
* @param tagResourceRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the TagResource operation returned by the service.
* @sample AWSAppFabricAsyncHandler.TagResource
* @see AWS API
* Documentation
*/
java.util.concurrent.Future tagResourceAsync(TagResourceRequest tagResourceRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Removes a tag or tags from a resource.
*
*
* @param untagResourceRequest
* @return A Java Future containing the result of the UntagResource operation returned by the service.
* @sample AWSAppFabricAsync.UntagResource
* @see AWS API
* Documentation
*/
java.util.concurrent.Future untagResourceAsync(UntagResourceRequest untagResourceRequest);
/**
*
* Removes a tag or tags from a resource.
*
*
* @param untagResourceRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the UntagResource operation returned by the service.
* @sample AWSAppFabricAsyncHandler.UntagResource
* @see AWS API
* Documentation
*/
java.util.concurrent.Future untagResourceAsync(UntagResourceRequest untagResourceRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Updates an app authorization within an app bundle, which allows AppFabric to connect to an application.
*
*
* If the app authorization was in a connected
state, updating the app authorization will set it back
* to a PendingConnect
state.
*
*
* @param updateAppAuthorizationRequest
* @return A Java Future containing the result of the UpdateAppAuthorization operation returned by the service.
* @sample AWSAppFabricAsync.UpdateAppAuthorization
* @see AWS API Documentation
*/
java.util.concurrent.Future updateAppAuthorizationAsync(UpdateAppAuthorizationRequest updateAppAuthorizationRequest);
/**
*
* Updates an app authorization within an app bundle, which allows AppFabric to connect to an application.
*
*
* If the app authorization was in a connected
state, updating the app authorization will set it back
* to a PendingConnect
state.
*
*
* @param updateAppAuthorizationRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the UpdateAppAuthorization operation returned by the service.
* @sample AWSAppFabricAsyncHandler.UpdateAppAuthorization
* @see AWS API Documentation
*/
java.util.concurrent.Future updateAppAuthorizationAsync(UpdateAppAuthorizationRequest updateAppAuthorizationRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
/**
*
* Updates an ingestion destination, which specifies how an application's ingested data is processed by Amazon Web
* Services AppFabric and where it's delivered.
*
*
* @param updateIngestionDestinationRequest
* @return A Java Future containing the result of the UpdateIngestionDestination operation returned by the service.
* @sample AWSAppFabricAsync.UpdateIngestionDestination
* @see AWS API Documentation
*/
java.util.concurrent.Future updateIngestionDestinationAsync(
UpdateIngestionDestinationRequest updateIngestionDestinationRequest);
/**
*
* Updates an ingestion destination, which specifies how an application's ingested data is processed by Amazon Web
* Services AppFabric and where it's delivered.
*
*
* @param updateIngestionDestinationRequest
* @param asyncHandler
* Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
* implementation of the callback methods in this interface to receive notification of successful or
* unsuccessful completion of the operation.
* @return A Java Future containing the result of the UpdateIngestionDestination operation returned by the service.
* @sample AWSAppFabricAsyncHandler.UpdateIngestionDestination
* @see AWS API Documentation
*/
java.util.concurrent.Future updateIngestionDestinationAsync(
UpdateIngestionDestinationRequest updateIngestionDestinationRequest,
com.amazonaws.handlers.AsyncHandler asyncHandler);
}