Interface CfnHarness.HarnessSkillGitAuthProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnHarness.HarnessSkillGitAuthProperty.Jsii$Proxy
Enclosing class:
CfnHarness

@Stability(Stable) public static interface CfnHarness.HarnessSkillGitAuthProperty extends software.amazon.jsii.JsiiSerializable
Authentication configuration for accessing a private git repository.

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.*;
 HarnessSkillGitAuthProperty harnessSkillGitAuthProperty = HarnessSkillGitAuthProperty.builder()
         .credentialArn("credentialArn")
         // the properties below are optional
         .username("username")
         .build();
 

See Also: