Create Vpc Connection
kafka_create_vpc_connection | R Documentation |
Creates a new MSK VPC connection¶
Description¶
Creates a new MSK VPC connection.
Usage¶
kafka_create_vpc_connection(TargetClusterArn, Authentication, VpcId,
ClientSubnets, SecurityGroups, Tags)
Arguments¶
TargetClusterArn |
[required] The cluster Amazon Resource Name (ARN) for the VPC connection. |
Authentication |
[required] The authentication type of VPC connection. |
VpcId |
[required] The VPC ID of VPC connection. |
ClientSubnets |
[required] The list of client subnets. |
SecurityGroups |
[required] The list of security groups. |
Tags |
A map of tags for the VPC connection. |
Value¶
A list with the following syntax:
list(
VpcConnectionArn = "string",
State = "CREATING"|"AVAILABLE"|"INACTIVE"|"DEACTIVATING"|"DELETING"|"FAILED"|"REJECTED"|"REJECTING",
Authentication = "string",
VpcId = "string",
ClientSubnets = list(
"string"
),
SecurityGroups = list(
"string"
),
CreationTime = as.POSIXct(
"2015-01-01"
),
Tags = list(
"string"
)
)
Request syntax¶
svc$create_vpc_connection(
TargetClusterArn = "string",
Authentication = "string",
VpcId = "string",
ClientSubnets = list(
"string"
),
SecurityGroups = list(
"string"
),
Tags = list(
"string"
)
)