Skip to content

Update Network Settings

workspacesweb_update_network_settings R Documentation

Updates network settings

Description

Updates network settings.

Usage

workspacesweb_update_network_settings(clientToken, networkSettingsArn,
  securityGroupIds, subnetIds, vpcId)

Arguments

clientToken

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token return the result from the original successful request.

If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.

networkSettingsArn

[required] The ARN of the network settings.

securityGroupIds

One or more security groups used to control access from streaming instances to your VPC.

subnetIds

The subnets in which network interfaces are created to connect streaming instances to your VPC. At least two of these subnets must be in different availability zones.

vpcId

The VPC that streaming instances will connect to.

Value

A list with the following syntax:

list(
  networkSettings = list(
    associatedPortalArns = list(
      "string"
    ),
    networkSettingsArn = "string",
    securityGroupIds = list(
      "string"
    ),
    subnetIds = list(
      "string"
    ),
    vpcId = "string"
  )
)

Request syntax

svc$update_network_settings(
  clientToken = "string",
  networkSettingsArn = "string",
  securityGroupIds = list(
    "string"
  ),
  subnetIds = list(
    "string"
  ),
  vpcId = "string"
)