Describe Inbound Integrations
| glue_describe_inbound_integrations | R Documentation | 
Returns a list of inbound integrations for the specified integration¶
Description¶
Returns a list of inbound integrations for the specified integration.
Usage¶
glue_describe_inbound_integrations(IntegrationArn, Marker, MaxRecords,
  TargetArn)
Arguments¶
IntegrationArn | 
The Amazon Resource Name (ARN) of the integration.  | 
Marker | 
A token to specify where to start paginating. This is the marker from a previously truncated response.  | 
MaxRecords | 
The total number of items to return in the output.  | 
TargetArn | 
The Amazon Resource Name (ARN) of the target resource in the integration.  | 
Value¶
A list with the following syntax:
list(
  InboundIntegrations = list(
    list(
      SourceArn = "string",
      TargetArn = "string",
      IntegrationArn = "string",
      Status = "CREATING"|"ACTIVE"|"MODIFYING"|"FAILED"|"DELETING"|"SYNCING"|"NEEDS_ATTENTION",
      CreateTime = as.POSIXct(
        "2015-01-01"
      ),
      IntegrationConfig = list(
        RefreshInterval = "string"
      ),
      Errors = list(
        list(
          ErrorCode = "string",
          ErrorMessage = "string"
        )
      )
    )
  ),
  Marker = "string"
)
Request syntax¶
svc$describe_inbound_integrations(
  IntegrationArn = "string",
  Marker = "string",
  MaxRecords = 123,
  TargetArn = "string"
)