Interface CfnCloudFormationProduct.SourceConnectionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCloudFormationProduct.SourceConnectionProperty.Jsii$Proxy
- Enclosing class:
CfnCloudFormationProduct
@Stability(Stable)
public static interface CfnCloudFormationProduct.SourceConnectionProperty
extends software.amazon.jsii.JsiiSerializable
A top level
ProductViewDetail response containing details about the product’s connection.
AWS Service Catalog returns this field for the CreateProduct , UpdateProduct , DescribeProductAsAdmin , and SearchProductAsAdmin APIs. This response contains the same fields as the ConnectionParameters request, with the addition of the LastSync response.
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.*;
SourceConnectionProperty sourceConnectionProperty = SourceConnectionProperty.builder()
.connectionParameters(ConnectionParametersProperty.builder()
.codeStar(CodeStarParametersProperty.builder()
.artifactPath("artifactPath")
.branch("branch")
.connectionArn("connectionArn")
.repository("repository")
.build())
.build())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCloudFormationProduct.SourceConnectionPropertystatic final classAn implementation forCfnCloudFormationProduct.SourceConnectionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionParameters
The connection details based on the connectionType.- See Also:
-
getType
The only supportedSourceConnectiontype is Codestar.- See Also:
-
builder
-