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