1package aws
2
3// ExecutionEnvironmentID is the AWS execution environment runtime identifier.
4type 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..
10type RuntimeEnvironment struct {
11 EnvironmentIdentifier ExecutionEnvironmentID
12 Region string
13 EC2InstanceMetadataRegion string
14}