Interface CfnConnection.IClientParametersProperty
The OAuth authorization parameters to use for the connection.
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConnection.IClientParametersProperty
Syntax (vb)
Public Interface CfnConnection.IClientParametersProperty
Remarks
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.Events;
var clientParametersProperty = new ClientParametersProperty {
ClientId = "clientId",
ClientSecret = "clientSecret"
};
Synopsis
Properties
| ClientId | The client ID to use for OAuth authorization. |
| ClientSecret | The client secret assciated with the client ID to use for OAuth authorization. |
Properties
ClientId
The client ID to use for OAuth authorization.
string ClientId { get; }
Property Value
Remarks
ClientSecret
The client secret assciated with the client ID to use for OAuth authorization.
string ClientSecret { get; }