Interface CfnStack.SourceProperty

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

@Stability(Stable) public static interface CfnStack.SourceProperty 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.opsworks.*;
 SourceProperty sourceProperty = SourceProperty.builder()
         .password("password")
         .revision("revision")
         .sshKey("sshKey")
         .type("type")
         .url("url")
         .username("username")
         .build();
 

See Also: