Skip to content

Get Integration Resource Property

glue_get_integration_resource_property R Documentation

This API is used for fetching the ResourceProperty of the Glue connection (for the source) or Glue database ARN (for the target)

Description

This API is used for fetching the ResourceProperty of the Glue connection (for the source) or Glue database ARN (for the target)

Usage

glue_get_integration_resource_property(ResourceArn)

Arguments

ResourceArn

[required] The connection ARN of the source, or the database ARN of the target.

Value

A list with the following syntax:

list(
  ResourceArn = "string",
  SourceProcessingProperties = list(
    RoleArn = "string"
  ),
  TargetProcessingProperties = list(
    RoleArn = "string",
    KmsArn = "string",
    ConnectionName = "string",
    EventBusArn = "string"
  )
)

Request syntax

svc$get_integration_resource_property(
  ResourceArn = "string"
)