aws-cdk-lib.aws_servicecatalog.CfnCloudFormationProduct.SourceConnectionProperty

interface SourceConnectionProperty

LanguageType name
.NETAmazon.CDK.AWS.Servicecatalog.CfnCloudFormationProduct.SourceConnectionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalog#CfnCloudFormationProduct_SourceConnectionProperty
Javasoftware.amazon.awscdk.services.servicecatalog.CfnCloudFormationProduct.SourceConnectionProperty
Pythonaws_cdk.aws_servicecatalog.CfnCloudFormationProduct.SourceConnectionProperty
TypeScript aws-cdk-lib » 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 { aws_servicecatalog as servicecatalog } from 'aws-cdk-lib';
const sourceConnectionProperty: servicecatalog.CfnCloudFormationProduct.SourceConnectionProperty = {
  connectionParameters: {
    codeStar: {
      artifactPath: 'artifactPath',
      branch: 'branch',
      connectionArn: 'connectionArn',
      repository: 'repository',
    },
  },
  type: 'type',
};

Properties

NameTypeDescription
connectionParametersIResolvable | ConnectionParametersPropertyThe connection details based on the connection Type .
typestringThe only supported SourceConnection type is Codestar.

connectionParameters

Type: IResolvable | ConnectionParametersProperty

The connection details based on the connection Type .


type

Type: string

The only supported SourceConnection type is Codestar.