I want the default value of the parameter for the analysis whose value type is MULTI_VALUED to be blank.
This can be done by activating the following checkbox In the analysis edit.
If the following checkboxes are enabled in the analysis edit and the analysis definition is retrieved via the AWS CLI, the parameters are as follows.
<snip>
ParameterDeclarations:
- StringParameterDeclaration:
ParameterValueType: MULTI_VALUED
Name: list
DefaultValues:
StaticValues: []
ValueWhenUnset:
ValueWhenUnsetOption: "NULL"
<snip>
However, this is not possible in CloudFormation.
When I deploy CloudFormation with []
in StaticValues and retrieving the analysis definition via AWS CLI, the parameters are as follows.
Furthermore, check boxes are disabled.
<snip>
- StringParameterDeclaration:
ParameterValueType: MULTI_VALUED
Name: list
DefaultValues: {}
ValueWhenUnset:
ValueWhenUnsetOption: "NULL"
<snip>