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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHarness.HarnessSkillGitAuthPropertystatic final classAn implementation forCfnHarness.HarnessSkillGitAuthProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCredentialArn
The ARN of the credential in AgentCore Identity containing the password or personal access token.- See Also:
-
getUsername
Username for authentication.Defaults to 'oauth2' if not specified.
- See Also:
-
builder
-