Skip to content

Update Workload Identity

bedrockagentcorecontrol_update_workload_identity R Documentation

Updates an existing workload identity

Description

Updates an existing workload identity.

Usage

bedrockagentcorecontrol_update_workload_identity(name,
  allowedResourceOauth2ReturnUrls)

Arguments

name

[required] The name of the workload identity to update.

allowedResourceOauth2ReturnUrls

The new list of allowed OAuth2 return URLs for resources associated with this workload identity. This list replaces the existing list.

Value

A list with the following syntax:

list(
  name = "string",
  workloadIdentityArn = "string",
  allowedResourceOauth2ReturnUrls = list(
    "string"
  ),
  createdTime = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$update_workload_identity(
  name = "string",
  allowedResourceOauth2ReturnUrls = list(
    "string"
  )
)