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¶
customerprofiles_list_account_integrations(Uri, NextToken, MaxResults,
IncludeHidden)
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 |
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,
RoleArn = "string",
EventTriggerNames = list(
"string"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_account_integrations(
Uri = "string",
NextToken = "string",
MaxResults = 123,
IncludeHidden = TRUE|FALSE
)