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: