interface SourceConnectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ServiceCatalog.CfnCloudFormationProduct.SourceConnectionProperty |
Java | software.amazon.awscdk.services.servicecatalog.CfnCloudFormationProduct.SourceConnectionProperty |
Python | aws_cdk.aws_servicecatalog.CfnCloudFormationProduct.SourceConnectionProperty |
TypeScript | @aws-cdk/aws-servicecatalog » CfnCloudFormationProduct » SourceConnectionProperty |
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 * as servicecatalog from '@aws-cdk/aws-servicecatalog';
const sourceConnectionProperty: servicecatalog.CfnCloudFormationProduct.SourceConnectionProperty = {
connectionParameters: {
codeStar: {
artifactPath: 'artifactPath',
branch: 'branch',
connectionArn: 'connectionArn',
repository: 'repository',
},
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | IResolvable | Connection | The connection details based on the connection Type . |
| type | string | The only supported SourceConnection type is Codestar. |
connectionParameters
Type:
IResolvable | Connection
The connection details based on the connection Type .
type
Type:
string
The only supported SourceConnection type is Codestar.

.NET
Java
Python
TypeScript