Interface CfnCloudFormationProduct.ISourceConnectionProperty
A top level ProductViewDetail
response containing details about the product’s connection.
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnCloudFormationProduct.ISourceConnectionProperty
Syntax (vb)
Public Interface CfnCloudFormationProduct.ISourceConnectionProperty
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Servicecatalog;
var sourceConnectionProperty = new SourceConnectionProperty {
ConnectionParameters = new ConnectionParametersProperty {
CodeStar = new CodeStarParametersProperty {
ArtifactPath = "artifactPath",
Branch = "branch",
ConnectionArn = "connectionArn",
Repository = "repository"
}
},
Type = "type"
};
Synopsis
Properties
ConnectionParameters | The connection details based on the connection |
Type | The only supported |
Properties
ConnectionParameters
The connection details based on the connection Type
.
object ConnectionParameters { get; }
Property Value
Remarks
Type
The only supported SourceConnection
type is Codestar.
string Type { get; }