Skip to content

Update Vpc Connection

quicksight_update_vpc_connection R Documentation

Updates a VPC connection

Description

Updates a VPC connection.

Usage

quicksight_update_vpc_connection(AwsAccountId, VPCConnectionId, Name,
  SubnetIds, SecurityGroupIds, DnsResolvers, RoleArn)

Arguments

AwsAccountId

[required] The Amazon Web Services account ID of the account that contains the VPC connection that you want to update.

VPCConnectionId

[required] The ID of the VPC connection that you're updating. This ID is a unique identifier for each Amazon Web Services Region in an Amazon Web Services account.

Name

[required] The display name for the VPC connection.

SubnetIds

[required] A list of subnet IDs for the VPC connection.

SecurityGroupIds

[required] A list of security group IDs for the VPC connection.

DnsResolvers

A list of IP addresses of DNS resolver endpoints for the VPC connection.

RoleArn

[required] An IAM role associated with the VPC connection.

Value

A list with the following syntax:

list(
  Arn = "string",
  VPCConnectionId = "string",
  UpdateStatus = "CREATION_IN_PROGRESS"|"CREATION_SUCCESSFUL"|"CREATION_FAILED"|"UPDATE_IN_PROGRESS"|"UPDATE_SUCCESSFUL"|"UPDATE_FAILED"|"DELETION_IN_PROGRESS"|"DELETION_FAILED"|"DELETED",
  AvailabilityStatus = "AVAILABLE"|"UNAVAILABLE"|"PARTIALLY_AVAILABLE",
  RequestId = "string",
  Status = 123
)

Request syntax

svc$update_vpc_connection(
  AwsAccountId = "string",
  VPCConnectionId = "string",
  Name = "string",
  SubnetIds = list(
    "string"
  ),
  SecurityGroupIds = list(
    "string"
  ),
  DnsResolvers = list(
    "string"
  ),
  RoleArn = "string"
)