Interface CfnHarness.HarnessAgentCoreGatewayConfigProperty

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

@Stability(Stable) public static interface CfnHarness.HarnessAgentCoreGatewayConfigProperty 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.*;
 Object awsIam;
 Object none;
 HarnessAgentCoreGatewayConfigProperty harnessAgentCoreGatewayConfigProperty = HarnessAgentCoreGatewayConfigProperty.builder()
         .gatewayArn("gatewayArn")
         // the properties below are optional
         .outboundAuth(HarnessGatewayOutboundAuthProperty.builder()
                 .awsIam(awsIam)
                 .none(none)
                 .oauth(OAuthCredentialProviderProperty.builder()
                         .providerArn("providerArn")
                         .scopes(List.of("scopes"))
                         // the properties below are optional
                         .customParameters(Map.of(
                                 "customParametersKey", "customParameters"))
                         .defaultReturnUrl("defaultReturnUrl")
                         .grantType("grantType")
                         .build())
                 .build())
         .build();
 

See Also: