Interface CfnEventBusPolicyProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEventBusPolicyProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-11T03:45:54.735Z") @Stability(Stable) public interface CfnEventBusPolicyProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnEventBusPolicy.

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.events.*;
 Object statement;
 CfnEventBusPolicyProps cfnEventBusPolicyProps = CfnEventBusPolicyProps.builder()
         .statementId("statementId")
         // the properties below are optional
         .action("action")
         .condition(ConditionProperty.builder()
                 .key("key")
                 .type("type")
                 .value("value")
                 .build())
         .eventBusName("eventBusName")
         .principal("principal")
         .statement(statement)
         .build();
 

See Also: