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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHarness.HarnessAgentCoreGatewayConfigPropertystatic final classAn implementation forCfnHarness.HarnessAgentCoreGatewayConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnHarness.HarnessGatewayOutboundAuthPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGatewayArn
- See Also:
-
getOutboundAuth
Returns union: eitherIResolvableorCfnHarness.HarnessGatewayOutboundAuthProperty- See Also:
-
builder
-