Interface HubspotOAuth2CredentialProviderProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, OAuth2ClientCredentials, OAuth2CredentialProviderBaseProps, OAuth2CredentialProviderFactoryBaseProps
All Known Implementing Classes:
HubspotOAuth2CredentialProviderProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.129.0 (build eaca441)", date="2026-05-19T08:18:44.418Z") @Stability(Stable) public interface HubspotOAuth2CredentialProviderProps extends software.amazon.jsii.JsiiSerializable, OAuth2CredentialProviderFactoryBaseProps
Props for
invalid reference
OAuth2CredentialProvider.usingHubspot
.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.bedrockagentcore.*;
 SecretValue secretValue;
 HubspotOAuth2CredentialProviderProps hubspotOAuth2CredentialProviderProps = HubspotOAuth2CredentialProviderProps.builder()
         .clientId("clientId")
         .clientSecret(secretValue)
         // the properties below are optional
         .oAuth2CredentialProviderName("oAuth2CredentialProviderName")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: