Interface SpotifyOAuth2CredentialProviderProps

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

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

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;
 SpotifyOAuth2CredentialProviderProps spotifyOAuth2CredentialProviderProps = SpotifyOAuth2CredentialProviderProps.builder()
         .clientId("clientId")
         .clientSecret(secretValue)
         // the properties below are optional
         .oAuth2CredentialProviderName("oAuth2CredentialProviderName")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: