Show / Hide Table of Contents

Interface CfnConnectorProfile.IOAuthCredentialsProperty

The OAuth credentials required for OAuth type authentication.

Namespace: Amazon.CDK.AWS.AppFlow
Assembly: Amazon.CDK.AWS.AppFlow.dll
Syntax (csharp)
public interface IOAuthCredentialsProperty
Syntax (vb)
Public Interface IOAuthCredentialsProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-oauthcredentials.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppFlow;

var oAuthCredentialsProperty = new OAuthCredentialsProperty {
    AccessToken = "accessToken",
    ClientId = "clientId",
    ClientSecret = "clientSecret",
    ConnectorOAuthRequest = new ConnectorOAuthRequestProperty {
        AuthCode = "authCode",
        RedirectUri = "redirectUri"
    },
    RefreshToken = "refreshToken"
};

Synopsis

Properties

AccessToken

The access token used to access protected SAPOData resources.

ClientId

The identifier for the desired client.

ClientSecret

The client secret used by the OAuth client to authenticate to the authorization server.

ConnectorOAuthRequest

CfnConnectorProfile.OAuthCredentialsProperty.ConnectorOAuthRequest.

RefreshToken

The refresh token used to refresh expired access token.

Properties

AccessToken

The access token used to access protected SAPOData resources.

virtual string AccessToken { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-oauthcredentials.html#cfn-appflow-connectorprofile-oauthcredentials-accesstoken

ClientId

The identifier for the desired client.

virtual string ClientId { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-oauthcredentials.html#cfn-appflow-connectorprofile-oauthcredentials-clientid

ClientSecret

The client secret used by the OAuth client to authenticate to the authorization server.

virtual string ClientSecret { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-oauthcredentials.html#cfn-appflow-connectorprofile-oauthcredentials-clientsecret

ConnectorOAuthRequest

CfnConnectorProfile.OAuthCredentialsProperty.ConnectorOAuthRequest.

virtual object ConnectorOAuthRequest { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-oauthcredentials.html#cfn-appflow-connectorprofile-oauthcredentials-connectoroauthrequest

RefreshToken

The refresh token used to refresh expired access token.

virtual string RefreshToken { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-oauthcredentials.html#cfn-appflow-connectorprofile-oauthcredentials-refreshtoken

Back to top Generated by DocFX