Interface CfnHarness.HarnessSkillProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHarness.HarnessSkillProperty.Jsii$Proxy
- Enclosing class:
CfnHarness
@Stability(Stable)
public static interface CfnHarness.HarnessSkillProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
HarnessSkillProperty harnessSkillProperty = HarnessSkillProperty.builder()
.awsSkills(HarnessSkillAwsSkillsSourceProperty.builder()
.paths(List.of("paths"))
.build())
.git(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())
.path("path")
.s3(HarnessSkillS3SourceProperty.builder()
.uri("uri")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHarness.HarnessSkillPropertystatic final classAn implementation forCfnHarness.HarnessSkillProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectAWS Skills baked into the Harness's underlying Runtime.default ObjectgetGit()A git repository containing the skill, cloned over HTTPS.default StringgetPath()The filesystem path to the skill definition.default ObjectgetS3()An S3 source containing the skill.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsSkills
AWS Skills baked into the Harness's underlying Runtime.Returns union: either
IResolvableorCfnHarness.HarnessSkillAwsSkillsSourceProperty- See Also:
-
getGit
A git repository containing the skill, cloned over HTTPS.Returns union: either
IResolvableorCfnHarness.HarnessSkillGitSourceProperty- See Also:
-
getPath
The filesystem path to the skill definition.- See Also:
-
getS3
An S3 source containing the skill.Returns union: either
IResolvableorCfnHarness.HarnessSkillS3SourceProperty- See Also:
-
builder
-