Interface CfnPlugin.PluginAuthConfigurationProperty

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

@Stability(Stable) public static interface CfnPlugin.PluginAuthConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Authentication configuration information for an Amazon Q Business plugin.

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.qbusiness.*;
 Object noAuthConfiguration;
 PluginAuthConfigurationProperty pluginAuthConfigurationProperty = PluginAuthConfigurationProperty.builder()
         .basicAuthConfiguration(BasicAuthConfigurationProperty.builder()
                 .roleArn("roleArn")
                 .secretArn("secretArn")
                 .build())
         .noAuthConfiguration(noAuthConfiguration)
         .oAuth2ClientCredentialConfiguration(OAuth2ClientCredentialConfigurationProperty.builder()
                 .roleArn("roleArn")
                 .secretArn("secretArn")
                 // the properties below are optional
                 .authorizationUrl("authorizationUrl")
                 .tokenUrl("tokenUrl")
                 .build())
         .build();
 

See Also: