Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-service-oauthclientdetails.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.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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-service-oauthclientdetails.html#cfn-devopsagent-service-oauthclientdetails-clientid

ClientName

User friendly OAuth client name.

string? ClientName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-service-oauthclientdetails.html#cfn-devopsagent-service-oauthclientdetails-clientname

ClientSecret

OAuth client secret.

string ClientSecret { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-service-oauthclientdetails.html#cfn-devopsagent-service-oauthclientdetails-clientsecret

ExchangeParameters

OAuth token exchange parameters.

object? ExchangeParameters { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-service-oauthclientdetails.html#cfn-devopsagent-service-oauthclientdetails-exchangeparameters

Back to top Generated by DocFX