List Integrations
customerprofiles_list_integrations | R Documentation |
Lists all of the integrations in your domain¶
Description¶
Lists all of the integrations in your domain.
Usage¶
Arguments¶
DomainName
[required] The unique name of the domain.
NextToken
The pagination token from the previous ListIntegrations 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"
)