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: