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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHarnessPropsMixin.HarnessGatewayOutboundAuthPropertystatic final classAn implementation forCfnHarnessPropsMixin.HarnessGatewayOutboundAuthProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Objectdefault ObjectgetNone()default ObjectgetOauth()Returns union: eitherIResolvableorCfnHarnessPropsMixin.OAuthCredentialProviderPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsIam
- See Also:
-
getNone
- See Also:
-
getOauth
Returns union: eitherIResolvableorCfnHarnessPropsMixin.OAuthCredentialProviderProperty- See Also:
-
builder
-