Interface CfnServiceAction.DefinitionParameterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnServiceAction.DefinitionParameterProperty.Jsii$Proxy
Enclosing class:
CfnServiceAction

@Stability(Stable) public static interface CfnServiceAction.DefinitionParameterProperty extends software.amazon.jsii.JsiiSerializable
The list of parameters in JSON format.

For example: [{\"Name\":\"InstanceId\",\"Type\":\"TARGET\"}] or [{\"Name\":\"InstanceId\",\"Type\":\"TEXT_VALUE\"}] .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.servicecatalog.*;
 DefinitionParameterProperty definitionParameterProperty = DefinitionParameterProperty.builder()
         .key("key")
         .value("value")
         .build();
 

See Also: