Interface CfnRobotApplication.SourceConfigProperty

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

@Stability(Stable) public static interface CfnRobotApplication.SourceConfigProperty extends software.amazon.jsii.JsiiSerializable
Information about a source configuration.

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.robomaker.*;
 SourceConfigProperty sourceConfigProperty = SourceConfigProperty.builder()
         .architecture("architecture")
         .s3Bucket("s3Bucket")
         .s3Key("s3Key")
         .build();