Add Partner
redshift_add_partner | R Documentation |
Adds a partner integration to a cluster¶
Description¶
Adds a partner integration to a cluster. This operation authorizes a partner to push status updates for the specified database. To complete the integration, you also set up the integration on the partner website.
Usage¶
redshift_add_partner(AccountId, ClusterIdentifier, DatabaseName,
PartnerName)
Arguments¶
AccountId |
[required] The Amazon Web Services account ID that owns the cluster. |
ClusterIdentifier |
[required] The cluster identifier of the cluster that receives data from the partner. |
DatabaseName |
[required] The name of the database that receives data from the partner. |
PartnerName |
[required] The name of the partner that is authorized to send data. |
Value¶
A list with the following syntax:
list(
DatabaseName = "string",
PartnerName = "string"
)
Request syntax¶
svc$add_partner(
AccountId = "string",
ClusterIdentifier = "string",
DatabaseName = "string",
PartnerName = "string"
)