Appfabric
This page documents function available when using the Appfabric
module, created with @service Appfabric
.
Index
Main.Appfabric.batch_get_user_access_tasks
Main.Appfabric.connect_app_authorization
Main.Appfabric.create_app_authorization
Main.Appfabric.create_app_bundle
Main.Appfabric.create_ingestion
Main.Appfabric.create_ingestion_destination
Main.Appfabric.delete_app_authorization
Main.Appfabric.delete_app_bundle
Main.Appfabric.delete_ingestion
Main.Appfabric.delete_ingestion_destination
Main.Appfabric.get_app_authorization
Main.Appfabric.get_app_bundle
Main.Appfabric.get_ingestion
Main.Appfabric.get_ingestion_destination
Main.Appfabric.list_app_authorizations
Main.Appfabric.list_app_bundles
Main.Appfabric.list_ingestion_destinations
Main.Appfabric.list_ingestions
Main.Appfabric.list_tags_for_resource
Main.Appfabric.start_ingestion
Main.Appfabric.start_user_access_tasks
Main.Appfabric.stop_ingestion
Main.Appfabric.tag_resource
Main.Appfabric.untag_resource
Main.Appfabric.update_app_authorization
Main.Appfabric.update_ingestion_destination
Documentation
Main.Appfabric.batch_get_user_access_tasks
— Methodbatch_get_user_access_tasks(app_bundle_identifier, task_id_list)
batch_get_user_access_tasks(app_bundle_identifier, task_id_list, params::Dict{String,<:Any})
Gets user access details in a batch request. This action polls data from the tasks that are kicked off by the StartUserAccessTasks action.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.task_id_list
: The tasks IDs to use for the request.
Main.Appfabric.connect_app_authorization
— Methodconnect_app_authorization(app_authorization_identifier, app_bundle_identifier)
connect_app_authorization(app_authorization_identifier, app_bundle_identifier, params::Dict{String,<:Any})
Establishes a connection between Amazon Web Services AppFabric and an application, which allows AppFabric to call the APIs of the application.
Arguments
app_authorization_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle that contains the app authorization to use for the request.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"authRequest"
: Contains OAuth2 authorization information. This is required if the app authorization for the request is configured with an OAuth2 (oauth2) authorization type.
Main.Appfabric.create_app_authorization
— Methodcreate_app_authorization(app, app_bundle_identifier, auth_type, credential, tenant)
create_app_authorization(app, app_bundle_identifier, auth_type, credential, tenant, params::Dict{String,<:Any})
Creates an app authorization within an app bundle, which allows AppFabric to connect to an application.
Arguments
app
: The name of the application. Valid values are: SLACK ASANA JIRA M365 M365AUDITLOGS ZOOM ZENDESK OKTA GOOGLE DROPBOX SMARTSHEET CISCOapp_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.auth_type
: The authorization type for the app authorization.credential
: Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.tenant
: Contains information about an application tenant, such as the application display name and identifier.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value. If you don't provide this value, then Amazon Web Services generates a random one for you. If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error."tags"
: A map of the key-value pairs of the tag or tags to assign to the resource.
Main.Appfabric.create_app_bundle
— Methodcreate_app_bundle()
create_app_bundle(params::Dict{String,<:Any})
Creates an app bundle to collect data from an application using AppFabric.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value. If you don't provide this value, then Amazon Web Services generates a random one for you. If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error."customerManagedKeyIdentifier"
: The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data. If this is not specified, an Amazon Web Services owned key is used for encryption."tags"
: A map of the key-value pairs of the tag or tags to assign to the resource.
Main.Appfabric.create_ingestion
— Methodcreate_ingestion(app, app_bundle_identifier, ingestion_type, tenant_id)
create_ingestion(app, app_bundle_identifier, ingestion_type, tenant_id, params::Dict{String,<:Any})
Creates a data ingestion for an application.
Arguments
app
: The name of the application. Valid values are: SLACK ASANA JIRA M365 M365AUDITLOGS ZOOM ZENDESK OKTA GOOGLE DROPBOX SMARTSHEET CISCOapp_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.ingestion_type
: The ingestion type.tenant_id
: The ID of the application tenant.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value. If you don't provide this value, then Amazon Web Services generates a random one for you. If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error."tags"
: A map of the key-value pairs of the tag or tags to assign to the resource.
Main.Appfabric.create_ingestion_destination
— Methodcreate_ingestion_destination(app_bundle_identifier, destination_configuration, ingestion_identifier, processing_configuration)
create_ingestion_destination(app_bundle_identifier, destination_configuration, ingestion_identifier, processing_configuration, params::Dict{String,<:Any})
Creates an ingestion destination, which specifies how an application's ingested data is processed by Amazon Web Services AppFabric and where it's delivered.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.destination_configuration
: Contains information about the destination of ingested data.ingestion_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.processing_configuration
: Contains information about how ingested data is processed.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value. If you don't provide this value, then Amazon Web Services generates a random one for you. If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error."tags"
: A map of the key-value pairs of the tag or tags to assign to the resource.
Main.Appfabric.delete_app_authorization
— Methoddelete_app_authorization(app_authorization_identifier, app_bundle_identifier)
delete_app_authorization(app_authorization_identifier, app_bundle_identifier, params::Dict{String,<:Any})
Deletes an app authorization. You must delete the associated ingestion before you can delete an app authorization.
Arguments
app_authorization_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
Main.Appfabric.delete_app_bundle
— Methoddelete_app_bundle(app_bundle_identifier)
delete_app_bundle(app_bundle_identifier, params::Dict{String,<:Any})
Deletes an app bundle. You must delete all associated app authorizations before you can delete an app bundle.
Arguments
app_bundle_identifier
: The ID or Amazon Resource Name (ARN) of the app bundle that needs to be deleted.
Main.Appfabric.delete_ingestion
— Methoddelete_ingestion(app_bundle_identifier, ingestion_identifier)
delete_ingestion(app_bundle_identifier, ingestion_identifier, params::Dict{String,<:Any})
Deletes an ingestion. You must stop (disable) the ingestion and you must delete all associated ingestion destinations before you can delete an app ingestion.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.ingestion_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.
Main.Appfabric.delete_ingestion_destination
— Methoddelete_ingestion_destination(app_bundle_identifier, ingestion_destination_identifier, ingestion_identifier)
delete_ingestion_destination(app_bundle_identifier, ingestion_destination_identifier, ingestion_identifier, params::Dict{String,<:Any})
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.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.ingestion_destination_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion destination to use for the request.ingestion_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.
Main.Appfabric.get_app_authorization
— Methodget_app_authorization(app_authorization_identifier, app_bundle_identifier)
get_app_authorization(app_authorization_identifier, app_bundle_identifier, params::Dict{String,<:Any})
Returns information about an app authorization.
Arguments
app_authorization_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
Main.Appfabric.get_app_bundle
— Methodget_app_bundle(app_bundle_identifier)
get_app_bundle(app_bundle_identifier, params::Dict{String,<:Any})
Returns information about an app bundle.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
Main.Appfabric.get_ingestion
— Methodget_ingestion(app_bundle_identifier, ingestion_identifier)
get_ingestion(app_bundle_identifier, ingestion_identifier, params::Dict{String,<:Any})
Returns information about an ingestion.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.ingestion_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.
Main.Appfabric.get_ingestion_destination
— Methodget_ingestion_destination(app_bundle_identifier, ingestion_destination_identifier, ingestion_identifier)
get_ingestion_destination(app_bundle_identifier, ingestion_destination_identifier, ingestion_identifier, params::Dict{String,<:Any})
Returns information about an ingestion destination.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.ingestion_destination_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion destination to use for the request.ingestion_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.
Main.Appfabric.list_app_authorizations
— Methodlist_app_authorizations(app_bundle_identifier)
list_app_authorizations(app_bundle_identifier, params::Dict{String,<:Any})
Returns a list of all app authorizations configured for an app bundle.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results that are returned per call. You can use nextToken to obtain further pages of results. This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum."nextToken"
: If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Main.Appfabric.list_app_bundles
— Methodlist_app_bundles()
list_app_bundles(params::Dict{String,<:Any})
Returns a list of app bundles.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results that are returned per call. You can use nextToken to obtain further pages of results. This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum."nextToken"
: If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Main.Appfabric.list_ingestion_destinations
— Methodlist_ingestion_destinations(app_bundle_identifier, ingestion_identifier)
list_ingestion_destinations(app_bundle_identifier, ingestion_identifier, params::Dict{String,<:Any})
Returns a list of all ingestion destinations configured for an ingestion.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.ingestion_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results that are returned per call. You can use nextToken to obtain further pages of results. This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum."nextToken"
: If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Main.Appfabric.list_ingestions
— Methodlist_ingestions(app_bundle_identifier)
list_ingestions(app_bundle_identifier, params::Dict{String,<:Any})
Returns a list of all ingestions configured for an app bundle.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results that are returned per call. You can use nextToken to obtain further pages of results. This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum."nextToken"
: If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Main.Appfabric.list_tags_for_resource
— Methodlist_tags_for_resource(resource_arn)
list_tags_for_resource(resource_arn, params::Dict{String,<:Any})
Returns a list of tags for a resource.
Arguments
resource_arn
: The Amazon Resource Name (ARN) of the resource for which you want to retrieve tags.
Main.Appfabric.start_ingestion
— Methodstart_ingestion(app_bundle_identifier, ingestion_identifier)
start_ingestion(app_bundle_identifier, ingestion_identifier, params::Dict{String,<:Any})
Starts (enables) an ingestion, which collects data from an application.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.ingestion_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.
Main.Appfabric.start_user_access_tasks
— Methodstart_user_access_tasks(app_bundle_identifier, email)
start_user_access_tasks(app_bundle_identifier, email, params::Dict{String,<:Any})
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.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.email
: The email address of the target user.
Main.Appfabric.stop_ingestion
— Methodstop_ingestion(app_bundle_identifier, ingestion_identifier)
stop_ingestion(app_bundle_identifier, ingestion_identifier, params::Dict{String,<:Any})
Stops (disables) an ingestion.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.ingestion_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.
Main.Appfabric.tag_resource
— Methodtag_resource(resource_arn, tags)
tag_resource(resource_arn, tags, params::Dict{String,<:Any})
Assigns one or more tags (key-value pairs) to the specified resource.
Arguments
resource_arn
: The Amazon Resource Name (ARN) of the resource that you want to tag.tags
: A map of the key-value pairs of the tag or tags to assign to the resource.
Main.Appfabric.untag_resource
— Methoduntag_resource(resource_arn, tag_keys)
untag_resource(resource_arn, tag_keys, params::Dict{String,<:Any})
Removes a tag or tags from a resource.
Arguments
resource_arn
: The Amazon Resource Name (ARN) of the resource that you want to untag.tag_keys
: The keys of the key-value pairs for the tag or tags you want to remove from the specified resource.
Main.Appfabric.update_app_authorization
— Methodupdate_app_authorization(app_authorization_identifier, app_bundle_identifier)
update_app_authorization(app_authorization_identifier, app_bundle_identifier, params::Dict{String,<:Any})
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.
Arguments
app_authorization_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"credential"
: Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type of the app authorization to update. For example, if the authorization type of the app authorization is OAuth2 (oauth2), then you should provide only the OAuth2 credentials."tenant"
: Contains information about an application tenant, such as the application display name and identifier.
Main.Appfabric.update_ingestion_destination
— Methodupdate_ingestion_destination(app_bundle_identifier, destination_configuration, ingestion_destination_identifier, ingestion_identifier)
update_ingestion_destination(app_bundle_identifier, destination_configuration, ingestion_destination_identifier, ingestion_identifier, params::Dict{String,<:Any})
Updates an ingestion destination, which specifies how an application's ingested data is processed by Amazon Web Services AppFabric and where it's delivered.
Arguments
app_bundle_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.destination_configuration
: Contains information about the destination of ingested data.ingestion_destination_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion destination to use for the request.ingestion_identifier
: The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.