Interface CfnTopic.LoggingConfigProperty

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

@Stability(Stable) public static interface CfnTopic.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.services.sns.*;
 LoggingConfigProperty loggingConfigProperty = LoggingConfigProperty.builder()
         .protocol("protocol")
         // the properties below are optional
         .failureFeedbackRoleArn("failureFeedbackRoleArn")
         .successFeedbackRoleArn("successFeedbackRoleArn")
         .successFeedbackSampleRate("successFeedbackSampleRate")
         .build();
 

See Also: