interface SourceConnectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalog.Mixins.CfnCloudFormationProductPropsMixin.SourceConnectionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalog/mixins#CfnCloudFormationProductPropsMixin_SourceConnectionProperty |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalog.mixins.CfnCloudFormationProductPropsMixin.SourceConnectionProperty |
Python | aws_cdk.mixins_preview.aws_servicecatalog.mixins.CfnCloudFormationProductPropsMixin.SourceConnectionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalog » mixins » CfnCloudFormationProductPropsMixin » 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 { mixins as servicecatalog_mixins } from '@aws-cdk/mixins-preview/aws-servicecatalog';
const sourceConnectionProperty: servicecatalog_mixins.CfnCloudFormationProductPropsMixin.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
(optional)
The connection details based on the connection Type .
type?
Type:
string
(optional)
The only supported SourceConnection type is Codestar.

.NET
Go
Java
Python
TypeScript