aws-cdk-lib.aws_servicecatalog.CfnCloudFormationProduct.CodeStarParametersProperty

interface CodeStarParametersProperty

LanguageType name
.NETAmazon.CDK.AWS.Servicecatalog.CfnCloudFormationProduct.CodeStarParametersProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalog#CfnCloudFormationProduct_CodeStarParametersProperty
Javasoftware.amazon.awscdk.services.servicecatalog.CfnCloudFormationProduct.CodeStarParametersProperty
Pythonaws_cdk.aws_servicecatalog.CfnCloudFormationProduct.CodeStarParametersProperty
TypeScript aws-cdk-lib » aws_servicecatalog » CfnCloudFormationProduct » CodeStarParametersProperty

The subtype containing details about the Codestar connection Type .

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 codeStarParametersProperty: servicecatalog.CfnCloudFormationProduct.CodeStarParametersProperty = {
  artifactPath: 'artifactPath',
  branch: 'branch',
  connectionArn: 'connectionArn',
  repository: 'repository',
};

Properties

NameTypeDescription
artifactPathstringThe absolute path wehre the artifact resides within the repo and branch, formatted as "folder/file.json.".
branchstringThe specific branch where the artifact resides.
connectionArnstringThe CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.
repositorystringThe specific repository where the product’s artifact-to-be-synced resides, formatted as "Account/Repo.".

artifactPath

Type: string

The absolute path wehre the artifact resides within the repo and branch, formatted as "folder/file.json.".


branch

Type: string

The specific branch where the artifact resides.


connectionArn

Type: string

The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.


repository

Type: string

The specific repository where the product’s artifact-to-be-synced resides, formatted as "Account/Repo.".