Class TemplateParameter
- java.lang.Object
-
- software.amazon.awssdk.services.cloudformation.model.TemplateParameter
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<TemplateParameter.Builder,TemplateParameter>
@Generated("software.amazon.awssdk:codegen") public final class TemplateParameter extends Object implements SdkPojo, Serializable, ToCopyableBuilder<TemplateParameter.Builder,TemplateParameter>
The TemplateParameter data type.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
TemplateParameter.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TemplateParameter.Builder
builder()
String
defaultValue()
The default value associated with the parameter.String
description()
User defined description associated with the parameter.boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
Boolean
noEcho()
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.String
parameterKey()
The name associated with the parameter.List<SdkField<?>>
sdkFields()
static Class<? extends TemplateParameter.Builder>
serializableBuilderClass()
TemplateParameter.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
parameterKey
public final String parameterKey()
The name associated with the parameter.
- Returns:
- The name associated with the parameter.
-
defaultValue
public final String defaultValue()
The default value associated with the parameter.
- Returns:
- The default value associated with the parameter.
-
noEcho
public final Boolean noEcho()
Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
- Returns:
- Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
-
description
public final String description()
User defined description associated with the parameter.
- Returns:
- User defined description associated with the parameter.
-
toBuilder
public TemplateParameter.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<TemplateParameter.Builder,TemplateParameter>
-
builder
public static TemplateParameter.Builder builder()
-
serializableBuilderClass
public static Class<? extends TemplateParameter.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-