Interface CfnGuardHook.StackRolesProperty

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

@Stability(Stable) public static interface CfnGuardHook.StackRolesProperty extends software.amazon.jsii.JsiiSerializable
Specifies the stack roles for the StackFilters property type to include or exclude specific stacks from Hook invocations based on their associated IAM roles.

For more information, see AWS CloudFormation Hooks stack level filters .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 StackRolesProperty stackRolesProperty = StackRolesProperty.builder()
         .exclude(List.of("exclude"))
         .include(List.of("include"))
         .build();
 

See Also: