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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOAuthClientApplicationPropsstatic final classAn implementation forCfnOAuthClientApplicationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
- See Also:
-
getOAuthClientApplicationId
- See Also:
-
getOAuthClientAuthenticationType
- See Also:
-
getOAuthTokenEndpointUrl
- See Also:
-
getClientId
- See Also:
-
getClientSecret
- See Also:
-
getDataSourceType
- See Also:
-
getIdentityProviderVpcConnectionProperties
Returns union: eitherIResolvableorCfnOAuthClientApplication.IdentityProviderVpcConnectionPropertiesProperty- See Also:
-
getOAuthAuthorizationEndpointUrl
- See Also:
-
getOAuthScopes
- See Also:
-
getTags
- See Also:
-
builder
-