@Stability(value=Stable)
public static interface CfnConnectorProfile.OAuth2PropertiesProperty
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.services.appflow.*;
Object tokenUrlCustomProperties;
OAuth2PropertiesProperty oAuth2PropertiesProperty = OAuth2PropertiesProperty.builder()
.oAuth2GrantType("oAuth2GrantType")
.tokenUrl("tokenUrl")
.tokenUrlCustomProperties(tokenUrlCustomProperties)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnectorProfile.OAuth2PropertiesProperty.Builder
A builder for
CfnConnectorProfile.OAuth2PropertiesProperty |
static class |
CfnConnectorProfile.OAuth2PropertiesProperty.Jsii$Proxy
An implementation for
CfnConnectorProfile.OAuth2PropertiesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnectorProfile.OAuth2PropertiesProperty.Builder |
builder() |
default String |
getOAuth2GrantType()
The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.
|
default String |
getTokenUrl()
The token URL required for OAuth 2.0 authentication.
|
default Object |
getTokenUrlCustomProperties()
Associates your token URL with a map of properties that you define.
|
@Stability(value=Stable) @Nullable default String getOAuth2GrantType()
@Stability(value=Stable) @Nullable default String getTokenUrl()
@Stability(value=Stable) @Nullable default Object getTokenUrlCustomProperties()
Use this parameter to provide any additional details that the connector requires to authenticate your request.
@Stability(value=Stable) static CfnConnectorProfile.OAuth2PropertiesProperty.Builder builder()
Copyright © 2022. All rights reserved.