Interface CfnExtension.ActionProperty

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

@Stability(Stable) public static interface CfnExtension.ActionProperty extends software.amazon.jsii.JsiiSerializable
The actions defined in the extension.

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.appconfig.*;
 ActionProperty actionProperty = ActionProperty.builder()
         .name("name")
         .uri("uri")
         // the properties below are optional
         .description("description")
         .roleArn("roleArn")
         .build();
 

See Also: