Skip to content

Commit

Permalink
Fixes #4659
Browse files Browse the repository at this point in the history
  • Loading branch information
Zemnmez committed Feb 16, 2024
1 parent 82d7a79 commit f9d238e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ts/pulumi/lib/associate_phone_number_contact_flow.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { Input } from '@pulumi/pulumi';
import { CreateResult, ResourceProvider } from '@pulumi/pulumi/dynamic/index.js';

export interface AssociatePhoneNumberContactFlowInputs {
ContactFlowId: Input<string>;
InstanceId: Input<string>;
}

/**
* @see https://docs.aws.amazon.com/connect/latest/APIReference/API_AssociatePhoneNumberContactFlow.html
*/
class AssociatePhoneNumberContactFlowResourceProvider implements ResourceProvider {
static endpoint = "/phone-number/PhoneNumberId/contact-flow"
static method = "PUT"
async create(inputs: AssociatePhoneNumberContactFlowInputs): Promise<CreateResult> {
fetch(
}
}

0 comments on commit f9d238e

Please sign in to comment.