interface CodeStarParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalog.Mixins.CfnCloudFormationProductPropsMixin.CodeStarParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalog/mixins#CfnCloudFormationProductPropsMixin_CodeStarParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalog.mixins.CfnCloudFormationProductPropsMixin.CodeStarParametersProperty |
Python | aws_cdk.mixins_preview.aws_servicecatalog.mixins.CfnCloudFormationProductPropsMixin.CodeStarParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalog » mixins » 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 { mixins as servicecatalog_mixins } from '@aws-cdk/mixins-preview/aws-servicecatalog';
const codeStarParametersProperty: servicecatalog_mixins.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