Class ParameterDeclaration
- java.lang.Object
-
- software.amazon.awssdk.services.cloudformation.model.ParameterDeclaration
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<ParameterDeclaration.Builder,ParameterDeclaration>
@Generated("software.amazon.awssdk:codegen") public final class ParameterDeclaration extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ParameterDeclaration.Builder,ParameterDeclaration>
The ParameterDeclaration data type.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ParameterDeclaration.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ParameterDeclaration.Builder
builder()
String
defaultValue()
The default value of the parameter.String
description()
The description that's associate 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 that indicates whether the parameter value is shown as plain text in logs and in the Amazon Web Services Management Console.ParameterConstraints
parameterConstraints()
The criteria that CloudFormation uses to validate parameter values.String
parameterKey()
The name that's associated with the parameter.String
parameterType()
The type of parameter.List<SdkField<?>>
sdkFields()
static Class<? extends ParameterDeclaration.Builder>
serializableBuilderClass()
ParameterDeclaration.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 that's associated with the parameter.
- Returns:
- The name that's associated with the parameter.
-
defaultValue
public final String defaultValue()
The default value of the parameter.
- Returns:
- The default value of the parameter.
-
parameterType
public final String parameterType()
The type of parameter.
- Returns:
- The type of parameter.
-
noEcho
public final Boolean noEcho()
Flag that indicates whether the parameter value is shown as plain text in logs and in the Amazon Web Services Management Console.
- Returns:
- Flag that indicates whether the parameter value is shown as plain text in logs and in the Amazon Web Services Management Console.
-
description
public final String description()
The description that's associate with the parameter.
- Returns:
- The description that's associate with the parameter.
-
parameterConstraints
public final ParameterConstraints parameterConstraints()
The criteria that CloudFormation uses to validate parameter values.
- Returns:
- The criteria that CloudFormation uses to validate parameter values.
-
toBuilder
public ParameterDeclaration.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<ParameterDeclaration.Builder,ParameterDeclaration>
-
builder
public static ParameterDeclaration.Builder builder()
-
serializableBuilderClass
public static Class<? extends ParameterDeclaration.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.
-
-