Interface CfnIntegrationResourceProperty.TargetProcessingPropertiesProperty

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

@Stability(Stable) public static interface CfnIntegrationResourceProperty.TargetProcessingPropertiesProperty extends software.amazon.jsii.JsiiSerializable
The resource properties associated with the integration target.

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.glue.*;
 TargetProcessingPropertiesProperty targetProcessingPropertiesProperty = TargetProcessingPropertiesProperty.builder()
         .roleArn("roleArn")
         // the properties below are optional
         .connectionName("connectionName")
         .eventBusArn("eventBusArn")
         .kmsArn("kmsArn")
         .build();
 

See Also: