Skip to main content

client_vpc_connections

Creates, updates, deletes, gets or lists a client_vpc_connections resource.

Overview

Nameclient_vpc_connections
TypeResource
Idaws.kafka.client_vpc_connections

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
authenticationstringInformation about the auth scheme of Vpc Connection.
creation_timestring (date-time)Creation time of the Vpc Connection.
ownerstringThe Owner of the Vpc Connection.
statestringState of the Vpc Connection. (CREATING, AVAILABLE, INACTIVE, DEACTIVATING, DELETING, FAILED, REJECTED, REJECTING)
vpc_connection_arnstringThe ARN that identifies the Vpc Connection.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_client_vpc_connectionsselectcluster_arn, regionmaxResults, nextTokenReturns a list of all the VPC connections in this Region.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
cluster_arnstringThe Amazon Resource Name (ARN) of the cluster.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
nextTokenstringThe paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.

SELECT examples

Returns a list of all the VPC connections in this Region.

SELECT
authentication,
creation_time,
owner,
state,
vpc_connection_arn
FROM aws.kafka.client_vpc_connections
WHERE cluster_arn = '{{ cluster_arn }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;