Interface CfnHarness.HarnessSkillGitSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHarness.HarnessSkillGitSourceProperty.Jsii$Proxy
- Enclosing class:
CfnHarness
@Stability(Stable)
public static interface CfnHarness.HarnessSkillGitSourceProperty
extends software.amazon.jsii.JsiiSerializable
A git repository containing the skill, cloned over HTTPS.
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.bedrockagentcore.*;
HarnessSkillGitSourceProperty harnessSkillGitSourceProperty = HarnessSkillGitSourceProperty.builder()
.url("url")
// the properties below are optional
.auth(HarnessSkillGitAuthProperty.builder()
.credentialArn("credentialArn")
// the properties below are optional
.username("username")
.build())
.path("path")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHarness.HarnessSkillGitSourcePropertystatic final classAn implementation forCfnHarness.HarnessSkillGitSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUrl
The HTTPS URL of the git repository.- See Also:
-
getAuth
Authentication configuration for accessing a private git repository.Returns union: either
IResolvableorCfnHarness.HarnessSkillGitAuthProperty- See Also:
-
getPath
Subdirectory within the repository containing the skill.- See Also:
-
builder
-