Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AppFabric

import { AppFabric } from "https://aws-api-bqtgftz736ft.deno.dev/v0.5/services/appfabric.ts?docs=full";
class AppFabric {
constructor(apiFactory: client.ApiFactory);
async batchGetUserAccessTasks(params: BatchGetUserAccessTasksRequest, opts?: client.RequestOptions): Promise<BatchGetUserAccessTasksResponse>;
async connectAppAuthorization(params: ConnectAppAuthorizationRequest, opts?: client.RequestOptions): Promise<ConnectAppAuthorizationResponse>;
async createAppAuthorization(params: CreateAppAuthorizationRequest, opts?: client.RequestOptions): Promise<CreateAppAuthorizationResponse>;
async createAppBundle(params?: CreateAppBundleRequest, opts?: client.RequestOptions): Promise<CreateAppBundleResponse>;
async createIngestion(params: CreateIngestionRequest, opts?: client.RequestOptions): Promise<CreateIngestionResponse>;
async createIngestionDestination(params: CreateIngestionDestinationRequest, opts?: client.RequestOptions): Promise<CreateIngestionDestinationResponse>;
async deleteAppAuthorization(params: DeleteAppAuthorizationRequest, opts?: client.RequestOptions): Promise<void>;
async deleteAppBundle(params: DeleteAppBundleRequest, opts?: client.RequestOptions): Promise<void>;
async deleteIngestion(params: DeleteIngestionRequest, opts?: client.RequestOptions): Promise<void>;
async deleteIngestionDestination(params: DeleteIngestionDestinationRequest, opts?: client.RequestOptions): Promise<void>;
async getAppAuthorization(params: GetAppAuthorizationRequest, opts?: client.RequestOptions): Promise<GetAppAuthorizationResponse>;
async getAppBundle(params: GetAppBundleRequest, opts?: client.RequestOptions): Promise<GetAppBundleResponse>;
async getIngestion(params: GetIngestionRequest, opts?: client.RequestOptions): Promise<GetIngestionResponse>;
async getIngestionDestination(params: GetIngestionDestinationRequest, opts?: client.RequestOptions): Promise<GetIngestionDestinationResponse>;
async listAppAuthorizations(params: ListAppAuthorizationsRequest, opts?: client.RequestOptions): Promise<ListAppAuthorizationsResponse>;
async listAppBundles(params?: ListAppBundlesRequest, opts?: client.RequestOptions): Promise<ListAppBundlesResponse>;
async listIngestionDestinations(params: ListIngestionDestinationsRequest, opts?: client.RequestOptions): Promise<ListIngestionDestinationsResponse>;
async listIngestions(params: ListIngestionsRequest, opts?: client.RequestOptions): Promise<ListIngestionsResponse>;
async listTagsForResource(params: ListTagsForResourceRequest, opts?: client.RequestOptions): Promise<ListTagsForResourceResponse>;
async startIngestion(params: StartIngestionRequest, opts?: client.RequestOptions): Promise<void>;
async startUserAccessTasks(params: StartUserAccessTasksRequest, opts?: client.RequestOptions): Promise<StartUserAccessTasksResponse>;
async stopIngestion(params: StopIngestionRequest, opts?: client.RequestOptions): Promise<void>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async updateAppAuthorization(params: UpdateAppAuthorizationRequest, opts?: client.RequestOptions): Promise<UpdateAppAuthorizationResponse>;
async updateIngestionDestination(params: UpdateIngestionDestinationRequest, opts?: client.RequestOptions): Promise<UpdateIngestionDestinationResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new AppFabric(apiFactory: client.ApiFactory)
[src]

§Methods

§

Gets user access details in a batch request.

This action polls data from the tasks that are kicked off by the StartUserAccessTasks action.

§

Establishes a connection between Amazon Web Services AppFabric and an application, which allows AppFabric to call the APIs of the application.

§

Creates an app authorization within an app bundle, which allows AppFabric to connect to an application.

§

Creates an app bundle to collect data from an application using AppFabric.

§

Creates a data ingestion for an application.

§

Creates an ingestion destination, which specifies how an application's ingested data is processed by Amazon Web Services AppFabric and where it's delivered.

§
deleteAppAuthorization(params: DeleteAppAuthorizationRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes an app authorization. You must delete the associated ingestion before you can delete an app authorization.

§
deleteAppBundle(params: DeleteAppBundleRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes an app bundle. You must delete all associated app authorizations before you can delete an app bundle.

§
deleteIngestion(params: DeleteIngestionRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes an ingestion. You must stop (disable) the ingestion and you must delete all associated ingestion destinations before you can delete an app ingestion.

§
deleteIngestionDestination(params: DeleteIngestionDestinationRequest, opts?: client.RequestOptions): Promise<void>
[src]

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.

§

Returns information about an app authorization.

§

Returns information about an app bundle.

§

Returns information about an ingestion.

§

Returns information about an ingestion destination.

§

Returns a list of all app authorizations configured for an app bundle.

§

Returns a list of app bundles.

§

Returns a list of all ingestion destinations configured for an ingestion.

§

Returns a list of all ingestions configured for an app bundle.

§

Returns a list of tags for a resource.

§
startIngestion(params: StartIngestionRequest, opts?: client.RequestOptions): Promise<void>
[src]

Starts (enables) an ingestion, which collects data from an application.

§

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.

§
stopIngestion(params: StopIngestionRequest, opts?: client.RequestOptions): Promise<void>
[src]

Stops (disables) an ingestion.

§
tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Assigns one or more tags (key-value pairs) to the specified resource.

§
untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Removes a tag or tags from a resource.

§

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.

§

Updates an ingestion destination, which specifies how an application's ingested data is processed by Amazon Web Services AppFabric and where it's delivered.

§Static Properties