Interface CfnScheduledQuery.DestinationConfigurationProperty

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

@Stability(Stable) public static interface CfnScheduledQuery.DestinationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.logs.*;
 DestinationConfigurationProperty destinationConfigurationProperty = DestinationConfigurationProperty.builder()
         .s3Configuration(S3ConfigurationProperty.builder()
                 .destinationIdentifier("destinationIdentifier")
                 .roleArn("roleArn")
                 .build())
         .build();
 

See Also: