b1f8ac453b
feat!: base template * first bit of templating * codeowners * linuxbased * restart * baseline project * add grpc api and basic integration test * startqueue * queueMsg * splitscripts * migrations * queueintegrationtest * gateway
15 lines
595 B
Go
15 lines
595 B
Go
package aws
|
|
|
|
// ExecutionEnvironmentID is the AWS execution environment runtime identifier.
|
|
type ExecutionEnvironmentID string
|
|
|
|
// RuntimeEnvironment is a collection of values that are determined at runtime
|
|
// based on the environment that the SDK is executing in. Some of these values
|
|
// may or may not be present based on the executing environment and certain SDK
|
|
// configuration properties that drive whether these values are populated..
|
|
type RuntimeEnvironment struct {
|
|
EnvironmentIdentifier ExecutionEnvironmentID
|
|
Region string
|
|
EC2InstanceMetadataRegion string
|
|
}
|