Class CfnCloudFormationProductPropsMixin.CodeStarParametersProperty
The subtype containing details about the Codestar connection Type .
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ServiceCatalog
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCloudFormationProductPropsMixin.CodeStarParametersProperty : CfnCloudFormationProductPropsMixin.ICodeStarParametersProperty
Syntax (vb)
Public Class CfnCloudFormationProductPropsMixin.CodeStarParametersProperty Implements CfnCloudFormationProductPropsMixin.ICodeStarParametersProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.ServiceCatalog;
var codeStarParametersProperty = new CodeStarParametersProperty {
ArtifactPath = "artifactPath",
Branch = "branch",
ConnectionArn = "connectionArn",
Repository = "repository"
};
Synopsis
Constructors
| CodeStarParametersProperty() | The subtype containing details about the Codestar connection |
Properties
| ArtifactPath | The absolute path wehre the artifact resides within the repo and branch, formatted as "folder/file.json.". |
| Branch | The specific branch where the artifact resides. |
| ConnectionArn | The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository. |
| Repository | The specific repository where the product’s artifact-to-be-synced resides, formatted as "Account/Repo.". |
Constructors
CodeStarParametersProperty()
The subtype containing details about the Codestar connection Type .
public CodeStarParametersProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.ServiceCatalog;
var codeStarParametersProperty = new CodeStarParametersProperty {
ArtifactPath = "artifactPath",
Branch = "branch",
ConnectionArn = "connectionArn",
Repository = "repository"
};
Properties
ArtifactPath
The absolute path wehre the artifact resides within the repo and branch, formatted as "folder/file.json.".
public string? ArtifactPath { get; set; }
Property Value
Remarks
Branch
The specific branch where the artifact resides.
public string? Branch { get; set; }
Property Value
Remarks
ConnectionArn
The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.
public string? ConnectionArn { get; set; }
Property Value
Remarks
Repository
The specific repository where the product’s artifact-to-be-synced resides, formatted as "Account/Repo.".
public string? Repository { get; set; }