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
operation, without actually making the request, and provides an error
response. If you have the required permissions, the error response is
|
Value¶
A list with the following syntax:
list(
AccountLevel = list(
HttpTokens = "optional"|"required",
HttpPutResponseHopLimit = 123,
HttpEndpoint = "disabled"|"enabled",
InstanceMetadataTags = "disabled"|"enabled",
ManagedBy = "account"|"declarative-policy",
ManagedExceptionMessage = "string"
)
)
Request syntax¶
svc$get_instance_metadata_defaults(
DryRun = TRUE|FALSE
)