@@ -305,6 +305,21 @@ import {
305
305
GetJourneyExecutionMetricsCommandInput ,
306
306
GetJourneyExecutionMetricsCommandOutput ,
307
307
} from "./commands/GetJourneyExecutionMetricsCommand" ;
308
+ import {
309
+ GetJourneyRunExecutionActivityMetricsCommand ,
310
+ GetJourneyRunExecutionActivityMetricsCommandInput ,
311
+ GetJourneyRunExecutionActivityMetricsCommandOutput ,
312
+ } from "./commands/GetJourneyRunExecutionActivityMetricsCommand" ;
313
+ import {
314
+ GetJourneyRunExecutionMetricsCommand ,
315
+ GetJourneyRunExecutionMetricsCommandInput ,
316
+ GetJourneyRunExecutionMetricsCommandOutput ,
317
+ } from "./commands/GetJourneyRunExecutionMetricsCommand" ;
318
+ import {
319
+ GetJourneyRunsCommand ,
320
+ GetJourneyRunsCommandInput ,
321
+ GetJourneyRunsCommandOutput ,
322
+ } from "./commands/GetJourneyRunsCommand" ;
308
323
import {
309
324
GetPushTemplateCommand ,
310
325
GetPushTemplateCommandInput ,
@@ -619,6 +634,9 @@ const commands = {
619
634
GetJourneyDateRangeKpiCommand,
620
635
GetJourneyExecutionActivityMetricsCommand,
621
636
GetJourneyExecutionMetricsCommand,
637
+ GetJourneyRunExecutionActivityMetricsCommand,
638
+ GetJourneyRunExecutionMetricsCommand,
639
+ GetJourneyRunsCommand,
622
640
GetPushTemplateCommand,
623
641
GetRecommenderConfigurationCommand,
624
642
GetRecommenderConfigurationsCommand,
@@ -1672,6 +1690,54 @@ export interface Pinpoint {
1672
1690
cb : ( err : any , data ?: GetJourneyExecutionMetricsCommandOutput ) => void
1673
1691
) : void ;
1674
1692
1693
+ /**
1694
+ * @see {@link GetJourneyRunExecutionActivityMetricsCommand }
1695
+ */
1696
+ getJourneyRunExecutionActivityMetrics (
1697
+ args : GetJourneyRunExecutionActivityMetricsCommandInput ,
1698
+ options ?: __HttpHandlerOptions
1699
+ ) : Promise < GetJourneyRunExecutionActivityMetricsCommandOutput > ;
1700
+ getJourneyRunExecutionActivityMetrics (
1701
+ args : GetJourneyRunExecutionActivityMetricsCommandInput ,
1702
+ cb : ( err : any , data ?: GetJourneyRunExecutionActivityMetricsCommandOutput ) => void
1703
+ ) : void ;
1704
+ getJourneyRunExecutionActivityMetrics (
1705
+ args : GetJourneyRunExecutionActivityMetricsCommandInput ,
1706
+ options : __HttpHandlerOptions ,
1707
+ cb : ( err : any , data ?: GetJourneyRunExecutionActivityMetricsCommandOutput ) => void
1708
+ ) : void ;
1709
+
1710
+ /**
1711
+ * @see {@link GetJourneyRunExecutionMetricsCommand }
1712
+ */
1713
+ getJourneyRunExecutionMetrics (
1714
+ args : GetJourneyRunExecutionMetricsCommandInput ,
1715
+ options ?: __HttpHandlerOptions
1716
+ ) : Promise < GetJourneyRunExecutionMetricsCommandOutput > ;
1717
+ getJourneyRunExecutionMetrics (
1718
+ args : GetJourneyRunExecutionMetricsCommandInput ,
1719
+ cb : ( err : any , data ?: GetJourneyRunExecutionMetricsCommandOutput ) => void
1720
+ ) : void ;
1721
+ getJourneyRunExecutionMetrics (
1722
+ args : GetJourneyRunExecutionMetricsCommandInput ,
1723
+ options : __HttpHandlerOptions ,
1724
+ cb : ( err : any , data ?: GetJourneyRunExecutionMetricsCommandOutput ) => void
1725
+ ) : void ;
1726
+
1727
+ /**
1728
+ * @see {@link GetJourneyRunsCommand }
1729
+ */
1730
+ getJourneyRuns (
1731
+ args : GetJourneyRunsCommandInput ,
1732
+ options ?: __HttpHandlerOptions
1733
+ ) : Promise < GetJourneyRunsCommandOutput > ;
1734
+ getJourneyRuns ( args : GetJourneyRunsCommandInput , cb : ( err : any , data ?: GetJourneyRunsCommandOutput ) => void ) : void ;
1735
+ getJourneyRuns (
1736
+ args : GetJourneyRunsCommandInput ,
1737
+ options : __HttpHandlerOptions ,
1738
+ cb : ( err : any , data ?: GetJourneyRunsCommandOutput ) => void
1739
+ ) : void ;
1740
+
1675
1741
/**
1676
1742
* @see {@link GetPushTemplateCommand }
1677
1743
*/
0 commit comments