Skip to content

Create Fleet

worklink_create_fleet R Documentation

Creates a fleet

Description

Creates a fleet. A fleet consists of resources and the configuration that delivers associated websites to authorized users who download and set up the Amazon WorkLink app.

Usage

worklink_create_fleet(FleetName, DisplayName,
  OptimizeForEndUserLocation, Tags)

Arguments

FleetName

[required] A unique name for the fleet.

DisplayName

The fleet name to display.

OptimizeForEndUserLocation

The option to optimize for better performance by routing traffic through the closest AWS Region to users, which may be outside of your home Region.

Tags

The tags to add to the resource. A tag is a key-value pair.

Value

A list with the following syntax:

list(
  FleetArn = "string"
)

Request syntax

svc$create_fleet(
  FleetName = "string",
  DisplayName = "string",
  OptimizeForEndUserLocation = TRUE|FALSE,
  Tags = list(
    "string"
  )
)