List Vpc Connections
kafka_list_vpc_connections | R Documentation |
Returns a list of all the VPC connections in this Region¶
Description¶
Returns a list of all the VPC connections in this Region.
Usage¶
Arguments¶
MaxResults
The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
NextToken
The 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.
Value¶
A list with the following syntax:
list(
VpcConnections = list(
list(
VpcConnectionArn = "string",
TargetClusterArn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
Authentication = "string",
VpcId = "string",
State = "CREATING"|"AVAILABLE"|"INACTIVE"|"DEACTIVATING"|"DELETING"|"FAILED"|"REJECTED"|"REJECTING"
)
),
NextToken = "string"
)