Skip to content

Delete Connection

apprunner_delete_connection R Documentation

Delete an App Runner connection

Description

Delete an App Runner connection. You must first ensure that there are no running App Runner services that use this connection. If there are any, the delete_connection action fails.

Usage

apprunner_delete_connection(ConnectionArn)

Arguments

ConnectionArn

[required] The Amazon Resource Name (ARN) of the App Runner connection that you want to delete.

Value

A list with the following syntax:

list(
  Connection = list(
    ConnectionName = "string",
    ConnectionArn = "string",
    ProviderType = "GITHUB"|"BITBUCKET",
    Status = "PENDING_HANDSHAKE"|"AVAILABLE"|"ERROR"|"DELETED",
    CreatedAt = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$delete_connection(
  ConnectionArn = "string"
)