Get Ingestion
appfabric_get_ingestion | R Documentation |
Returns information about an ingestion¶
Description¶
Returns information about an ingestion.
Usage¶
appfabric_get_ingestion(appBundleIdentifier, ingestionIdentifier)
Arguments¶
appBundleIdentifier |
[required] The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request. |
ingestionIdentifier |
[required] The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request. |
Value¶
A list with the following syntax:
list(
ingestion = list(
arn = "string",
appBundleArn = "string",
app = "string",
tenantId = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
state = "enabled"|"disabled",
ingestionType = "auditLog"
)
)
Request syntax¶
svc$get_ingestion(
appBundleIdentifier = "string",
ingestionIdentifier = "string"
)