Interface CfnCloudFormationProductPropsMixin.ISourceConnectionProperty
A top level ProductViewDetail response containing details about the product’s connection.
Namespace: Amazon.CDK.Mixins.Preview.AWS.ServiceCatalog.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnCloudFormationProductPropsMixin.ISourceConnectionProperty
Syntax (vb)
Public Interface CfnCloudFormationProductPropsMixin.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.Mixins.Preview.AWS.ServiceCatalog.Mixins;
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 union: either IResolvable or CfnCloudFormationProductPropsMixin.IConnectionParametersProperty
Type
The only supported SourceConnection type is Codestar.
string? Type { get; }