Interface CfnCloudFormationProduct.CodeStarParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCloudFormationProduct.CodeStarParametersProperty.Jsii$Proxy
- Enclosing class:
CfnCloudFormationProduct
@Stability(Stable)
public static interface CfnCloudFormationProduct.CodeStarParametersProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.servicecatalog.*;
CodeStarParametersProperty codeStarParametersProperty = CodeStarParametersProperty.builder()
.artifactPath("artifactPath")
.branch("branch")
.connectionArn("connectionArn")
.repository("repository")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCloudFormationProduct.CodeStarParametersPropertystatic final classAn implementation forCfnCloudFormationProduct.CodeStarParametersProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The absolute path wehre the artifact resides within the repo and branch, formatted as "folder/file.json.".The specific branch where the artifact resides.The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.The specific repository where the product’s artifact-to-be-synced resides, formatted as "Account/Repo.".Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArtifactPath
The absolute path wehre the artifact resides within the repo and branch, formatted as "folder/file.json.".- See Also:
-
getBranch
The specific branch where the artifact resides.- See Also:
-
getConnectionArn
The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.- See Also:
-
getRepository
The specific repository where the product’s artifact-to-be-synced resides, formatted as "Account/Repo.".- See Also:
-
builder
-