Get Integration
customerprofiles_get_integration | R Documentation |
Returns an integration for a domain¶
Description¶
Returns an integration for a domain.
Usage¶
customerprofiles_get_integration(DomainName, Uri)
Arguments¶
DomainName |
[required] The unique name of the domain. |
Uri |
[required] The URI of the S3 bucket or any other type of data source. |
Value¶
A list with the following syntax:
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"
)
)
Request syntax¶
svc$get_integration(
DomainName = "string",
Uri = "string"
)