runtime.go 595 B

1234567891011121314
  1. package aws
  2. // ExecutionEnvironmentID is the AWS execution environment runtime identifier.
  3. type ExecutionEnvironmentID string
  4. // RuntimeEnvironment is a collection of values that are determined at runtime
  5. // based on the environment that the SDK is executing in. Some of these values
  6. // may or may not be present based on the executing environment and certain SDK
  7. // configuration properties that drive whether these values are populated..
  8. type RuntimeEnvironment struct {
  9. EnvironmentIdentifier ExecutionEnvironmentID
  10. Region string
  11. EC2InstanceMetadataRegion string
  12. }