Interface CfnCustomActionType.ConfigurationPropertiesProperty

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

@Stability(Stable) public static interface CfnCustomActionType.ConfigurationPropertiesProperty extends software.amazon.jsii.JsiiSerializable
The configuration properties for the custom action.

You can refer to a name in the configuration properties of the custom action within the URL templates by following the format of {Config:name}, as long as the configuration property is both required and not secret. For more information, see Create a Custom Action for a Pipeline .

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.codepipeline.*;
 ConfigurationPropertiesProperty configurationPropertiesProperty = ConfigurationPropertiesProperty.builder()
         .key(false)
         .name("name")
         .required(false)
         .secret(false)
         // the properties below are optional
         .description("description")
         .queryable(false)
         .type("type")
         .build();
 

See Also: