interface CodeStarParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ServiceCatalog.CfnCloudFormationProductPropsMixin.CodeStarParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsservicecatalog#CfnCloudFormationProductPropsMixin_CodeStarParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.servicecatalog.CfnCloudFormationProductPropsMixin.CodeStarParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_servicecatalog.CfnCloudFormationProductPropsMixin.CodeStarParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_servicecatalog » CfnCloudFormationProductPropsMixin » 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/cfn-property-mixins';
const codeStarParametersProperty: servicecatalog.CfnCloudFormationProductPropsMixin.CodeStarParametersProperty = {
artifactPath: 'artifactPath',
branch: 'branch',
connectionArn: 'connectionArn',
repository: 'repository',
};
Properties
| Name | Type | Description |
|---|---|---|
| artifact | string | The absolute path wehre the artifact resides within the repo and branch, formatted as "folder/file.json.". |
| branch? | string | The specific branch where the artifact resides. |
| connection | string | The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository. |
| repository? | string | The specific repository where the product’s artifact-to-be-synced resides, formatted as "Account/Repo.". |
artifactPath?
Type:
string
(optional)
The absolute path wehre the artifact resides within the repo and branch, formatted as "folder/file.json.".
branch?
Type:
string
(optional)
The specific branch where the artifact resides.
connectionArn?
Type:
string
(optional)
The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.
repository?
Type:
string
(optional)
The specific repository where the product’s artifact-to-be-synced resides, formatted as "Account/Repo.".

.NET
Go
Java
Python
TypeScript