Update Partner Status
redshift_update_partner_status | R Documentation |
Updates the status of a partner integration¶
Description¶
Updates the status of a partner integration.
Usage¶
redshift_update_partner_status(AccountId, ClusterIdentifier,
DatabaseName, PartnerName, Status, StatusMessage)
Arguments¶
AccountId |
[required] The Amazon Web Services account ID that owns the cluster. |
ClusterIdentifier |
[required] The cluster identifier of the cluster whose partner integration status is being updated. |
DatabaseName |
[required] The name of the database whose partner integration status is being updated. |
PartnerName |
[required] The name of the partner whose integration status is being updated. |
Status |
[required] The value of the updated status. |
StatusMessage |
The status message provided by the partner. |
Value¶
A list with the following syntax:
list(
DatabaseName = "string",
PartnerName = "string"
)
Request syntax¶
svc$update_partner_status(
AccountId = "string",
ClusterIdentifier = "string",
DatabaseName = "string",
PartnerName = "string",
Status = "Active"|"Inactive"|"RuntimeFailure"|"ConnectionFailure",
StatusMessage = "string"
)