Skip to content

Describe Vpc Connection

kafka_describe_vpc_connection R Documentation

Returns a description of this MSK VPC connection

Description

Returns a description of this MSK VPC connection.

Usage

kafka_describe_vpc_connection(Arn)

Arguments

Arn

[required] The Amazon Resource Name (ARN) that uniquely identifies a MSK VPC connection.

Value

A list with the following syntax:

list(
  VpcConnectionArn = "string",
  TargetClusterArn = "string",
  State = "CREATING"|"AVAILABLE"|"INACTIVE"|"DEACTIVATING"|"DELETING"|"FAILED"|"REJECTED"|"REJECTING",
  Authentication = "string",
  VpcId = "string",
  Subnets = list(
    "string"
  ),
  SecurityGroups = list(
    "string"
  ),
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  Tags = list(
    "string"
  )
)

Request syntax

svc$describe_vpc_connection(
  Arn = "string"
)