Class CfnCloudFormationProduct.ConnectionParametersProperty
Provides connection details.
Inherited Members
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCloudFormationProduct.ConnectionParametersProperty : CfnCloudFormationProduct.IConnectionParametersProperty
Syntax (vb)
Public Class CfnCloudFormationProduct.ConnectionParametersProperty Implements CfnCloudFormationProduct.IConnectionParametersProperty
Remarks
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 connectionParametersProperty = new ConnectionParametersProperty {
CodeStar = new CodeStarParametersProperty {
ArtifactPath = "artifactPath",
Branch = "branch",
ConnectionArn = "connectionArn",
Repository = "repository"
}
};
Synopsis
Constructors
ConnectionParametersProperty() | Provides connection details. |
Properties
CodeStar | Provides |
Constructors
ConnectionParametersProperty()
Provides connection details.
public ConnectionParametersProperty()
Remarks
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 connectionParametersProperty = new ConnectionParametersProperty {
CodeStar = new CodeStarParametersProperty {
ArtifactPath = "artifactPath",
Branch = "branch",
ConnectionArn = "connectionArn",
Repository = "repository"
}
};
Properties
CodeStar
Provides ConnectionType
details.
public object? CodeStar { get; set; }