Skip to content

Start Access Request

ssm_start_access_request R Documentation

Starts the workflow for just-in-time node access sessions

Description

Starts the workflow for just-in-time node access sessions.

Usage

ssm_start_access_request(Reason, Targets, Tags)

Arguments

Reason

[required] A brief description explaining why you are requesting access to the node.

Targets

[required] The node you are requesting access to.

Tags

Key-value pairs of metadata you want to assign to the access request.

Value

A list with the following syntax:

list(
  AccessRequestId = "string"
)

Request syntax

svc$start_access_request(
  Reason = "string",
  Targets = list(
    list(
      Key = "string",
      Values = list(
        "string"
      )
    )
  ),
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)