Interface CfnTopicPropsMixin.LoggingConfigProperty

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

@Stability(Stable) public static interface CfnTopicPropsMixin.LoggingConfigProperty extends software.amazon.jsii.JsiiSerializable
The LoggingConfig property type specifies the Delivery status logging configuration for an AWS::SNS::Topic .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.sns.*;
 LoggingConfigProperty loggingConfigProperty = LoggingConfigProperty.builder()
         .failureFeedbackRoleArn("failureFeedbackRoleArn")
         .protocol("protocol")
         .successFeedbackRoleArn("successFeedbackRoleArn")
         .successFeedbackSampleRate("successFeedbackSampleRate")
         .build();
 

See Also: