StripeResource
Handle
interface StripeResource extends IComputeResource, IResource, IResourceWithArgs, IResourceWithEndpoints, IResourceWithEnvironment, IResourceWithProbes, IResourceWithWaitSupport { webhookSigningSecret: string; withApiKey(apiKey: ParameterResource): StripeResource; withListen( forwardTo: IResourceWithEndpoints, webhookPath?: string, events?: string[]): StripeResource; withListenExternalService( forwardTo: ExternalServiceResource, webhookPath?: string, events?: string[]): StripeResource;} 5 members
Properties
property
webhookSigningSecret string get · set Gets the webhook signing secret retrieved from the Stripe CLI.
Methods
Configures the Stripe CLI to use a specific API key from a parameter.
withApiKey(apiKey: ParameterResource): StripeResourceParameters
apiKey ParameterResource Returns
StripeResource Configures the Stripe CLI to listen for webhooks and forward them to the specified URL expression.
withListen( forwardTo: IResourceWithEndpoints, webhookPath?: string, events?: string[]): StripeResourceParameters
forwardTo IResourceWithEndpoints webhookPath string optional = /webhooks/stripe events string[] optional Returns
StripeResource Configures the Stripe CLI to listen for webhooks and forward them to the specified URL expression.
withListenExternalService( forwardTo: ExternalServiceResource, webhookPath?: string, events?: string[]): StripeResourceParameters
forwardTo ExternalServiceResource webhookPath string optional = /webhooks/stripe events string[] optional Returns
StripeResource