Interface CfnCloudFormationProduct.ConnectionParametersProperty

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

@Stability(Stable) public static interface CfnCloudFormationProduct.ConnectionParametersProperty extends software.amazon.jsii.JsiiSerializable
Provides connection details.

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.servicecatalog.*;
 ConnectionParametersProperty connectionParametersProperty = ConnectionParametersProperty.builder()
         .codeStar(CodeStarParametersProperty.builder()
                 .artifactPath("artifactPath")
                 .branch("branch")
                 .connectionArn("connectionArn")
                 .repository("repository")
                 .build())
         .build();
 

See Also: