Interface CfnOAuth2CredentialProviderPropsMixin.OnBehalfOfTokenExchangeConfigProperty

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

@Stability(Stable) public static interface CfnOAuth2CredentialProviderPropsMixin.OnBehalfOfTokenExchangeConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration for on-behalf-of token exchange.

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.*;
 OnBehalfOfTokenExchangeConfigProperty onBehalfOfTokenExchangeConfigProperty = OnBehalfOfTokenExchangeConfigProperty.builder()
         .grantType("grantType")
         .tokenExchangeGrantTypeConfig(TokenExchangeGrantTypeConfigProperty.builder()
                 .actorTokenContent("actorTokenContent")
                 .actorTokenScopes(List.of("actorTokenScopes"))
                 .build())
         .build();
 

See Also: