Interface CfnOAuthClientApplicationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnOAuthClientApplicationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-22T17:37:32.284Z") @Stability(Stable) public interface CfnOAuthClientApplicationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnOAuthClientApplication.

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.quicksight.*;
 CfnOAuthClientApplicationProps cfnOAuthClientApplicationProps = CfnOAuthClientApplicationProps.builder()
         .name("name")
         .oAuthClientApplicationId("oAuthClientApplicationId")
         .oAuthClientAuthenticationType("oAuthClientAuthenticationType")
         .oAuthTokenEndpointUrl("oAuthTokenEndpointUrl")
         // the properties below are optional
         .clientId("clientId")
         .clientSecret("clientSecret")
         .dataSourceType("dataSourceType")
         .identityProviderVpcConnectionProperties(IdentityProviderVpcConnectionPropertiesProperty.builder()
                 .vpcConnectionArn("vpcConnectionArn")
                 .build())
         .oAuthAuthorizationEndpointUrl("oAuthAuthorizationEndpointUrl")
         .oAuthScopes("oAuthScopes")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: