ProjectEnvironmentEnvironmentVariable constructor
const
ProjectEnvironmentEnvironmentVariable({})
Creates a new ProjectEnvironmentEnvironmentVariable.
name Environment variable's name or key.
type Type of environment variable. Valid values: PARAMETER_STORE, PLAINTEXT, SECRETS_MANAGER.
value Environment variable's value.
Implementation
const ProjectEnvironmentEnvironmentVariable({
required this.name,
this.type,
required this.value,
});