Interface CfnHarnessPropsMixin.HarnessGatewayOutboundAuthProperty

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

@Stability(Stable) public static interface CfnHarnessPropsMixin.HarnessGatewayOutboundAuthProperty 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.cfnpropertymixins.services.bedrockagentcore.*;
 Object awsIam;
 Object none;
 HarnessGatewayOutboundAuthProperty harnessGatewayOutboundAuthProperty = HarnessGatewayOutboundAuthProperty.builder()
         .awsIam(awsIam)
         .none(none)
         .oauth(OAuthCredentialProviderProperty.builder()
                 .customParameters(Map.of(
                         "customParametersKey", "customParameters"))
                 .defaultReturnUrl("defaultReturnUrl")
                 .grantType("grantType")
                 .providerArn("providerArn")
                 .scopes(List.of("scopes"))
                 .build())
         .build();
 

See Also: