Skip to content

Deauthorize Connection

cloudwatchevents_deauthorize_connection R Documentation

Removes all authorization parameters from the connection

Description

Removes all authorization parameters from the connection. This lets you remove the secret from the connection so you can reuse it without having to create a new connection.

Usage

cloudwatchevents_deauthorize_connection(Name)

Arguments

Name

[required] The name of the connection to remove authorization from.

Value

A list with the following syntax:

list(
  ConnectionArn = "string",
  ConnectionState = "CREATING"|"UPDATING"|"DELETING"|"AUTHORIZED"|"DEAUTHORIZED"|"AUTHORIZING"|"DEAUTHORIZING",
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  LastModifiedTime = as.POSIXct(
    "2015-01-01"
  ),
  LastAuthorizedTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$deauthorize_connection(
  Name = "string"
)