Create Integration Resource Property
| glue_create_integration_resource_property | R Documentation |
This API can be used for setting up the ResourceProperty of the Glue connection (for the source) or Glue database ARN (for the target)¶
Description¶
This API can be used for setting up the ResourceProperty of the Glue
connection (for the source) or Glue database ARN (for the target). These
properties can include the role to access the connection or database. To
set both source and target properties the same API needs to be invoked
with the Glue connection ARN as ResourceArn with
SourceProcessingProperties and the Glue database ARN as ResourceArn
with TargetProcessingProperties respectively.
Usage¶
glue_create_integration_resource_property(ResourceArn,
SourceProcessingProperties, TargetProcessingProperties)
Arguments¶
ResourceArn |
[required] The connection ARN of the source, or the database ARN of the target. |
SourceProcessingProperties |
The resource properties associated with the integration source. |
TargetProcessingProperties |
The resource properties associated with the integration 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$create_integration_resource_property(
ResourceArn = "string",
SourceProcessingProperties = list(
RoleArn = "string"
),
TargetProcessingProperties = list(
RoleArn = "string",
KmsArn = "string",
ConnectionName = "string",
EventBusArn = "string"
)
)