Class SnsDestination

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.appconfig.SnsDestination
All Implemented Interfaces:
IEventDestination, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:55:52.848Z") @Stability(Stable) public class SnsDestination extends software.amazon.jsii.JsiiObject implements IEventDestination
Use an Amazon SNS topic as an event destination.

Example:

 Topic topic;
 Extension.Builder.create(this, "MyExtension")
         .actions(List.of(
             Action.Builder.create()
                     .actionPoints(List.of(ActionPoint.ON_DEPLOYMENT_START))
                     .eventDestination(new SnsDestination(topic))
                     .build()))
         .build();
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode

    Nested classes/interfaces inherited from interface software.amazon.awscdk.services.appconfig.IEventDestination

    IEventDestination.Jsii$Default, IEventDestination.Jsii$Proxy
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
     
     
    protected
    SnsDestination(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    SnsDestination(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    The URI of the extension event destination.
    The IAM policy document to invoke the event destination.
    The type of the extension event destination.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • SnsDestination

      protected SnsDestination(software.amazon.jsii.JsiiObjectRef objRef)
    • SnsDestination

      protected SnsDestination(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • SnsDestination

      @Stability(Stable) public SnsDestination(@NotNull ITopic topic)
      Parameters:
      topic - This parameter is required.
  • Method Details