-
Notifications
You must be signed in to change notification settings - Fork 583
/
index.ts
115 lines (115 loc) · 5.91 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
export * from "./PinpointClient";
export * from "./Pinpoint";
export * from "./commands/CreateAppCommand";
export * from "./commands/CreateCampaignCommand";
export * from "./commands/CreateEmailTemplateCommand";
export * from "./commands/CreateExportJobCommand";
export * from "./commands/CreateImportJobCommand";
export * from "./commands/CreateJourneyCommand";
export * from "./commands/CreatePushTemplateCommand";
export * from "./commands/CreateRecommenderConfigurationCommand";
export * from "./commands/CreateSegmentCommand";
export * from "./commands/CreateSmsTemplateCommand";
export * from "./commands/CreateVoiceTemplateCommand";
export * from "./commands/DeleteAdmChannelCommand";
export * from "./commands/DeleteApnsChannelCommand";
export * from "./commands/DeleteApnsSandboxChannelCommand";
export * from "./commands/DeleteApnsVoipChannelCommand";
export * from "./commands/DeleteApnsVoipSandboxChannelCommand";
export * from "./commands/DeleteAppCommand";
export * from "./commands/DeleteBaiduChannelCommand";
export * from "./commands/DeleteCampaignCommand";
export * from "./commands/DeleteEmailChannelCommand";
export * from "./commands/DeleteEmailTemplateCommand";
export * from "./commands/DeleteEndpointCommand";
export * from "./commands/DeleteEventStreamCommand";
export * from "./commands/DeleteGcmChannelCommand";
export * from "./commands/DeleteJourneyCommand";
export * from "./commands/DeletePushTemplateCommand";
export * from "./commands/DeleteRecommenderConfigurationCommand";
export * from "./commands/DeleteSegmentCommand";
export * from "./commands/DeleteSmsChannelCommand";
export * from "./commands/DeleteSmsTemplateCommand";
export * from "./commands/DeleteUserEndpointsCommand";
export * from "./commands/DeleteVoiceChannelCommand";
export * from "./commands/DeleteVoiceTemplateCommand";
export * from "./commands/GetAdmChannelCommand";
export * from "./commands/GetApnsChannelCommand";
export * from "./commands/GetApnsSandboxChannelCommand";
export * from "./commands/GetApnsVoipChannelCommand";
export * from "./commands/GetApnsVoipSandboxChannelCommand";
export * from "./commands/GetAppCommand";
export * from "./commands/GetApplicationDateRangeKpiCommand";
export * from "./commands/GetApplicationSettingsCommand";
export * from "./commands/GetAppsCommand";
export * from "./commands/GetBaiduChannelCommand";
export * from "./commands/GetCampaignCommand";
export * from "./commands/GetCampaignActivitiesCommand";
export * from "./commands/GetCampaignDateRangeKpiCommand";
export * from "./commands/GetCampaignsCommand";
export * from "./commands/GetCampaignVersionCommand";
export * from "./commands/GetCampaignVersionsCommand";
export * from "./commands/GetChannelsCommand";
export * from "./commands/GetEmailChannelCommand";
export * from "./commands/GetEmailTemplateCommand";
export * from "./commands/GetEndpointCommand";
export * from "./commands/GetEventStreamCommand";
export * from "./commands/GetExportJobCommand";
export * from "./commands/GetExportJobsCommand";
export * from "./commands/GetGcmChannelCommand";
export * from "./commands/GetImportJobCommand";
export * from "./commands/GetImportJobsCommand";
export * from "./commands/GetJourneyCommand";
export * from "./commands/GetJourneyDateRangeKpiCommand";
export * from "./commands/GetJourneyExecutionActivityMetricsCommand";
export * from "./commands/GetJourneyExecutionMetricsCommand";
export * from "./commands/GetPushTemplateCommand";
export * from "./commands/GetRecommenderConfigurationCommand";
export * from "./commands/GetRecommenderConfigurationsCommand";
export * from "./commands/GetSegmentCommand";
export * from "./commands/GetSegmentExportJobsCommand";
export * from "./commands/GetSegmentImportJobsCommand";
export * from "./commands/GetSegmentsCommand";
export * from "./commands/GetSegmentVersionCommand";
export * from "./commands/GetSegmentVersionsCommand";
export * from "./commands/GetSmsChannelCommand";
export * from "./commands/GetSmsTemplateCommand";
export * from "./commands/GetUserEndpointsCommand";
export * from "./commands/GetVoiceChannelCommand";
export * from "./commands/GetVoiceTemplateCommand";
export * from "./commands/ListJourneysCommand";
export * from "./commands/ListTagsForResourceCommand";
export * from "./commands/ListTemplatesCommand";
export * from "./commands/ListTemplateVersionsCommand";
export * from "./commands/PhoneNumberValidateCommand";
export * from "./commands/PutEventsCommand";
export * from "./commands/PutEventStreamCommand";
export * from "./commands/RemoveAttributesCommand";
export * from "./commands/SendMessagesCommand";
export * from "./commands/SendUsersMessagesCommand";
export * from "./commands/TagResourceCommand";
export * from "./commands/UntagResourceCommand";
export * from "./commands/UpdateAdmChannelCommand";
export * from "./commands/UpdateApnsChannelCommand";
export * from "./commands/UpdateApnsSandboxChannelCommand";
export * from "./commands/UpdateApnsVoipChannelCommand";
export * from "./commands/UpdateApnsVoipSandboxChannelCommand";
export * from "./commands/UpdateApplicationSettingsCommand";
export * from "./commands/UpdateBaiduChannelCommand";
export * from "./commands/UpdateCampaignCommand";
export * from "./commands/UpdateEmailChannelCommand";
export * from "./commands/UpdateEmailTemplateCommand";
export * from "./commands/UpdateEndpointCommand";
export * from "./commands/UpdateEndpointsBatchCommand";
export * from "./commands/UpdateGcmChannelCommand";
export * from "./commands/UpdateJourneyCommand";
export * from "./commands/UpdateJourneyStateCommand";
export * from "./commands/UpdatePushTemplateCommand";
export * from "./commands/UpdateRecommenderConfigurationCommand";
export * from "./commands/UpdateSegmentCommand";
export * from "./commands/UpdateSmsChannelCommand";
export * from "./commands/UpdateSmsTemplateCommand";
export * from "./commands/UpdateTemplateActiveVersionCommand";
export * from "./commands/UpdateVoiceChannelCommand";
export * from "./commands/UpdateVoiceTemplateCommand";
export * from "./models/index";