src

Go monorepo.
git clone git://code.dwrz.net/src
Log | Files | Refs

runtime.go (595B)


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