Package com.pulumi.automation
Class ConfigValue
- java.lang.Object
-
- com.pulumi.automation.ConfigValue
-
public class ConfigValue extends java.lang.Object
ConfigValue
represents a configuration value.
-
-
Constructor Summary
Constructors Constructor Description ConfigValue(java.lang.String value)
Creates a new configuration value.ConfigValue(java.lang.String value, boolean isSecret)
Creates a new configuration value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isSecret()
True if the configuration value is secret.java.lang.String
value()
Gets the configuration value.
-
-
-
Constructor Detail
-
ConfigValue
public ConfigValue(java.lang.String value)
Creates a new configuration value.- Parameters:
value
- the value
-
ConfigValue
public ConfigValue(java.lang.String value, boolean isSecret)
Creates a new configuration value.- Parameters:
value
- the valueisSecret
- true if the value is secret
-
-