List Account Integrations
customerprofiles_list_account_integrations | R Documentation |
Lists all of the integrations associated to a specific URI in the AWS account¶
Description¶
Lists all of the integrations associated to a specific URI in the AWS account.
Usage¶
Arguments¶
Uri
[required] The URI of the S3 bucket or any other type of data source.
NextToken
The pagination token from the previous ListAccountIntegrations API call.
MaxResults
The maximum number of objects returned per page.
IncludeHidden
Boolean to indicate if hidden integration should be returned. Defaults to
False
.
Value¶
A list with the following syntax:
list(
Items = list(
list(
DomainName = "string",
Uri = "string",
ObjectTypeName = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
Tags = list(
"string"
),
ObjectTypeNames = list(
"string"
),
WorkflowId = "string",
IsUnstructured = TRUE|FALSE
)
),
NextToken = "string"
)