Interface CfnService.IOAuthClientDetailsProperty
OAuth client credentials.
Namespace: Amazon.CDK.AWS.DevOpsAgent
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnService.IOAuthClientDetailsProperty
Syntax (vb)
Public Interface CfnService.IOAuthClientDetailsProperty
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.DevOpsAgent;
var exchangeParameters;
var oAuthClientDetailsProperty = new OAuthClientDetailsProperty {
ClientId = "clientId",
ClientSecret = "clientSecret",
// the properties below are optional
ClientName = "clientName",
ExchangeParameters = exchangeParameters
};
Synopsis
Properties
| ClientId | OAuth client ID. |
| ClientName | User friendly OAuth client name. |
| ClientSecret | OAuth client secret. |
| ExchangeParameters | OAuth token exchange parameters. |
Properties
ClientId
OAuth client ID.
string ClientId { get; }
Property Value
Remarks
ClientName
User friendly OAuth client name.
string? ClientName { get; }
Property Value
Remarks
ClientSecret
OAuth client secret.
string ClientSecret { get; }
Property Value
Remarks
ExchangeParameters
OAuth token exchange parameters.
object? ExchangeParameters { get; }