doc.go raw

   1  // Package imds provides the API client for interacting with the Amazon EC2
   2  // Instance Metadata Service.
   3  //
   4  // All Client operation calls have a default timeout. If the operation is not
   5  // completed before this timeout expires, the operation will be canceled. This
   6  // timeout can be overridden through the following:
   7  //   - Set the options flag DisableDefaultTimeout
   8  //   - Provide a Context with a timeout or deadline with calling the client's operations.
   9  //
  10  // See the EC2 IMDS user guide for more information on using the API.
  11  // https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html
  12  package imds
  13