Interface IFacebookOAuth2CredentialProviderProps
Props for {@link OAuth2CredentialProvider.usingFacebook}.
Inherited Members
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFacebookOAuth2CredentialProviderProps : IOAuth2CredentialProviderFactoryBaseProps, IOAuth2CredentialProviderBaseProps, IOAuth2ClientCredentials
Syntax (vb)
Public Interface IFacebookOAuth2CredentialProviderProps Inherits IOAuth2CredentialProviderFactoryBaseProps, IOAuth2CredentialProviderBaseProps, IOAuth2ClientCredentials
Remarks
See: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/identity-idp-facebook.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;
using Amazon.CDK.AWS.BedrockAgentCore;
SecretValue secretValue;
var facebookOAuth2CredentialProviderProps = new FacebookOAuth2CredentialProviderProps {
ClientId = "clientId",
ClientSecret = secretValue,
// the properties below are optional
OAuth2CredentialProviderName = "oAuth2CredentialProviderName",
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};