Skip to content

Update Service

vpclattice_update_service R Documentation

Updates the specified service

Description

Updates the specified service.

Usage

vpclattice_update_service(authType, certificateArn, serviceIdentifier)

Arguments

authType

The type of IAM policy.

  • NONE: The resource does not use an IAM policy. This is the default.

  • AWS_IAM: The resource uses an IAM policy. When this type is used, auth is enabled and an auth policy is required.

certificateArn

The Amazon Resource Name (ARN) of the certificate.

serviceIdentifier

[required] The ID or Amazon Resource Name (ARN) of the service.

Value

A list with the following syntax:

list(
  arn = "string",
  authType = "NONE"|"AWS_IAM",
  certificateArn = "string",
  customDomainName = "string",
  id = "string",
  name = "string"
)

Request syntax

svc$update_service(
  authType = "NONE"|"AWS_IAM",
  certificateArn = "string",
  serviceIdentifier = "string"
)