Skip to content

Get Instance Metadata Defaults

ec2_get_instance_metadata_defaults R Documentation

Gets the default instance metadata service (IMDS) settings that are set at the account level in the specified Amazon Web Services Region

Description

Gets the default instance metadata service (IMDS) settings that are set at the account level in the specified Amazon Web Services Region.

For more information, see Order of precedence for instance metadata options in the Amazon EC2 User Guide.

Usage

ec2_get_instance_metadata_defaults(DryRun)

Arguments

DryRun

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

Value

A list with the following syntax:

list(
  AccountLevel = list(
    HttpTokens = "optional"|"required",
    HttpPutResponseHopLimit = 123,
    HttpEndpoint = "disabled"|"enabled",
    InstanceMetadataTags = "disabled"|"enabled"
  )
)

Request syntax

svc$get_instance_metadata_defaults(
  DryRun = TRUE|FALSE
)