@aws-sdk/client-device-farm 3.687.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,12 +10,12 @@ export interface TrialMinutes {
10
10
  * <p>The total number of free trial minutes that the account started with.</p>
11
11
  * @public
12
12
  */
13
- total?: number;
13
+ total?: number | undefined;
14
14
  /**
15
15
  * <p>The number of free trial minutes remaining in the account.</p>
16
16
  * @public
17
17
  */
18
- remaining?: number;
18
+ remaining?: number | undefined;
19
19
  }
20
20
  /**
21
21
  * @public
@@ -39,28 +39,28 @@ export interface AccountSettings {
39
39
  * container.</p>
40
40
  * @public
41
41
  */
42
- awsAccountNumber?: string;
42
+ awsAccountNumber?: string | undefined;
43
43
  /**
44
44
  * <p>Returns the unmetered devices you have purchased or want to purchase.</p>
45
45
  * @public
46
46
  */
47
- unmeteredDevices?: Partial<Record<DevicePlatform, number>>;
47
+ unmeteredDevices?: Partial<Record<DevicePlatform, number>> | undefined;
48
48
  /**
49
49
  * <p>Returns the unmetered remote access devices you have purchased or want to
50
50
  * purchase.</p>
51
51
  * @public
52
52
  */
53
- unmeteredRemoteAccessDevices?: Partial<Record<DevicePlatform, number>>;
53
+ unmeteredRemoteAccessDevices?: Partial<Record<DevicePlatform, number>> | undefined;
54
54
  /**
55
55
  * <p>The maximum number of minutes a test run executes before it times out.</p>
56
56
  * @public
57
57
  */
58
- maxJobTimeoutMinutes?: number;
58
+ maxJobTimeoutMinutes?: number | undefined;
59
59
  /**
60
60
  * <p>Information about an AWS account's usage of free trial device minutes.</p>
61
61
  * @public
62
62
  */
63
- trialMinutes?: TrialMinutes;
63
+ trialMinutes?: TrialMinutes | undefined;
64
64
  /**
65
65
  * <p>The maximum number of device slots that the AWS account can purchase. Each maximum
66
66
  * is expressed as an <code>offering-id:number</code> pair, where the
@@ -68,13 +68,13 @@ export interface AccountSettings {
68
68
  * <code>ListOfferings</code> command.</p>
69
69
  * @public
70
70
  */
71
- maxSlots?: Record<string, number>;
71
+ maxSlots?: Record<string, number> | undefined;
72
72
  /**
73
73
  * <p>The default number of minutes (at the account level) a test run executes before it times out. The
74
74
  * default value is 150 minutes.</p>
75
75
  * @public
76
76
  */
77
- defaultJobTimeoutMinutes?: number;
77
+ defaultJobTimeoutMinutes?: number | undefined;
78
78
  /**
79
79
  * <p>When set to <code>true</code>, for private devices, Device Farm does not sign your app again. For public
80
80
  * devices, Device Farm always signs your apps again.</p>
@@ -82,7 +82,7 @@ export interface AccountSettings {
82
82
  * Farm FAQs</i>.</p>
83
83
  * @public
84
84
  */
85
- skipAppResign?: boolean;
85
+ skipAppResign?: boolean | undefined;
86
86
  }
87
87
  /**
88
88
  * <p>An invalid argument was specified.</p>
@@ -144,12 +144,12 @@ export interface Artifact {
144
144
  * <p>The artifact's ARN.</p>
145
145
  * @public
146
146
  */
147
- arn?: string;
147
+ arn?: string | undefined;
148
148
  /**
149
149
  * <p>The artifact's name.</p>
150
150
  * @public
151
151
  */
152
- name?: string;
152
+ name?: string | undefined;
153
153
  /**
154
154
  * <p>The artifact's type.</p>
155
155
  * <p>Allowed values include the following:</p>
@@ -220,18 +220,18 @@ export interface Artifact {
220
220
  * </ul>
221
221
  * @public
222
222
  */
223
- type?: ArtifactType;
223
+ type?: ArtifactType | undefined;
224
224
  /**
225
225
  * <p>The artifact's file extension.</p>
226
226
  * @public
227
227
  */
228
- extension?: string;
228
+ extension?: string | undefined;
229
229
  /**
230
230
  * <p>The presigned Amazon S3 URL that can be used with a GET request to download the artifact's
231
231
  * file.</p>
232
232
  * @public
233
233
  */
234
- url?: string;
234
+ url?: string | undefined;
235
235
  }
236
236
  /**
237
237
  * @public
@@ -279,37 +279,37 @@ export interface Counters {
279
279
  * <p>The total number of entities.</p>
280
280
  * @public
281
281
  */
282
- total?: number;
282
+ total?: number | undefined;
283
283
  /**
284
284
  * <p>The number of passed entities.</p>
285
285
  * @public
286
286
  */
287
- passed?: number;
287
+ passed?: number | undefined;
288
288
  /**
289
289
  * <p>The number of failed entities.</p>
290
290
  * @public
291
291
  */
292
- failed?: number;
292
+ failed?: number | undefined;
293
293
  /**
294
294
  * <p>The number of warned entities.</p>
295
295
  * @public
296
296
  */
297
- warned?: number;
297
+ warned?: number | undefined;
298
298
  /**
299
299
  * <p>The number of errored entities.</p>
300
300
  * @public
301
301
  */
302
- errored?: number;
302
+ errored?: number | undefined;
303
303
  /**
304
304
  * <p>The number of stopped entities.</p>
305
305
  * @public
306
306
  */
307
- stopped?: number;
307
+ stopped?: number | undefined;
308
308
  /**
309
309
  * <p>The number of skipped entities.</p>
310
310
  * @public
311
311
  */
312
- skipped?: number;
312
+ skipped?: number | undefined;
313
313
  }
314
314
  /**
315
315
  * <p>Represents the amount of CPU that an app is using on a physical device. Does not represent system-wide
@@ -321,18 +321,18 @@ export interface CPU {
321
321
  * <p>The CPU's frequency.</p>
322
322
  * @public
323
323
  */
324
- frequency?: string;
324
+ frequency?: string | undefined;
325
325
  /**
326
326
  * <p>The CPU's architecture (for example, x86 or ARM).</p>
327
327
  * @public
328
328
  */
329
- architecture?: string;
329
+ architecture?: string | undefined;
330
330
  /**
331
331
  * <p>The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2
332
332
  * GHz CPU is expressed as 1200000000.</p>
333
333
  * @public
334
334
  */
335
- clock?: number;
335
+ clock?: number | undefined;
336
336
  }
337
337
  /**
338
338
  * @public
@@ -482,19 +482,19 @@ export interface Rule {
482
482
  * </dl>
483
483
  * @public
484
484
  */
485
- attribute?: DeviceAttribute;
485
+ attribute?: DeviceAttribute | undefined;
486
486
  /**
487
487
  * <p>Specifies how Device Farm compares the rule's attribute to the value. For the
488
488
  * operators that are supported by each attribute, see the attribute
489
489
  * descriptions.</p>
490
490
  * @public
491
491
  */
492
- operator?: RuleOperator;
492
+ operator?: RuleOperator | undefined;
493
493
  /**
494
494
  * <p>The rule's value.</p>
495
495
  * @public
496
496
  */
497
- value?: string;
497
+ value?: string | undefined;
498
498
  }
499
499
  /**
500
500
  * <p>Represents a request to the create device pool operation.</p>
@@ -515,7 +515,7 @@ export interface CreateDevicePoolRequest {
515
515
  * <p>The device pool's description.</p>
516
516
  * @public
517
517
  */
518
- description?: string;
518
+ description?: string | undefined;
519
519
  /**
520
520
  * <p>The device pool's rules.</p>
521
521
  * @public
@@ -530,7 +530,7 @@ export interface CreateDevicePoolRequest {
530
530
  * by running tests.</p>
531
531
  * @public
532
532
  */
533
- maxDevices?: number;
533
+ maxDevices?: number | undefined;
534
534
  }
535
535
  /**
536
536
  * @public
@@ -553,17 +553,17 @@ export interface DevicePool {
553
553
  * <p>The device pool's ARN.</p>
554
554
  * @public
555
555
  */
556
- arn?: string;
556
+ arn?: string | undefined;
557
557
  /**
558
558
  * <p>The device pool's name.</p>
559
559
  * @public
560
560
  */
561
- name?: string;
561
+ name?: string | undefined;
562
562
  /**
563
563
  * <p>The device pool's description.</p>
564
564
  * @public
565
565
  */
566
- description?: string;
566
+ description?: string | undefined;
567
567
  /**
568
568
  * <p>The device pool's type.</p>
569
569
  * <p>Allowed values include:</p>
@@ -579,12 +579,12 @@ export interface DevicePool {
579
579
  * </ul>
580
580
  * @public
581
581
  */
582
- type?: DevicePoolType;
582
+ type?: DevicePoolType | undefined;
583
583
  /**
584
584
  * <p>Information about the device pool's rules.</p>
585
585
  * @public
586
586
  */
587
- rules?: Rule[];
587
+ rules?: Rule[] | undefined;
588
588
  /**
589
589
  * <p>The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are
590
590
  * available and meet the criteria that you assign for the <code>rules</code> parameter. Depending on how many
@@ -594,7 +594,7 @@ export interface DevicePool {
594
594
  * by running tests.</p>
595
595
  * @public
596
596
  */
597
- maxDevices?: number;
597
+ maxDevices?: number | undefined;
598
598
  }
599
599
  /**
600
600
  * <p>Represents the result of a create device pool request.</p>
@@ -605,7 +605,7 @@ export interface CreateDevicePoolResult {
605
605
  * <p>The newly created device pool.</p>
606
606
  * @public
607
607
  */
608
- devicePool?: DevicePool;
608
+ devicePool?: DevicePool | undefined;
609
609
  }
610
610
  /**
611
611
  * <p>A limit was exceeded.</p>
@@ -656,13 +656,13 @@ export interface CreateInstanceProfileRequest {
656
656
  * <p>The description of your instance profile.</p>
657
657
  * @public
658
658
  */
659
- description?: string;
659
+ description?: string | undefined;
660
660
  /**
661
661
  * <p>When set to <code>true</code>, Device Farm removes app packages after a test run. The default value is
662
662
  * <code>false</code> for private devices.</p>
663
663
  * @public
664
664
  */
665
- packageCleanup?: boolean;
665
+ packageCleanup?: boolean | undefined;
666
666
  /**
667
667
  * <p>An array of strings that specifies the list of app packages that should not be cleaned up from the device
668
668
  * after a test run.</p>
@@ -670,13 +670,13 @@ export interface CreateInstanceProfileRequest {
670
670
  * <code>true</code>.</p>
671
671
  * @public
672
672
  */
673
- excludeAppPackagesFromCleanup?: string[];
673
+ excludeAppPackagesFromCleanup?: string[] | undefined;
674
674
  /**
675
675
  * <p>When set to <code>true</code>, Device Farm reboots the instance after a test run. The default value is
676
676
  * <code>true</code>.</p>
677
677
  * @public
678
678
  */
679
- rebootAfterUse?: boolean;
679
+ rebootAfterUse?: boolean | undefined;
680
680
  }
681
681
  /**
682
682
  * <p>Represents the instance profile.</p>
@@ -687,13 +687,13 @@ export interface InstanceProfile {
687
687
  * <p>The Amazon Resource Name (ARN) of the instance profile.</p>
688
688
  * @public
689
689
  */
690
- arn?: string;
690
+ arn?: string | undefined;
691
691
  /**
692
692
  * <p>When set to <code>true</code>, Device Farm removes app packages after a test run. The default value is
693
693
  * <code>false</code> for private devices.</p>
694
694
  * @public
695
695
  */
696
- packageCleanup?: boolean;
696
+ packageCleanup?: boolean | undefined;
697
697
  /**
698
698
  * <p>An array of strings containing the list of app packages that should not be cleaned up from the device
699
699
  * after a test run completes.</p>
@@ -701,23 +701,23 @@ export interface InstanceProfile {
701
701
  * <code>true</code>.</p>
702
702
  * @public
703
703
  */
704
- excludeAppPackagesFromCleanup?: string[];
704
+ excludeAppPackagesFromCleanup?: string[] | undefined;
705
705
  /**
706
706
  * <p>When set to <code>true</code>, Device Farm reboots the instance after a test run. The default value is
707
707
  * <code>true</code>.</p>
708
708
  * @public
709
709
  */
710
- rebootAfterUse?: boolean;
710
+ rebootAfterUse?: boolean | undefined;
711
711
  /**
712
712
  * <p>The name of the instance profile.</p>
713
713
  * @public
714
714
  */
715
- name?: string;
715
+ name?: string | undefined;
716
716
  /**
717
717
  * <p>The description of the instance profile.</p>
718
718
  * @public
719
719
  */
720
- description?: string;
720
+ description?: string | undefined;
721
721
  }
722
722
  /**
723
723
  * @public
@@ -727,7 +727,7 @@ export interface CreateInstanceProfileResult {
727
727
  * <p>An object that contains information about your instance profile.</p>
728
728
  * @public
729
729
  */
730
- instanceProfile?: InstanceProfile;
730
+ instanceProfile?: InstanceProfile | undefined;
731
731
  }
732
732
  /**
733
733
  * @public
@@ -760,59 +760,59 @@ export interface CreateNetworkProfileRequest {
760
760
  * <p>The description of the network profile.</p>
761
761
  * @public
762
762
  */
763
- description?: string;
763
+ description?: string | undefined;
764
764
  /**
765
765
  * <p>The type of network profile to create. Valid values are listed here.</p>
766
766
  * @public
767
767
  */
768
- type?: NetworkProfileType;
768
+ type?: NetworkProfileType | undefined;
769
769
  /**
770
770
  * <p>The data throughput rate in bits per second, as an integer from 0 to
771
771
  * 104857600.</p>
772
772
  * @public
773
773
  */
774
- uplinkBandwidthBits?: number;
774
+ uplinkBandwidthBits?: number | undefined;
775
775
  /**
776
776
  * <p>The data throughput rate in bits per second, as an integer from 0 to
777
777
  * 104857600.</p>
778
778
  * @public
779
779
  */
780
- downlinkBandwidthBits?: number;
780
+ downlinkBandwidthBits?: number | undefined;
781
781
  /**
782
782
  * <p>Delay time for all packets to destination in milliseconds as an integer from 0 to
783
783
  * 2000.</p>
784
784
  * @public
785
785
  */
786
- uplinkDelayMs?: number;
786
+ uplinkDelayMs?: number | undefined;
787
787
  /**
788
788
  * <p>Delay time for all packets to destination in milliseconds as an integer from 0 to
789
789
  * 2000.</p>
790
790
  * @public
791
791
  */
792
- downlinkDelayMs?: number;
792
+ downlinkDelayMs?: number | undefined;
793
793
  /**
794
794
  * <p>Time variation in the delay of received packets in milliseconds as an integer from
795
795
  * 0 to 2000.</p>
796
796
  * @public
797
797
  */
798
- uplinkJitterMs?: number;
798
+ uplinkJitterMs?: number | undefined;
799
799
  /**
800
800
  * <p>Time variation in the delay of received packets in milliseconds as an integer from
801
801
  * 0 to 2000.</p>
802
802
  * @public
803
803
  */
804
- downlinkJitterMs?: number;
804
+ downlinkJitterMs?: number | undefined;
805
805
  /**
806
806
  * <p>Proportion of transmitted packets that fail to arrive from 0 to 100
807
807
  * percent.</p>
808
808
  * @public
809
809
  */
810
- uplinkLossPercent?: number;
810
+ uplinkLossPercent?: number | undefined;
811
811
  /**
812
812
  * <p>Proportion of received packets that fail to arrive from 0 to 100 percent.</p>
813
813
  * @public
814
814
  */
815
- downlinkLossPercent?: number;
815
+ downlinkLossPercent?: number | undefined;
816
816
  }
817
817
  /**
818
818
  * <p>An array of settings that describes characteristics of a network profile.</p>
@@ -823,69 +823,69 @@ export interface NetworkProfile {
823
823
  * <p>The Amazon Resource Name (ARN) of the network profile.</p>
824
824
  * @public
825
825
  */
826
- arn?: string;
826
+ arn?: string | undefined;
827
827
  /**
828
828
  * <p>The name of the network profile.</p>
829
829
  * @public
830
830
  */
831
- name?: string;
831
+ name?: string | undefined;
832
832
  /**
833
833
  * <p>The description of the network profile.</p>
834
834
  * @public
835
835
  */
836
- description?: string;
836
+ description?: string | undefined;
837
837
  /**
838
838
  * <p>The type of network profile. Valid values are listed here.</p>
839
839
  * @public
840
840
  */
841
- type?: NetworkProfileType;
841
+ type?: NetworkProfileType | undefined;
842
842
  /**
843
843
  * <p>The data throughput rate in bits per second, as an integer from 0 to
844
844
  * 104857600.</p>
845
845
  * @public
846
846
  */
847
- uplinkBandwidthBits?: number;
847
+ uplinkBandwidthBits?: number | undefined;
848
848
  /**
849
849
  * <p>The data throughput rate in bits per second, as an integer from 0 to
850
850
  * 104857600.</p>
851
851
  * @public
852
852
  */
853
- downlinkBandwidthBits?: number;
853
+ downlinkBandwidthBits?: number | undefined;
854
854
  /**
855
855
  * <p>Delay time for all packets to destination in milliseconds as an integer from 0 to
856
856
  * 2000.</p>
857
857
  * @public
858
858
  */
859
- uplinkDelayMs?: number;
859
+ uplinkDelayMs?: number | undefined;
860
860
  /**
861
861
  * <p>Delay time for all packets to destination in milliseconds as an integer from 0 to
862
862
  * 2000.</p>
863
863
  * @public
864
864
  */
865
- downlinkDelayMs?: number;
865
+ downlinkDelayMs?: number | undefined;
866
866
  /**
867
867
  * <p>Time variation in the delay of received packets in milliseconds as an integer from
868
868
  * 0 to 2000.</p>
869
869
  * @public
870
870
  */
871
- uplinkJitterMs?: number;
871
+ uplinkJitterMs?: number | undefined;
872
872
  /**
873
873
  * <p>Time variation in the delay of received packets in milliseconds as an integer from
874
874
  * 0 to 2000.</p>
875
875
  * @public
876
876
  */
877
- downlinkJitterMs?: number;
877
+ downlinkJitterMs?: number | undefined;
878
878
  /**
879
879
  * <p>Proportion of transmitted packets that fail to arrive from 0 to 100
880
880
  * percent.</p>
881
881
  * @public
882
882
  */
883
- uplinkLossPercent?: number;
883
+ uplinkLossPercent?: number | undefined;
884
884
  /**
885
885
  * <p>Proportion of received packets that fail to arrive from 0 to 100 percent.</p>
886
886
  * @public
887
887
  */
888
- downlinkLossPercent?: number;
888
+ downlinkLossPercent?: number | undefined;
889
889
  }
890
890
  /**
891
891
  * @public
@@ -896,7 +896,7 @@ export interface CreateNetworkProfileResult {
896
896
  * request.</p>
897
897
  * @public
898
898
  */
899
- networkProfile?: NetworkProfile;
899
+ networkProfile?: NetworkProfile | undefined;
900
900
  }
901
901
  /**
902
902
  * <p>Contains the VPC configuration data necessary to interface with AWS Device Farm's services.</p>
@@ -934,12 +934,12 @@ export interface CreateProjectRequest {
934
934
  * specified execution timeout value unless overridden when scheduling a run.</p>
935
935
  * @public
936
936
  */
937
- defaultJobTimeoutMinutes?: number;
937
+ defaultJobTimeoutMinutes?: number | undefined;
938
938
  /**
939
939
  * <p>The VPC security groups and subnets that are attached to a project.</p>
940
940
  * @public
941
941
  */
942
- vpcConfig?: VpcConfig;
942
+ vpcConfig?: VpcConfig | undefined;
943
943
  }
944
944
  /**
945
945
  * <p>Represents an operating-system neutral workspace for running and managing
@@ -951,28 +951,28 @@ export interface Project {
951
951
  * <p>The project's ARN.</p>
952
952
  * @public
953
953
  */
954
- arn?: string;
954
+ arn?: string | undefined;
955
955
  /**
956
956
  * <p>The project's name.</p>
957
957
  * @public
958
958
  */
959
- name?: string;
959
+ name?: string | undefined;
960
960
  /**
961
961
  * <p>The default number of minutes (at the project level) a test run executes before it times out. The
962
962
  * default value is 150 minutes.</p>
963
963
  * @public
964
964
  */
965
- defaultJobTimeoutMinutes?: number;
965
+ defaultJobTimeoutMinutes?: number | undefined;
966
966
  /**
967
967
  * <p>When the project was created.</p>
968
968
  * @public
969
969
  */
970
- created?: Date;
970
+ created?: Date | undefined;
971
971
  /**
972
972
  * <p>The VPC security groups and subnets that are attached to a project.</p>
973
973
  * @public
974
974
  */
975
- vpcConfig?: VpcConfig;
975
+ vpcConfig?: VpcConfig | undefined;
976
976
  }
977
977
  /**
978
978
  * <p>Represents the result of a create project request.</p>
@@ -983,7 +983,7 @@ export interface CreateProjectResult {
983
983
  * <p>The newly created project.</p>
984
984
  * @public
985
985
  */
986
- project?: Project;
986
+ project?: Project | undefined;
987
987
  }
988
988
  /**
989
989
  * <p>The operation was not successful. Try again.</p>
@@ -992,7 +992,7 @@ export interface CreateProjectResult {
992
992
  export declare class TagOperationException extends __BaseException {
993
993
  readonly name: "TagOperationException";
994
994
  readonly $fault: "client";
995
- resourceName?: string;
995
+ resourceName?: string | undefined;
996
996
  /**
997
997
  * @internal
998
998
  */
@@ -1008,12 +1008,12 @@ export interface CreateRemoteAccessSessionConfiguration {
1008
1008
  * <p>The billing method for the remote access session.</p>
1009
1009
  * @public
1010
1010
  */
1011
- billingMethod?: BillingMethod;
1011
+ billingMethod?: BillingMethod | undefined;
1012
1012
  /**
1013
1013
  * <p>An array of ARNs included in the VPC endpoint configuration.</p>
1014
1014
  * @public
1015
1015
  */
1016
- vpceConfigurationArns?: string[];
1016
+ vpceConfigurationArns?: string[] | undefined;
1017
1017
  }
1018
1018
  /**
1019
1019
  * @public
@@ -1049,7 +1049,7 @@ export interface CreateRemoteAccessSessionRequest {
1049
1049
  * remote access session.</p>
1050
1050
  * @public
1051
1051
  */
1052
- instanceArn?: string;
1052
+ instanceArn?: string | undefined;
1053
1053
  /**
1054
1054
  * <p>Ignored. The public key of the <code>ssh</code> key pair you want to use for connecting to remote
1055
1055
  * devices in your remote debugging session. This key is required only if <code>remoteDebugEnabled</code> is
@@ -1058,7 +1058,7 @@ export interface CreateRemoteAccessSessionRequest {
1058
1058
  * longer supported</a>.</p>
1059
1059
  * @public
1060
1060
  */
1061
- sshPublicKey?: string;
1061
+ sshPublicKey?: string | undefined;
1062
1062
  /**
1063
1063
  * <p>Set to <code>true</code> if you want to access devices remotely for debugging in
1064
1064
  * your remote access session.</p>
@@ -1066,24 +1066,24 @@ export interface CreateRemoteAccessSessionRequest {
1066
1066
  * longer supported</a>.</p>
1067
1067
  * @public
1068
1068
  */
1069
- remoteDebugEnabled?: boolean;
1069
+ remoteDebugEnabled?: boolean | undefined;
1070
1070
  /**
1071
1071
  * <p>Set to <code>true</code> to enable remote recording for the remote access
1072
1072
  * session.</p>
1073
1073
  * @public
1074
1074
  */
1075
- remoteRecordEnabled?: boolean;
1075
+ remoteRecordEnabled?: boolean | undefined;
1076
1076
  /**
1077
1077
  * <p>The Amazon Resource Name (ARN) for the app to be recorded in the remote access
1078
1078
  * session.</p>
1079
1079
  * @public
1080
1080
  */
1081
- remoteRecordAppArn?: string;
1081
+ remoteRecordAppArn?: string | undefined;
1082
1082
  /**
1083
1083
  * <p>The name of the remote access session to create.</p>
1084
1084
  * @public
1085
1085
  */
1086
- name?: string;
1086
+ name?: string | undefined;
1087
1087
  /**
1088
1088
  * <p>Unique identifier for the client. If you want access to multiple devices on the same client, you should
1089
1089
  * pass the same <code>clientId</code> value in each call to <code>CreateRemoteAccessSession</code>. This
@@ -1092,12 +1092,12 @@ export interface CreateRemoteAccessSessionRequest {
1092
1092
  * longer supported</a>.</p>
1093
1093
  * @public
1094
1094
  */
1095
- clientId?: string;
1095
+ clientId?: string | undefined;
1096
1096
  /**
1097
1097
  * <p>The configuration information for the remote access session request.</p>
1098
1098
  * @public
1099
1099
  */
1100
- configuration?: CreateRemoteAccessSessionConfiguration;
1100
+ configuration?: CreateRemoteAccessSessionConfiguration | undefined;
1101
1101
  /**
1102
1102
  * <p>The interaction mode of the remote access session. Valid values are:</p>
1103
1103
  * <ul>
@@ -1118,7 +1118,7 @@ export interface CreateRemoteAccessSessionRequest {
1118
1118
  * </ul>
1119
1119
  * @public
1120
1120
  */
1121
- interactionMode?: InteractionMode;
1121
+ interactionMode?: InteractionMode | undefined;
1122
1122
  /**
1123
1123
  * <p>When set to <code>true</code>, for private devices, Device Farm does not sign your app again. For public
1124
1124
  * devices, Device Farm always signs your apps again.</p>
@@ -1126,7 +1126,7 @@ export interface CreateRemoteAccessSessionRequest {
1126
1126
  * </p>
1127
1127
  * @public
1128
1128
  */
1129
- skipAppResign?: boolean;
1129
+ skipAppResign?: boolean | undefined;
1130
1130
  }
1131
1131
  /**
1132
1132
  * @public
@@ -1177,32 +1177,32 @@ export interface DeviceInstance {
1177
1177
  * <p>The Amazon Resource Name (ARN) of the device instance.</p>
1178
1178
  * @public
1179
1179
  */
1180
- arn?: string;
1180
+ arn?: string | undefined;
1181
1181
  /**
1182
1182
  * <p>The ARN of the device.</p>
1183
1183
  * @public
1184
1184
  */
1185
- deviceArn?: string;
1185
+ deviceArn?: string | undefined;
1186
1186
  /**
1187
1187
  * <p>An array of strings that describe the device instance.</p>
1188
1188
  * @public
1189
1189
  */
1190
- labels?: string[];
1190
+ labels?: string[] | undefined;
1191
1191
  /**
1192
1192
  * <p>The status of the device instance. Valid values are listed here.</p>
1193
1193
  * @public
1194
1194
  */
1195
- status?: InstanceStatus;
1195
+ status?: InstanceStatus | undefined;
1196
1196
  /**
1197
1197
  * <p>Unique device identifier for the device instance.</p>
1198
1198
  * @public
1199
1199
  */
1200
- udid?: string;
1200
+ udid?: string | undefined;
1201
1201
  /**
1202
1202
  * <p>A object that contains information about the instance profile.</p>
1203
1203
  * @public
1204
1204
  */
1205
- instanceProfile?: InstanceProfile;
1205
+ instanceProfile?: InstanceProfile | undefined;
1206
1206
  }
1207
1207
  /**
1208
1208
  * <p>Represents the screen resolution of a device in height and width, expressed in
@@ -1214,12 +1214,12 @@ export interface Resolution {
1214
1214
  * <p>The screen resolution's width, expressed in pixels.</p>
1215
1215
  * @public
1216
1216
  */
1217
- width?: number;
1217
+ width?: number | undefined;
1218
1218
  /**
1219
1219
  * <p>The screen resolution's height, expressed in pixels.</p>
1220
1220
  * @public
1221
1221
  */
1222
- height?: number;
1222
+ height?: number | undefined;
1223
1223
  }
1224
1224
  /**
1225
1225
  * <p>Represents a device type that an app is tested against.</p>
@@ -1230,27 +1230,27 @@ export interface Device {
1230
1230
  * <p>The device's ARN.</p>
1231
1231
  * @public
1232
1232
  */
1233
- arn?: string;
1233
+ arn?: string | undefined;
1234
1234
  /**
1235
1235
  * <p>The device's display name.</p>
1236
1236
  * @public
1237
1237
  */
1238
- name?: string;
1238
+ name?: string | undefined;
1239
1239
  /**
1240
1240
  * <p>The device's manufacturer name.</p>
1241
1241
  * @public
1242
1242
  */
1243
- manufacturer?: string;
1243
+ manufacturer?: string | undefined;
1244
1244
  /**
1245
1245
  * <p>The device's model name.</p>
1246
1246
  * @public
1247
1247
  */
1248
- model?: string;
1248
+ model?: string | undefined;
1249
1249
  /**
1250
1250
  * <p>The device's model ID.</p>
1251
1251
  * @public
1252
1252
  */
1253
- modelId?: string;
1253
+ modelId?: string | undefined;
1254
1254
  /**
1255
1255
  * <p>The device's form factor.</p>
1256
1256
  * <p>Allowed values include:</p>
@@ -1264,7 +1264,7 @@ export interface Device {
1264
1264
  * </ul>
1265
1265
  * @public
1266
1266
  */
1267
- formFactor?: DeviceFormFactor;
1267
+ formFactor?: DeviceFormFactor | undefined;
1268
1268
  /**
1269
1269
  * <p>The device's platform.</p>
1270
1270
  * <p>Allowed values include:</p>
@@ -1278,53 +1278,53 @@ export interface Device {
1278
1278
  * </ul>
1279
1279
  * @public
1280
1280
  */
1281
- platform?: DevicePlatform;
1281
+ platform?: DevicePlatform | undefined;
1282
1282
  /**
1283
1283
  * <p>The device's operating system type.</p>
1284
1284
  * @public
1285
1285
  */
1286
- os?: string;
1286
+ os?: string | undefined;
1287
1287
  /**
1288
1288
  * <p>Information about the device's CPU.</p>
1289
1289
  * @public
1290
1290
  */
1291
- cpu?: CPU;
1291
+ cpu?: CPU | undefined;
1292
1292
  /**
1293
1293
  * <p>The resolution of the device.</p>
1294
1294
  * @public
1295
1295
  */
1296
- resolution?: Resolution;
1296
+ resolution?: Resolution | undefined;
1297
1297
  /**
1298
1298
  * <p>The device's heap size, expressed in bytes.</p>
1299
1299
  * @public
1300
1300
  */
1301
- heapSize?: number;
1301
+ heapSize?: number | undefined;
1302
1302
  /**
1303
1303
  * <p>The device's total memory size, expressed in bytes.</p>
1304
1304
  * @public
1305
1305
  */
1306
- memory?: number;
1306
+ memory?: number | undefined;
1307
1307
  /**
1308
1308
  * <p>The device's image name.</p>
1309
1309
  * @public
1310
1310
  */
1311
- image?: string;
1311
+ image?: string | undefined;
1312
1312
  /**
1313
1313
  * <p>The device's carrier.</p>
1314
1314
  * @public
1315
1315
  */
1316
- carrier?: string;
1316
+ carrier?: string | undefined;
1317
1317
  /**
1318
1318
  * <p>The device's radio.</p>
1319
1319
  * @public
1320
1320
  */
1321
- radio?: string;
1321
+ radio?: string | undefined;
1322
1322
  /**
1323
1323
  * <p>Specifies whether remote access has been enabled for the specified
1324
1324
  * device.</p>
1325
1325
  * @public
1326
1326
  */
1327
- remoteAccessEnabled?: boolean;
1327
+ remoteAccessEnabled?: boolean | undefined;
1328
1328
  /**
1329
1329
  * <p>This flag is set to <code>true</code> if remote debugging is enabled for the
1330
1330
  * device.</p>
@@ -1332,27 +1332,27 @@ export interface Device {
1332
1332
  * longer supported</a>.</p>
1333
1333
  * @public
1334
1334
  */
1335
- remoteDebugEnabled?: boolean;
1335
+ remoteDebugEnabled?: boolean | undefined;
1336
1336
  /**
1337
1337
  * <p>The type of fleet to which this device belongs. Possible values are PRIVATE and PUBLIC.</p>
1338
1338
  * @public
1339
1339
  */
1340
- fleetType?: string;
1340
+ fleetType?: string | undefined;
1341
1341
  /**
1342
1342
  * <p>The name of the fleet to which this device belongs.</p>
1343
1343
  * @public
1344
1344
  */
1345
- fleetName?: string;
1345
+ fleetName?: string | undefined;
1346
1346
  /**
1347
1347
  * <p>The instances that belong to this device.</p>
1348
1348
  * @public
1349
1349
  */
1350
- instances?: DeviceInstance[];
1350
+ instances?: DeviceInstance[] | undefined;
1351
1351
  /**
1352
1352
  * <p>Indicates how likely a device is available for a test run. Currently available in the <a>ListDevices</a> and GetDevice API methods.</p>
1353
1353
  * @public
1354
1354
  */
1355
- availability?: DeviceAvailability;
1355
+ availability?: DeviceAvailability | undefined;
1356
1356
  }
1357
1357
  /**
1358
1358
  * <p>Represents the total (metered or unmetered) minutes used by the resource to run
@@ -1365,19 +1365,19 @@ export interface DeviceMinutes {
1365
1365
  * tests.</p>
1366
1366
  * @public
1367
1367
  */
1368
- total?: number;
1368
+ total?: number | undefined;
1369
1369
  /**
1370
1370
  * <p>When specified, represents only the sum of metered minutes used by the resource to
1371
1371
  * run tests.</p>
1372
1372
  * @public
1373
1373
  */
1374
- metered?: number;
1374
+ metered?: number | undefined;
1375
1375
  /**
1376
1376
  * <p>When specified, represents only the sum of unmetered minutes used by the resource
1377
1377
  * to run tests.</p>
1378
1378
  * @public
1379
1379
  */
1380
- unmetered?: number;
1380
+ unmetered?: number | undefined;
1381
1381
  }
1382
1382
  /**
1383
1383
  * @public
@@ -1424,17 +1424,17 @@ export interface RemoteAccessSession {
1424
1424
  * <p>The Amazon Resource Name (ARN) of the remote access session.</p>
1425
1425
  * @public
1426
1426
  */
1427
- arn?: string;
1427
+ arn?: string | undefined;
1428
1428
  /**
1429
1429
  * <p>The name of the remote access session.</p>
1430
1430
  * @public
1431
1431
  */
1432
- name?: string;
1432
+ name?: string | undefined;
1433
1433
  /**
1434
1434
  * <p>The date and time the remote access session was created.</p>
1435
1435
  * @public
1436
1436
  */
1437
- created?: Date;
1437
+ created?: Date | undefined;
1438
1438
  /**
1439
1439
  * <p>The status of the remote access session. Can be any of the following:</p>
1440
1440
  * <ul>
@@ -1468,7 +1468,7 @@ export interface RemoteAccessSession {
1468
1468
  * </ul>
1469
1469
  * @public
1470
1470
  */
1471
- status?: ExecutionStatus;
1471
+ status?: ExecutionStatus | undefined;
1472
1472
  /**
1473
1473
  * <p>The result of the remote access session. Can be any of the following:</p>
1474
1474
  * <ul>
@@ -1496,32 +1496,32 @@ export interface RemoteAccessSession {
1496
1496
  * </ul>
1497
1497
  * @public
1498
1498
  */
1499
- result?: ExecutionResult;
1499
+ result?: ExecutionResult | undefined;
1500
1500
  /**
1501
1501
  * <p>A message about the remote access session.</p>
1502
1502
  * @public
1503
1503
  */
1504
- message?: string;
1504
+ message?: string | undefined;
1505
1505
  /**
1506
1506
  * <p>The date and time the remote access session was started.</p>
1507
1507
  * @public
1508
1508
  */
1509
- started?: Date;
1509
+ started?: Date | undefined;
1510
1510
  /**
1511
1511
  * <p>The date and time the remote access session was stopped.</p>
1512
1512
  * @public
1513
1513
  */
1514
- stopped?: Date;
1514
+ stopped?: Date | undefined;
1515
1515
  /**
1516
1516
  * <p>The device (phone or tablet) used in the remote access session.</p>
1517
1517
  * @public
1518
1518
  */
1519
- device?: Device;
1519
+ device?: Device | undefined;
1520
1520
  /**
1521
1521
  * <p>The ARN of the instance.</p>
1522
1522
  * @public
1523
1523
  */
1524
- instanceArn?: string;
1524
+ instanceArn?: string | undefined;
1525
1525
  /**
1526
1526
  * <p>This flag is set to <code>true</code> if remote debugging is enabled for the remote
1527
1527
  * access session.</p>
@@ -1529,18 +1529,18 @@ export interface RemoteAccessSession {
1529
1529
  * longer supported</a>.</p>
1530
1530
  * @public
1531
1531
  */
1532
- remoteDebugEnabled?: boolean;
1532
+ remoteDebugEnabled?: boolean | undefined;
1533
1533
  /**
1534
1534
  * <p>This flag is set to <code>true</code> if remote recording is enabled for the remote
1535
1535
  * access session.</p>
1536
1536
  * @public
1537
1537
  */
1538
- remoteRecordEnabled?: boolean;
1538
+ remoteRecordEnabled?: boolean | undefined;
1539
1539
  /**
1540
1540
  * <p>The ARN for the app to be recorded in the remote access session.</p>
1541
1541
  * @public
1542
1542
  */
1543
- remoteRecordAppArn?: string;
1543
+ remoteRecordAppArn?: string | undefined;
1544
1544
  /**
1545
1545
  * <p>IP address of the EC2 host where you need to connect to remotely debug devices.
1546
1546
  * Only returned if remote debugging is enabled for the remote access session.</p>
@@ -1548,7 +1548,7 @@ export interface RemoteAccessSession {
1548
1548
  * longer supported</a>.</p>
1549
1549
  * @public
1550
1550
  */
1551
- hostAddress?: string;
1551
+ hostAddress?: string | undefined;
1552
1552
  /**
1553
1553
  * <p>Unique identifier of your client for the remote access session. Only returned if
1554
1554
  * remote debugging is enabled for the remote access session.</p>
@@ -1556,25 +1556,25 @@ export interface RemoteAccessSession {
1556
1556
  * longer supported</a>.</p>
1557
1557
  * @public
1558
1558
  */
1559
- clientId?: string;
1559
+ clientId?: string | undefined;
1560
1560
  /**
1561
1561
  * <p>The billing method of the remote access session. Possible values include <code>METERED</code> or
1562
1562
  * <code>UNMETERED</code>. For more information about metered devices, see <a href="https://docs.aws.amazon.com/devicefarm/latest/developerguide/welcome.html#welcome-terminology">AWS Device Farm
1563
1563
  * terminology</a>.</p>
1564
1564
  * @public
1565
1565
  */
1566
- billingMethod?: BillingMethod;
1566
+ billingMethod?: BillingMethod | undefined;
1567
1567
  /**
1568
1568
  * <p>The number of minutes a device is used in a remote access session (including setup
1569
1569
  * and teardown minutes).</p>
1570
1570
  * @public
1571
1571
  */
1572
- deviceMinutes?: DeviceMinutes;
1572
+ deviceMinutes?: DeviceMinutes | undefined;
1573
1573
  /**
1574
1574
  * <p>The endpoint for the remote access sesssion.</p>
1575
1575
  * @public
1576
1576
  */
1577
- endpoint?: string;
1577
+ endpoint?: string | undefined;
1578
1578
  /**
1579
1579
  * <p>Unique device identifier for the remote device. Only returned if remote debugging
1580
1580
  * is enabled for the remote access session.</p>
@@ -1582,7 +1582,7 @@ export interface RemoteAccessSession {
1582
1582
  * longer supported</a>.</p>
1583
1583
  * @public
1584
1584
  */
1585
- deviceUdid?: string;
1585
+ deviceUdid?: string | undefined;
1586
1586
  /**
1587
1587
  * <p>The interaction mode of the remote access session. Valid values are:</p>
1588
1588
  * <ul>
@@ -1603,7 +1603,7 @@ export interface RemoteAccessSession {
1603
1603
  * </ul>
1604
1604
  * @public
1605
1605
  */
1606
- interactionMode?: InteractionMode;
1606
+ interactionMode?: InteractionMode | undefined;
1607
1607
  /**
1608
1608
  * <p>When set to <code>true</code>, for private devices, Device Farm does not sign your app again. For public
1609
1609
  * devices, Device Farm always signs your apps again.</p>
@@ -1611,12 +1611,12 @@ export interface RemoteAccessSession {
1611
1611
  * Farm FAQs</i>.</p>
1612
1612
  * @public
1613
1613
  */
1614
- skipAppResign?: boolean;
1614
+ skipAppResign?: boolean | undefined;
1615
1615
  /**
1616
1616
  * <p>The VPC security groups and subnets that are attached to a project.</p>
1617
1617
  * @public
1618
1618
  */
1619
- vpcConfig?: VpcConfig;
1619
+ vpcConfig?: VpcConfig | undefined;
1620
1620
  }
1621
1621
  /**
1622
1622
  * <p>Represents the server response from a request to create a remote access
@@ -1629,7 +1629,7 @@ export interface CreateRemoteAccessSessionResult {
1629
1629
  * remote access session is sent.</p>
1630
1630
  * @public
1631
1631
  */
1632
- remoteAccessSession?: RemoteAccessSession;
1632
+ remoteAccessSession?: RemoteAccessSession | undefined;
1633
1633
  }
1634
1634
  /**
1635
1635
  * <p>The VPC security groups and subnets that are attached to a project.</p>
@@ -1665,12 +1665,12 @@ export interface CreateTestGridProjectRequest {
1665
1665
  * <p>Human-readable description of the project.</p>
1666
1666
  * @public
1667
1667
  */
1668
- description?: string;
1668
+ description?: string | undefined;
1669
1669
  /**
1670
1670
  * <p>The VPC security groups and subnets that are attached to a project.</p>
1671
1671
  * @public
1672
1672
  */
1673
- vpcConfig?: TestGridVpcConfig;
1673
+ vpcConfig?: TestGridVpcConfig | undefined;
1674
1674
  }
1675
1675
  /**
1676
1676
  * <p>A Selenium testing project. Projects are used to collect and collate sessions.</p>
@@ -1681,27 +1681,27 @@ export interface TestGridProject {
1681
1681
  * <p>The ARN for the project.</p>
1682
1682
  * @public
1683
1683
  */
1684
- arn?: string;
1684
+ arn?: string | undefined;
1685
1685
  /**
1686
1686
  * <p>A human-readable name for the project.</p>
1687
1687
  * @public
1688
1688
  */
1689
- name?: string;
1689
+ name?: string | undefined;
1690
1690
  /**
1691
1691
  * <p>A human-readable description for the project.</p>
1692
1692
  * @public
1693
1693
  */
1694
- description?: string;
1694
+ description?: string | undefined;
1695
1695
  /**
1696
1696
  * <p>The VPC security groups and subnets that are attached to a project.</p>
1697
1697
  * @public
1698
1698
  */
1699
- vpcConfig?: TestGridVpcConfig;
1699
+ vpcConfig?: TestGridVpcConfig | undefined;
1700
1700
  /**
1701
1701
  * <p>When the project was created.</p>
1702
1702
  * @public
1703
1703
  */
1704
- created?: Date;
1704
+ created?: Date | undefined;
1705
1705
  }
1706
1706
  /**
1707
1707
  * @public
@@ -1711,7 +1711,7 @@ export interface CreateTestGridProjectResult {
1711
1711
  * <p>ARN of the Selenium testing project that was created.</p>
1712
1712
  * @public
1713
1713
  */
1714
- testGridProject?: TestGridProject;
1714
+ testGridProject?: TestGridProject | undefined;
1715
1715
  }
1716
1716
  /**
1717
1717
  * <p>An internal exception was raised in the service. Contact <a href="mailto:aws-devicefarm-support@amazon.com">aws-devicefarm-support@amazon.com</a> if you see this
@@ -1751,12 +1751,12 @@ export interface CreateTestGridUrlResult {
1751
1751
  * to a <code>RemoteWebDriver</code>. </p>
1752
1752
  * @public
1753
1753
  */
1754
- url?: string;
1754
+ url?: string | undefined;
1755
1755
  /**
1756
1756
  * <p>The number of seconds the URL from <a>CreateTestGridUrlResult$url</a> stays active.</p>
1757
1757
  * @public
1758
1758
  */
1759
- expires?: Date;
1759
+ expires?: Date | undefined;
1760
1760
  }
1761
1761
  /**
1762
1762
  * @public
@@ -1919,7 +1919,7 @@ export interface CreateUploadRequest {
1919
1919
  * <p>The upload's content type (for example, <code>application/octet-stream</code>).</p>
1920
1920
  * @public
1921
1921
  */
1922
- contentType?: string;
1922
+ contentType?: string | undefined;
1923
1923
  }
1924
1924
  /**
1925
1925
  * @public
@@ -1957,17 +1957,17 @@ export interface Upload {
1957
1957
  * <p>The upload's ARN.</p>
1958
1958
  * @public
1959
1959
  */
1960
- arn?: string;
1960
+ arn?: string | undefined;
1961
1961
  /**
1962
1962
  * <p>The upload's file name.</p>
1963
1963
  * @public
1964
1964
  */
1965
- name?: string;
1965
+ name?: string | undefined;
1966
1966
  /**
1967
1967
  * <p>When the upload was created.</p>
1968
1968
  * @public
1969
1969
  */
1970
- created?: Date;
1970
+ created?: Date | undefined;
1971
1971
  /**
1972
1972
  * <p>The upload's type.</p>
1973
1973
  * <p>Must be one of the following values:</p>
@@ -2062,7 +2062,7 @@ export interface Upload {
2062
2062
  * </ul>
2063
2063
  * @public
2064
2064
  */
2065
- type?: UploadType;
2065
+ type?: UploadType | undefined;
2066
2066
  /**
2067
2067
  * <p>The upload's status.</p>
2068
2068
  * <p>Must be one of the following values:</p>
@@ -2082,29 +2082,29 @@ export interface Upload {
2082
2082
  * </ul>
2083
2083
  * @public
2084
2084
  */
2085
- status?: UploadStatus;
2085
+ status?: UploadStatus | undefined;
2086
2086
  /**
2087
2087
  * <p>The presigned Amazon S3 URL that was used to store a file using a PUT request.</p>
2088
2088
  * @public
2089
2089
  */
2090
- url?: string;
2090
+ url?: string | undefined;
2091
2091
  /**
2092
2092
  * <p>The upload's metadata. For example, for Android, this contains information that is
2093
2093
  * parsed from the manifest and is displayed in the AWS Device Farm console after the
2094
2094
  * associated app is uploaded.</p>
2095
2095
  * @public
2096
2096
  */
2097
- metadata?: string;
2097
+ metadata?: string | undefined;
2098
2098
  /**
2099
2099
  * <p>The upload's content type (for example, <code>application/octet-stream</code>).</p>
2100
2100
  * @public
2101
2101
  */
2102
- contentType?: string;
2102
+ contentType?: string | undefined;
2103
2103
  /**
2104
2104
  * <p>A message about the upload's result.</p>
2105
2105
  * @public
2106
2106
  */
2107
- message?: string;
2107
+ message?: string | undefined;
2108
2108
  /**
2109
2109
  * <p>The upload's category. Allowed values include:</p>
2110
2110
  * <ul>
@@ -2117,7 +2117,7 @@ export interface Upload {
2117
2117
  * </ul>
2118
2118
  * @public
2119
2119
  */
2120
- category?: UploadCategory;
2120
+ category?: UploadCategory | undefined;
2121
2121
  }
2122
2122
  /**
2123
2123
  * <p>Represents the result of a create upload request.</p>
@@ -2128,7 +2128,7 @@ export interface CreateUploadResult {
2128
2128
  * <p>The newly created upload.</p>
2129
2129
  * @public
2130
2130
  */
2131
- upload?: Upload;
2131
+ upload?: Upload | undefined;
2132
2132
  }
2133
2133
  /**
2134
2134
  * @public
@@ -2155,7 +2155,7 @@ export interface CreateVPCEConfigurationRequest {
2155
2155
  * <p>An optional description that provides details about your VPC endpoint configuration.</p>
2156
2156
  * @public
2157
2157
  */
2158
- vpceConfigurationDescription?: string;
2158
+ vpceConfigurationDescription?: string | undefined;
2159
2159
  }
2160
2160
  /**
2161
2161
  * <p>Represents an Amazon Virtual Private Cloud (VPC) endpoint configuration.</p>
@@ -2166,29 +2166,29 @@ export interface VPCEConfiguration {
2166
2166
  * <p>The Amazon Resource Name (ARN) of the VPC endpoint configuration.</p>
2167
2167
  * @public
2168
2168
  */
2169
- arn?: string;
2169
+ arn?: string | undefined;
2170
2170
  /**
2171
2171
  * <p>The friendly name you give to your VPC endpoint configuration to manage your configurations more
2172
2172
  * easily.</p>
2173
2173
  * @public
2174
2174
  */
2175
- vpceConfigurationName?: string;
2175
+ vpceConfigurationName?: string | undefined;
2176
2176
  /**
2177
2177
  * <p>The name of the VPC endpoint service running in your AWS account that you want Device Farm to test.</p>
2178
2178
  * @public
2179
2179
  */
2180
- vpceServiceName?: string;
2180
+ vpceServiceName?: string | undefined;
2181
2181
  /**
2182
2182
  * <p>The DNS name that maps to the private IP address of the service you want to
2183
2183
  * access.</p>
2184
2184
  * @public
2185
2185
  */
2186
- serviceDnsName?: string;
2186
+ serviceDnsName?: string | undefined;
2187
2187
  /**
2188
2188
  * <p>An optional description that provides details about your VPC endpoint configuration.</p>
2189
2189
  * @public
2190
2190
  */
2191
- vpceConfigurationDescription?: string;
2191
+ vpceConfigurationDescription?: string | undefined;
2192
2192
  }
2193
2193
  /**
2194
2194
  * @public
@@ -2198,7 +2198,7 @@ export interface CreateVPCEConfigurationResult {
2198
2198
  * <p>An object that contains information about your VPC endpoint configuration.</p>
2199
2199
  * @public
2200
2200
  */
2201
- vpceConfiguration?: VPCEConfiguration;
2201
+ vpceConfiguration?: VPCEConfiguration | undefined;
2202
2202
  }
2203
2203
  /**
2204
2204
  * @public
@@ -2226,19 +2226,19 @@ export interface CustomerArtifactPaths {
2226
2226
  * are pulled from.</p>
2227
2227
  * @public
2228
2228
  */
2229
- iosPaths?: string[];
2229
+ iosPaths?: string[] | undefined;
2230
2230
  /**
2231
2231
  * <p>Comma-separated list of paths on the Android device where the artifacts generated by the customer's
2232
2232
  * tests are pulled from.</p>
2233
2233
  * @public
2234
2234
  */
2235
- androidPaths?: string[];
2235
+ androidPaths?: string[] | undefined;
2236
2236
  /**
2237
2237
  * <p>Comma-separated list of paths in the test execution environment where the artifacts generated by the
2238
2238
  * customer's tests are pulled from.</p>
2239
2239
  * @public
2240
2240
  */
2241
- deviceHostPaths?: string[];
2241
+ deviceHostPaths?: string[] | undefined;
2242
2242
  }
2243
2243
  /**
2244
2244
  * <p>Represents a request to the delete device pool operation.</p>
@@ -2418,7 +2418,7 @@ export interface GetAccountSettingsResult {
2418
2418
  * <p>The account settings.</p>
2419
2419
  * @public
2420
2420
  */
2421
- accountSettings?: AccountSettings;
2421
+ accountSettings?: AccountSettings | undefined;
2422
2422
  }
2423
2423
  /**
2424
2424
  * <p>Represents a request to the get device request.</p>
@@ -2440,7 +2440,7 @@ export interface GetDeviceResult {
2440
2440
  * <p>An object that contains information about the requested device.</p>
2441
2441
  * @public
2442
2442
  */
2443
- device?: Device;
2443
+ device?: Device | undefined;
2444
2444
  }
2445
2445
  /**
2446
2446
  * @public
@@ -2461,7 +2461,7 @@ export interface GetDeviceInstanceResult {
2461
2461
  * <p>An object that contains information about your device instance.</p>
2462
2462
  * @public
2463
2463
  */
2464
- deviceInstance?: DeviceInstance;
2464
+ deviceInstance?: DeviceInstance | undefined;
2465
2465
  }
2466
2466
  /**
2467
2467
  * <p>Represents a request to the get device pool operation.</p>
@@ -2483,7 +2483,7 @@ export interface GetDevicePoolResult {
2483
2483
  * <p>An object that contains information about the requested device pool.</p>
2484
2484
  * @public
2485
2485
  */
2486
- devicePool?: DevicePool;
2486
+ devicePool?: DevicePool | undefined;
2487
2487
  }
2488
2488
  /**
2489
2489
  * <p>Represents a latitude and longitude pair, expressed in geographic coordinate system degrees (for
@@ -2513,22 +2513,22 @@ export interface Radios {
2513
2513
  * <p>True if Wi-Fi is enabled at the beginning of the test. Otherwise, false.</p>
2514
2514
  * @public
2515
2515
  */
2516
- wifi?: boolean;
2516
+ wifi?: boolean | undefined;
2517
2517
  /**
2518
2518
  * <p>True if Bluetooth is enabled at the beginning of the test. Otherwise, false.</p>
2519
2519
  * @public
2520
2520
  */
2521
- bluetooth?: boolean;
2521
+ bluetooth?: boolean | undefined;
2522
2522
  /**
2523
2523
  * <p>True if NFC is enabled at the beginning of the test. Otherwise, false.</p>
2524
2524
  * @public
2525
2525
  */
2526
- nfc?: boolean;
2526
+ nfc?: boolean | undefined;
2527
2527
  /**
2528
2528
  * <p>True if GPS is enabled at the beginning of the test. Otherwise, false.</p>
2529
2529
  * @public
2530
2530
  */
2531
- gps?: boolean;
2531
+ gps?: boolean | undefined;
2532
2532
  }
2533
2533
  /**
2534
2534
  * <p>Represents the settings for a run. Includes things like location, radio states,
@@ -2541,43 +2541,43 @@ export interface ScheduleRunConfiguration {
2541
2541
  * external data for Android or the app's sandbox for iOS.</p>
2542
2542
  * @public
2543
2543
  */
2544
- extraDataPackageArn?: string;
2544
+ extraDataPackageArn?: string | undefined;
2545
2545
  /**
2546
2546
  * <p>Reserved for internal use.</p>
2547
2547
  * @public
2548
2548
  */
2549
- networkProfileArn?: string;
2549
+ networkProfileArn?: string | undefined;
2550
2550
  /**
2551
2551
  * <p>Information about the locale that is used for the run.</p>
2552
2552
  * @public
2553
2553
  */
2554
- locale?: string;
2554
+ locale?: string | undefined;
2555
2555
  /**
2556
2556
  * <p>Information about the location that is used for the run.</p>
2557
2557
  * @public
2558
2558
  */
2559
- location?: Location;
2559
+ location?: Location | undefined;
2560
2560
  /**
2561
2561
  * <p>An array of ARNs for your VPC endpoint configurations.</p>
2562
2562
  * @public
2563
2563
  */
2564
- vpceConfigurationArns?: string[];
2564
+ vpceConfigurationArns?: string[] | undefined;
2565
2565
  /**
2566
2566
  * <p>Input <code>CustomerArtifactPaths</code> object for the scheduled run
2567
2567
  * configuration.</p>
2568
2568
  * @public
2569
2569
  */
2570
- customerArtifactPaths?: CustomerArtifactPaths;
2570
+ customerArtifactPaths?: CustomerArtifactPaths | undefined;
2571
2571
  /**
2572
2572
  * <p>Information about the radio states for the run.</p>
2573
2573
  * @public
2574
2574
  */
2575
- radios?: Radios;
2575
+ radios?: Radios | undefined;
2576
2576
  /**
2577
2577
  * <p>A list of upload ARNs for app packages to be installed with your app.</p>
2578
2578
  * @public
2579
2579
  */
2580
- auxiliaryApps?: string[];
2580
+ auxiliaryApps?: string[] | undefined;
2581
2581
  /**
2582
2582
  * <p>Specifies the billing method for a test run: <code>metered</code> or
2583
2583
  * <code>unmetered</code>. If the parameter is not specified, the default value is
@@ -2588,7 +2588,7 @@ export interface ScheduleRunConfiguration {
2588
2588
  * </note>
2589
2589
  * @public
2590
2590
  */
2591
- billingMethod?: BillingMethod;
2591
+ billingMethod?: BillingMethod | undefined;
2592
2592
  }
2593
2593
  /**
2594
2594
  * @public
@@ -2674,17 +2674,17 @@ export interface ScheduleRunTest {
2674
2674
  * <p>The ARN of the uploaded test to be run.</p>
2675
2675
  * @public
2676
2676
  */
2677
- testPackageArn?: string;
2677
+ testPackageArn?: string | undefined;
2678
2678
  /**
2679
2679
  * <p>The ARN of the YAML-formatted test specification.</p>
2680
2680
  * @public
2681
2681
  */
2682
- testSpecArn?: string;
2682
+ testSpecArn?: string | undefined;
2683
2683
  /**
2684
2684
  * <p>The test's filter.</p>
2685
2685
  * @public
2686
2686
  */
2687
- filter?: string;
2687
+ filter?: string | undefined;
2688
2688
  /**
2689
2689
  * <p>The test's parameters, such as test framework parameters and fixture settings.
2690
2690
  * Parameters are represented by name-value pairs of strings.</p>
@@ -2783,7 +2783,7 @@ export interface ScheduleRunTest {
2783
2783
  * </ul>
2784
2784
  * @public
2785
2785
  */
2786
- parameters?: Record<string, string>;
2786
+ parameters?: Record<string, string> | undefined;
2787
2787
  }
2788
2788
  /**
2789
2789
  * <p>Represents a request to the get device pool compatibility operation.</p>
@@ -2799,7 +2799,7 @@ export interface GetDevicePoolCompatibilityRequest {
2799
2799
  * <p>The ARN of the app that is associated with the specified device pool.</p>
2800
2800
  * @public
2801
2801
  */
2802
- appArn?: string;
2802
+ appArn?: string | undefined;
2803
2803
  /**
2804
2804
  * <p>The test type for the specified device pool.</p>
2805
2805
  * <p>Allowed values include the following:</p>
@@ -2849,17 +2849,17 @@ export interface GetDevicePoolCompatibilityRequest {
2849
2849
  * </ul>
2850
2850
  * @public
2851
2851
  */
2852
- testType?: TestType;
2852
+ testType?: TestType | undefined;
2853
2853
  /**
2854
2854
  * <p>Information about the uploaded test to be run against the device pool.</p>
2855
2855
  * @public
2856
2856
  */
2857
- test?: ScheduleRunTest;
2857
+ test?: ScheduleRunTest | undefined;
2858
2858
  /**
2859
2859
  * <p>An object that contains information about the settings for a run.</p>
2860
2860
  * @public
2861
2861
  */
2862
- configuration?: ScheduleRunConfiguration;
2862
+ configuration?: ScheduleRunConfiguration | undefined;
2863
2863
  }
2864
2864
  /**
2865
2865
  * <p>Represents information about incompatibility.</p>
@@ -2870,7 +2870,7 @@ export interface IncompatibilityMessage {
2870
2870
  * <p>A message about the incompatibility.</p>
2871
2871
  * @public
2872
2872
  */
2873
- message?: string;
2873
+ message?: string | undefined;
2874
2874
  /**
2875
2875
  * <p>The type of incompatibility.</p>
2876
2876
  * <p>Allowed values include:</p>
@@ -2896,7 +2896,7 @@ export interface IncompatibilityMessage {
2896
2896
  * </ul>
2897
2897
  * @public
2898
2898
  */
2899
- type?: DeviceAttribute;
2899
+ type?: DeviceAttribute | undefined;
2900
2900
  }
2901
2901
  /**
2902
2902
  * <p>Represents a device pool compatibility result.</p>
@@ -2907,17 +2907,17 @@ export interface DevicePoolCompatibilityResult {
2907
2907
  * <p>The device (phone or tablet) to return information about.</p>
2908
2908
  * @public
2909
2909
  */
2910
- device?: Device;
2910
+ device?: Device | undefined;
2911
2911
  /**
2912
2912
  * <p>Whether the result was compatible with the device pool.</p>
2913
2913
  * @public
2914
2914
  */
2915
- compatible?: boolean;
2915
+ compatible?: boolean | undefined;
2916
2916
  /**
2917
2917
  * <p>Information about the compatibility.</p>
2918
2918
  * @public
2919
2919
  */
2920
- incompatibilityMessages?: IncompatibilityMessage[];
2920
+ incompatibilityMessages?: IncompatibilityMessage[] | undefined;
2921
2921
  }
2922
2922
  /**
2923
2923
  * <p>Represents the result of describe device pool compatibility request.</p>
@@ -2928,12 +2928,12 @@ export interface GetDevicePoolCompatibilityResult {
2928
2928
  * <p>Information about compatible devices.</p>
2929
2929
  * @public
2930
2930
  */
2931
- compatibleDevices?: DevicePoolCompatibilityResult[];
2931
+ compatibleDevices?: DevicePoolCompatibilityResult[] | undefined;
2932
2932
  /**
2933
2933
  * <p>Information about incompatible devices.</p>
2934
2934
  * @public
2935
2935
  */
2936
- incompatibleDevices?: DevicePoolCompatibilityResult[];
2936
+ incompatibleDevices?: DevicePoolCompatibilityResult[] | undefined;
2937
2937
  }
2938
2938
  /**
2939
2939
  * @public
@@ -2953,7 +2953,7 @@ export interface GetInstanceProfileResult {
2953
2953
  * <p>An object that contains information about an instance profile.</p>
2954
2954
  * @public
2955
2955
  */
2956
- instanceProfile?: InstanceProfile;
2956
+ instanceProfile?: InstanceProfile | undefined;
2957
2957
  }
2958
2958
  /**
2959
2959
  * <p>Represents a request to the get job operation.</p>
@@ -2975,12 +2975,12 @@ export interface Job {
2975
2975
  * <p>The job's ARN.</p>
2976
2976
  * @public
2977
2977
  */
2978
- arn?: string;
2978
+ arn?: string | undefined;
2979
2979
  /**
2980
2980
  * <p>The job's name.</p>
2981
2981
  * @public
2982
2982
  */
2983
- name?: string;
2983
+ name?: string | undefined;
2984
2984
  /**
2985
2985
  * <p>The job's type.</p>
2986
2986
  * <p>Allowed values include the following:</p>
@@ -3030,12 +3030,12 @@ export interface Job {
3030
3030
  * </ul>
3031
3031
  * @public
3032
3032
  */
3033
- type?: TestType;
3033
+ type?: TestType | undefined;
3034
3034
  /**
3035
3035
  * <p>When the job was created.</p>
3036
3036
  * @public
3037
3037
  */
3038
- created?: Date;
3038
+ created?: Date | undefined;
3039
3039
  /**
3040
3040
  * <p>The job's status.</p>
3041
3041
  * <p>Allowed values include:</p>
@@ -3070,7 +3070,7 @@ export interface Job {
3070
3070
  * </ul>
3071
3071
  * @public
3072
3072
  */
3073
- status?: ExecutionStatus;
3073
+ status?: ExecutionStatus | undefined;
3074
3074
  /**
3075
3075
  * <p>The job's result.</p>
3076
3076
  * <p>Allowed values include:</p>
@@ -3099,52 +3099,52 @@ export interface Job {
3099
3099
  * </ul>
3100
3100
  * @public
3101
3101
  */
3102
- result?: ExecutionResult;
3102
+ result?: ExecutionResult | undefined;
3103
3103
  /**
3104
3104
  * <p>The job's start time.</p>
3105
3105
  * @public
3106
3106
  */
3107
- started?: Date;
3107
+ started?: Date | undefined;
3108
3108
  /**
3109
3109
  * <p>The job's stop time.</p>
3110
3110
  * @public
3111
3111
  */
3112
- stopped?: Date;
3112
+ stopped?: Date | undefined;
3113
3113
  /**
3114
3114
  * <p>The job's result counters.</p>
3115
3115
  * @public
3116
3116
  */
3117
- counters?: Counters;
3117
+ counters?: Counters | undefined;
3118
3118
  /**
3119
3119
  * <p>A message about the job's result.</p>
3120
3120
  * @public
3121
3121
  */
3122
- message?: string;
3122
+ message?: string | undefined;
3123
3123
  /**
3124
3124
  * <p>The device (phone or tablet).</p>
3125
3125
  * @public
3126
3126
  */
3127
- device?: Device;
3127
+ device?: Device | undefined;
3128
3128
  /**
3129
3129
  * <p>The ARN of the instance.</p>
3130
3130
  * @public
3131
3131
  */
3132
- instanceArn?: string;
3132
+ instanceArn?: string | undefined;
3133
3133
  /**
3134
3134
  * <p>Represents the total (metered or unmetered) minutes used by the job.</p>
3135
3135
  * @public
3136
3136
  */
3137
- deviceMinutes?: DeviceMinutes;
3137
+ deviceMinutes?: DeviceMinutes | undefined;
3138
3138
  /**
3139
3139
  * <p>The endpoint for streaming device video.</p>
3140
3140
  * @public
3141
3141
  */
3142
- videoEndpoint?: string;
3142
+ videoEndpoint?: string | undefined;
3143
3143
  /**
3144
3144
  * <p>This value is set to true if video capture is enabled. Otherwise, it is set to false.</p>
3145
3145
  * @public
3146
3146
  */
3147
- videoCapture?: boolean;
3147
+ videoCapture?: boolean | undefined;
3148
3148
  }
3149
3149
  /**
3150
3150
  * <p>Represents the result of a get job request.</p>
@@ -3155,7 +3155,7 @@ export interface GetJobResult {
3155
3155
  * <p>An object that contains information about the requested job.</p>
3156
3156
  * @public
3157
3157
  */
3158
- job?: Job;
3158
+ job?: Job | undefined;
3159
3159
  }
3160
3160
  /**
3161
3161
  * @public
@@ -3175,7 +3175,7 @@ export interface GetNetworkProfileResult {
3175
3175
  * <p>The network profile.</p>
3176
3176
  * @public
3177
3177
  */
3178
- networkProfile?: NetworkProfile;
3178
+ networkProfile?: NetworkProfile | undefined;
3179
3179
  }
3180
3180
  /**
3181
3181
  * <p>Represents the request to retrieve the offering status for the specified customer
@@ -3188,7 +3188,7 @@ export interface GetOfferingStatusRequest {
3188
3188
  * be used to return the next set of items in the list.</p>
3189
3189
  * @public
3190
3190
  */
3191
- nextToken?: string;
3191
+ nextToken?: string | undefined;
3192
3192
  }
3193
3193
  /**
3194
3194
  * <p>A number that represents the monetary amount for an offering or transaction.</p>
@@ -3199,12 +3199,12 @@ export interface MonetaryAmount {
3199
3199
  * <p>The numerical amount of an offering or transaction.</p>
3200
3200
  * @public
3201
3201
  */
3202
- amount?: number;
3202
+ amount?: number | undefined;
3203
3203
  /**
3204
3204
  * <p>The currency code of a monetary amount. For example, <code>USD</code> means U.S. dollars.</p>
3205
3205
  * @public
3206
3206
  */
3207
- currencyCode?: CurrencyCode;
3207
+ currencyCode?: CurrencyCode | undefined;
3208
3208
  }
3209
3209
  /**
3210
3210
  * @public
@@ -3226,12 +3226,12 @@ export interface RecurringCharge {
3226
3226
  * <p>The cost of the recurring charge.</p>
3227
3227
  * @public
3228
3228
  */
3229
- cost?: MonetaryAmount;
3229
+ cost?: MonetaryAmount | undefined;
3230
3230
  /**
3231
3231
  * <p>The frequency in which charges recur.</p>
3232
3232
  * @public
3233
3233
  */
3234
- frequency?: RecurringChargeFrequency;
3234
+ frequency?: RecurringChargeFrequency | undefined;
3235
3235
  }
3236
3236
  /**
3237
3237
  * @public
@@ -3253,27 +3253,27 @@ export interface Offering {
3253
3253
  * <p>The ID that corresponds to a device offering.</p>
3254
3254
  * @public
3255
3255
  */
3256
- id?: string;
3256
+ id?: string | undefined;
3257
3257
  /**
3258
3258
  * <p>A string that describes the offering.</p>
3259
3259
  * @public
3260
3260
  */
3261
- description?: string;
3261
+ description?: string | undefined;
3262
3262
  /**
3263
3263
  * <p>The type of offering (for example, <code>RECURRING</code>) for a device.</p>
3264
3264
  * @public
3265
3265
  */
3266
- type?: OfferingType;
3266
+ type?: OfferingType | undefined;
3267
3267
  /**
3268
3268
  * <p>The platform of the device (for example, <code>ANDROID</code> or <code>IOS</code>).</p>
3269
3269
  * @public
3270
3270
  */
3271
- platform?: DevicePlatform;
3271
+ platform?: DevicePlatform | undefined;
3272
3272
  /**
3273
3273
  * <p>Specifies whether there are recurring charges for the offering.</p>
3274
3274
  * @public
3275
3275
  */
3276
- recurringCharges?: RecurringCharge[];
3276
+ recurringCharges?: RecurringCharge[] | undefined;
3277
3277
  }
3278
3278
  /**
3279
3279
  * @public
@@ -3297,22 +3297,22 @@ export interface OfferingStatus {
3297
3297
  * <p>The type specified for the offering status.</p>
3298
3298
  * @public
3299
3299
  */
3300
- type?: OfferingTransactionType;
3300
+ type?: OfferingTransactionType | undefined;
3301
3301
  /**
3302
3302
  * <p>Represents the metadata of an offering status.</p>
3303
3303
  * @public
3304
3304
  */
3305
- offering?: Offering;
3305
+ offering?: Offering | undefined;
3306
3306
  /**
3307
3307
  * <p>The number of available devices in the offering.</p>
3308
3308
  * @public
3309
3309
  */
3310
- quantity?: number;
3310
+ quantity?: number | undefined;
3311
3311
  /**
3312
3312
  * <p>The date on which the offering is effective.</p>
3313
3313
  * @public
3314
3314
  */
3315
- effectiveOn?: Date;
3315
+ effectiveOn?: Date | undefined;
3316
3316
  }
3317
3317
  /**
3318
3318
  * <p>Returns the status result for a device offering.</p>
@@ -3323,18 +3323,18 @@ export interface GetOfferingStatusResult {
3323
3323
  * <p>When specified, gets the offering status for the current period.</p>
3324
3324
  * @public
3325
3325
  */
3326
- current?: Record<string, OfferingStatus>;
3326
+ current?: Record<string, OfferingStatus> | undefined;
3327
3327
  /**
3328
3328
  * <p>When specified, gets the offering status for the next period.</p>
3329
3329
  * @public
3330
3330
  */
3331
- nextPeriod?: Record<string, OfferingStatus>;
3331
+ nextPeriod?: Record<string, OfferingStatus> | undefined;
3332
3332
  /**
3333
3333
  * <p>An identifier that was returned from the previous call to this operation, which can
3334
3334
  * be used to return the next set of items in the list.</p>
3335
3335
  * @public
3336
3336
  */
3337
- nextToken?: string;
3337
+ nextToken?: string | undefined;
3338
3338
  }
3339
3339
  /**
3340
3340
  * <p>Exception gets thrown when a user is not eligible to perform the specified
@@ -3369,7 +3369,7 @@ export interface GetProjectResult {
3369
3369
  * <p>The project to get information about.</p>
3370
3370
  * @public
3371
3371
  */
3372
- project?: Project;
3372
+ project?: Project | undefined;
3373
3373
  }
3374
3374
  /**
3375
3375
  * <p>Represents the request to get information about the specified remote access
@@ -3395,7 +3395,7 @@ export interface GetRemoteAccessSessionResult {
3395
3395
  * session.</p>
3396
3396
  * @public
3397
3397
  */
3398
- remoteAccessSession?: RemoteAccessSession;
3398
+ remoteAccessSession?: RemoteAccessSession | undefined;
3399
3399
  }
3400
3400
  /**
3401
3401
  * <p>Represents a request to the get run operation.</p>
@@ -3584,18 +3584,18 @@ export interface DeviceSelectionResult {
3584
3584
  * <p>The filters in a device selection result.</p>
3585
3585
  * @public
3586
3586
  */
3587
- filters?: DeviceFilter[];
3587
+ filters?: DeviceFilter[] | undefined;
3588
3588
  /**
3589
3589
  * <p>The number of devices that matched the device filter selection criteria.</p>
3590
3590
  * @public
3591
3591
  */
3592
- matchedDevicesCount?: number;
3592
+ matchedDevicesCount?: number | undefined;
3593
3593
  /**
3594
3594
  * <p>The maximum number of devices to be selected by a device filter and included in a test
3595
3595
  * run.</p>
3596
3596
  * @public
3597
3597
  */
3598
- maxDevices?: number;
3598
+ maxDevices?: number | undefined;
3599
3599
  }
3600
3600
  /**
3601
3601
  * @public
@@ -3619,12 +3619,12 @@ export interface Run {
3619
3619
  * <p>The run's ARN.</p>
3620
3620
  * @public
3621
3621
  */
3622
- arn?: string;
3622
+ arn?: string | undefined;
3623
3623
  /**
3624
3624
  * <p>The run's name.</p>
3625
3625
  * @public
3626
3626
  */
3627
- name?: string;
3627
+ name?: string | undefined;
3628
3628
  /**
3629
3629
  * <p>The run's type.</p>
3630
3630
  * <p>Must be one of the following values:</p>
@@ -3674,7 +3674,7 @@ export interface Run {
3674
3674
  * </ul>
3675
3675
  * @public
3676
3676
  */
3677
- type?: TestType;
3677
+ type?: TestType | undefined;
3678
3678
  /**
3679
3679
  * <p>The run's platform.</p>
3680
3680
  * <p>Allowed values include:</p>
@@ -3688,12 +3688,12 @@ export interface Run {
3688
3688
  * </ul>
3689
3689
  * @public
3690
3690
  */
3691
- platform?: DevicePlatform;
3691
+ platform?: DevicePlatform | undefined;
3692
3692
  /**
3693
3693
  * <p>When the run was created.</p>
3694
3694
  * @public
3695
3695
  */
3696
- created?: Date;
3696
+ created?: Date | undefined;
3697
3697
  /**
3698
3698
  * <p>The run's status.</p>
3699
3699
  * <p>Allowed values include:</p>
@@ -3728,7 +3728,7 @@ export interface Run {
3728
3728
  * </ul>
3729
3729
  * @public
3730
3730
  */
3731
- status?: ExecutionStatus;
3731
+ status?: ExecutionStatus | undefined;
3732
3732
  /**
3733
3733
  * <p>The run's result.</p>
3734
3734
  * <p>Allowed values include:</p>
@@ -3757,37 +3757,37 @@ export interface Run {
3757
3757
  * </ul>
3758
3758
  * @public
3759
3759
  */
3760
- result?: ExecutionResult;
3760
+ result?: ExecutionResult | undefined;
3761
3761
  /**
3762
3762
  * <p>The run's start time.</p>
3763
3763
  * @public
3764
3764
  */
3765
- started?: Date;
3765
+ started?: Date | undefined;
3766
3766
  /**
3767
3767
  * <p>The run's stop time.</p>
3768
3768
  * @public
3769
3769
  */
3770
- stopped?: Date;
3770
+ stopped?: Date | undefined;
3771
3771
  /**
3772
3772
  * <p>The run's result counters.</p>
3773
3773
  * @public
3774
3774
  */
3775
- counters?: Counters;
3775
+ counters?: Counters | undefined;
3776
3776
  /**
3777
3777
  * <p>A message about the run's result.</p>
3778
3778
  * @public
3779
3779
  */
3780
- message?: string;
3780
+ message?: string | undefined;
3781
3781
  /**
3782
3782
  * <p>The total number of jobs for the run.</p>
3783
3783
  * @public
3784
3784
  */
3785
- totalJobs?: number;
3785
+ totalJobs?: number | undefined;
3786
3786
  /**
3787
3787
  * <p>The total number of completed jobs.</p>
3788
3788
  * @public
3789
3789
  */
3790
- completedJobs?: number;
3790
+ completedJobs?: number | undefined;
3791
3791
  /**
3792
3792
  * <p>Specifies the billing method for a test run: <code>metered</code> or
3793
3793
  * <code>unmetered</code>. If the parameter is not specified, the default value is
@@ -3798,82 +3798,82 @@ export interface Run {
3798
3798
  * </note>
3799
3799
  * @public
3800
3800
  */
3801
- billingMethod?: BillingMethod;
3801
+ billingMethod?: BillingMethod | undefined;
3802
3802
  /**
3803
3803
  * <p>Represents the total (metered or unmetered) minutes used by the test run.</p>
3804
3804
  * @public
3805
3805
  */
3806
- deviceMinutes?: DeviceMinutes;
3806
+ deviceMinutes?: DeviceMinutes | undefined;
3807
3807
  /**
3808
3808
  * <p>The network profile being used for a test run.</p>
3809
3809
  * @public
3810
3810
  */
3811
- networkProfile?: NetworkProfile;
3811
+ networkProfile?: NetworkProfile | undefined;
3812
3812
  /**
3813
3813
  * <p>Read-only URL for an object in an S3 bucket where you can get the parsing results of the test package.
3814
3814
  * If the test package doesn't parse, the reason why it doesn't parse appears in the file that this URL points
3815
3815
  * to.</p>
3816
3816
  * @public
3817
3817
  */
3818
- parsingResultUrl?: string;
3818
+ parsingResultUrl?: string | undefined;
3819
3819
  /**
3820
3820
  * <p>Supporting field for the result field. Set only if <code>result</code> is <code>SKIPPED</code>.
3821
3821
  * <code>PARSING_FAILED</code> if the result is skipped because of test package parsing failure.</p>
3822
3822
  * @public
3823
3823
  */
3824
- resultCode?: ExecutionResultCode;
3824
+ resultCode?: ExecutionResultCode | undefined;
3825
3825
  /**
3826
3826
  * <p>For fuzz tests, this is a seed to use for randomizing the UI fuzz test. Using the same
3827
3827
  * seed value between tests ensures identical event sequences.</p>
3828
3828
  * @public
3829
3829
  */
3830
- seed?: number;
3830
+ seed?: number | undefined;
3831
3831
  /**
3832
3832
  * <p>An app to upload or that has been uploaded.</p>
3833
3833
  * @public
3834
3834
  */
3835
- appUpload?: string;
3835
+ appUpload?: string | undefined;
3836
3836
  /**
3837
3837
  * <p>For fuzz tests, this is the number of events, between 1 and 10000, that the UI fuzz
3838
3838
  * test should perform.</p>
3839
3839
  * @public
3840
3840
  */
3841
- eventCount?: number;
3841
+ eventCount?: number | undefined;
3842
3842
  /**
3843
3843
  * <p>The number of minutes the job executes before it times out.</p>
3844
3844
  * @public
3845
3845
  */
3846
- jobTimeoutMinutes?: number;
3846
+ jobTimeoutMinutes?: number | undefined;
3847
3847
  /**
3848
3848
  * <p>The ARN of the device pool for the run.</p>
3849
3849
  * @public
3850
3850
  */
3851
- devicePoolArn?: string;
3851
+ devicePoolArn?: string | undefined;
3852
3852
  /**
3853
3853
  * <p>Information about the locale that is used for the run.</p>
3854
3854
  * @public
3855
3855
  */
3856
- locale?: string;
3856
+ locale?: string | undefined;
3857
3857
  /**
3858
3858
  * <p>Information about the radio states for the run.</p>
3859
3859
  * @public
3860
3860
  */
3861
- radios?: Radios;
3861
+ radios?: Radios | undefined;
3862
3862
  /**
3863
3863
  * <p>Information about the location that is used for the run.</p>
3864
3864
  * @public
3865
3865
  */
3866
- location?: Location;
3866
+ location?: Location | undefined;
3867
3867
  /**
3868
3868
  * <p>Output <code>CustomerArtifactPaths</code> object for the test run.</p>
3869
3869
  * @public
3870
3870
  */
3871
- customerArtifactPaths?: CustomerArtifactPaths;
3871
+ customerArtifactPaths?: CustomerArtifactPaths | undefined;
3872
3872
  /**
3873
3873
  * <p>The Device Farm console URL for the recording of the run.</p>
3874
3874
  * @public
3875
3875
  */
3876
- webUrl?: string;
3876
+ webUrl?: string | undefined;
3877
3877
  /**
3878
3878
  * <p>When set to <code>true</code>, for private devices, Device Farm does not sign your app again. For public
3879
3879
  * devices, Device Farm always signs your apps again.</p>
@@ -3881,22 +3881,22 @@ export interface Run {
3881
3881
  * Farm FAQs</i>.</p>
3882
3882
  * @public
3883
3883
  */
3884
- skipAppResign?: boolean;
3884
+ skipAppResign?: boolean | undefined;
3885
3885
  /**
3886
3886
  * <p>The ARN of the YAML-formatted test specification for the run.</p>
3887
3887
  * @public
3888
3888
  */
3889
- testSpecArn?: string;
3889
+ testSpecArn?: string | undefined;
3890
3890
  /**
3891
3891
  * <p>The results of a device filter used to select the devices for a test run.</p>
3892
3892
  * @public
3893
3893
  */
3894
- deviceSelectionResult?: DeviceSelectionResult;
3894
+ deviceSelectionResult?: DeviceSelectionResult | undefined;
3895
3895
  /**
3896
3896
  * <p>The VPC security groups and subnets that are attached to a project.</p>
3897
3897
  * @public
3898
3898
  */
3899
- vpcConfig?: VpcConfig;
3899
+ vpcConfig?: VpcConfig | undefined;
3900
3900
  }
3901
3901
  /**
3902
3902
  * <p>Represents the result of a get run request.</p>
@@ -3907,7 +3907,7 @@ export interface GetRunResult {
3907
3907
  * <p>The run to get results from.</p>
3908
3908
  * @public
3909
3909
  */
3910
- run?: Run;
3910
+ run?: Run | undefined;
3911
3911
  }
3912
3912
  /**
3913
3913
  * <p>Represents a request to the get suite operation.</p>
@@ -3929,12 +3929,12 @@ export interface Suite {
3929
3929
  * <p>The suite's ARN.</p>
3930
3930
  * @public
3931
3931
  */
3932
- arn?: string;
3932
+ arn?: string | undefined;
3933
3933
  /**
3934
3934
  * <p>The suite's name.</p>
3935
3935
  * @public
3936
3936
  */
3937
- name?: string;
3937
+ name?: string | undefined;
3938
3938
  /**
3939
3939
  * <p>The suite's type.</p>
3940
3940
  * <p>Must be one of the following values:</p>
@@ -3984,12 +3984,12 @@ export interface Suite {
3984
3984
  * </ul>
3985
3985
  * @public
3986
3986
  */
3987
- type?: TestType;
3987
+ type?: TestType | undefined;
3988
3988
  /**
3989
3989
  * <p>When the suite was created.</p>
3990
3990
  * @public
3991
3991
  */
3992
- created?: Date;
3992
+ created?: Date | undefined;
3993
3993
  /**
3994
3994
  * <p>The suite's status.</p>
3995
3995
  * <p>Allowed values include:</p>
@@ -4024,7 +4024,7 @@ export interface Suite {
4024
4024
  * </ul>
4025
4025
  * @public
4026
4026
  */
4027
- status?: ExecutionStatus;
4027
+ status?: ExecutionStatus | undefined;
4028
4028
  /**
4029
4029
  * <p>The suite's result.</p>
4030
4030
  * <p>Allowed values include:</p>
@@ -4053,33 +4053,33 @@ export interface Suite {
4053
4053
  * </ul>
4054
4054
  * @public
4055
4055
  */
4056
- result?: ExecutionResult;
4056
+ result?: ExecutionResult | undefined;
4057
4057
  /**
4058
4058
  * <p>The suite's start time.</p>
4059
4059
  * @public
4060
4060
  */
4061
- started?: Date;
4061
+ started?: Date | undefined;
4062
4062
  /**
4063
4063
  * <p>The suite's stop time.</p>
4064
4064
  * @public
4065
4065
  */
4066
- stopped?: Date;
4066
+ stopped?: Date | undefined;
4067
4067
  /**
4068
4068
  * <p>The suite's result counters.</p>
4069
4069
  * @public
4070
4070
  */
4071
- counters?: Counters;
4071
+ counters?: Counters | undefined;
4072
4072
  /**
4073
4073
  * <p>A message about the suite's result.</p>
4074
4074
  * @public
4075
4075
  */
4076
- message?: string;
4076
+ message?: string | undefined;
4077
4077
  /**
4078
4078
  * <p>Represents the total (metered or unmetered) minutes used by the test
4079
4079
  * suite.</p>
4080
4080
  * @public
4081
4081
  */
4082
- deviceMinutes?: DeviceMinutes;
4082
+ deviceMinutes?: DeviceMinutes | undefined;
4083
4083
  }
4084
4084
  /**
4085
4085
  * <p>Represents the result of a get suite request.</p>
@@ -4090,7 +4090,7 @@ export interface GetSuiteResult {
4090
4090
  * <p>A collection of one or more tests.</p>
4091
4091
  * @public
4092
4092
  */
4093
- suite?: Suite;
4093
+ suite?: Suite | undefined;
4094
4094
  }
4095
4095
  /**
4096
4096
  * <p>Represents a request to the get test operation.</p>
@@ -4112,12 +4112,12 @@ export interface Test {
4112
4112
  * <p>The test's ARN.</p>
4113
4113
  * @public
4114
4114
  */
4115
- arn?: string;
4115
+ arn?: string | undefined;
4116
4116
  /**
4117
4117
  * <p>The test's name.</p>
4118
4118
  * @public
4119
4119
  */
4120
- name?: string;
4120
+ name?: string | undefined;
4121
4121
  /**
4122
4122
  * <p>The test's type.</p>
4123
4123
  * <p>Must be one of the following values:</p>
@@ -4167,12 +4167,12 @@ export interface Test {
4167
4167
  * </ul>
4168
4168
  * @public
4169
4169
  */
4170
- type?: TestType;
4170
+ type?: TestType | undefined;
4171
4171
  /**
4172
4172
  * <p>When the test was created.</p>
4173
4173
  * @public
4174
4174
  */
4175
- created?: Date;
4175
+ created?: Date | undefined;
4176
4176
  /**
4177
4177
  * <p>The test's status.</p>
4178
4178
  * <p>Allowed values include:</p>
@@ -4207,7 +4207,7 @@ export interface Test {
4207
4207
  * </ul>
4208
4208
  * @public
4209
4209
  */
4210
- status?: ExecutionStatus;
4210
+ status?: ExecutionStatus | undefined;
4211
4211
  /**
4212
4212
  * <p>The test's result.</p>
4213
4213
  * <p>Allowed values include:</p>
@@ -4236,32 +4236,32 @@ export interface Test {
4236
4236
  * </ul>
4237
4237
  * @public
4238
4238
  */
4239
- result?: ExecutionResult;
4239
+ result?: ExecutionResult | undefined;
4240
4240
  /**
4241
4241
  * <p>The test's start time.</p>
4242
4242
  * @public
4243
4243
  */
4244
- started?: Date;
4244
+ started?: Date | undefined;
4245
4245
  /**
4246
4246
  * <p>The test's stop time.</p>
4247
4247
  * @public
4248
4248
  */
4249
- stopped?: Date;
4249
+ stopped?: Date | undefined;
4250
4250
  /**
4251
4251
  * <p>The test's result counters.</p>
4252
4252
  * @public
4253
4253
  */
4254
- counters?: Counters;
4254
+ counters?: Counters | undefined;
4255
4255
  /**
4256
4256
  * <p>A message about the test's result.</p>
4257
4257
  * @public
4258
4258
  */
4259
- message?: string;
4259
+ message?: string | undefined;
4260
4260
  /**
4261
4261
  * <p>Represents the total (metered or unmetered) minutes used by the test.</p>
4262
4262
  * @public
4263
4263
  */
4264
- deviceMinutes?: DeviceMinutes;
4264
+ deviceMinutes?: DeviceMinutes | undefined;
4265
4265
  }
4266
4266
  /**
4267
4267
  * <p>Represents the result of a get test request.</p>
@@ -4272,7 +4272,7 @@ export interface GetTestResult {
4272
4272
  * <p>A test condition that is evaluated.</p>
4273
4273
  * @public
4274
4274
  */
4275
- test?: Test;
4275
+ test?: Test | undefined;
4276
4276
  }
4277
4277
  /**
4278
4278
  * @public
@@ -4292,7 +4292,7 @@ export interface GetTestGridProjectResult {
4292
4292
  * <p>A <a>TestGridProject</a>.</p>
4293
4293
  * @public
4294
4294
  */
4295
- testGridProject?: TestGridProject;
4295
+ testGridProject?: TestGridProject | undefined;
4296
4296
  }
4297
4297
  /**
4298
4298
  * @public
@@ -4302,17 +4302,17 @@ export interface GetTestGridSessionRequest {
4302
4302
  * <p>The ARN for the project that this session belongs to. See <a>CreateTestGridProject</a> and <a>ListTestGridProjects</a>.</p>
4303
4303
  * @public
4304
4304
  */
4305
- projectArn?: string;
4305
+ projectArn?: string | undefined;
4306
4306
  /**
4307
4307
  * <p>An ID associated with this session.</p>
4308
4308
  * @public
4309
4309
  */
4310
- sessionId?: string;
4310
+ sessionId?: string | undefined;
4311
4311
  /**
4312
4312
  * <p>An ARN that uniquely identifies a <a>TestGridSession</a>.</p>
4313
4313
  * @public
4314
4314
  */
4315
- sessionArn?: string;
4315
+ sessionArn?: string | undefined;
4316
4316
  }
4317
4317
  /**
4318
4318
  * @public
@@ -4337,32 +4337,32 @@ export interface TestGridSession {
4337
4337
  * <p>The ARN of the session.</p>
4338
4338
  * @public
4339
4339
  */
4340
- arn?: string;
4340
+ arn?: string | undefined;
4341
4341
  /**
4342
4342
  * <p>The state of the session.</p>
4343
4343
  * @public
4344
4344
  */
4345
- status?: TestGridSessionStatus;
4345
+ status?: TestGridSessionStatus | undefined;
4346
4346
  /**
4347
4347
  * <p>The time that the session was started.</p>
4348
4348
  * @public
4349
4349
  */
4350
- created?: Date;
4350
+ created?: Date | undefined;
4351
4351
  /**
4352
4352
  * <p>The time the session ended.</p>
4353
4353
  * @public
4354
4354
  */
4355
- ended?: Date;
4355
+ ended?: Date | undefined;
4356
4356
  /**
4357
4357
  * <p>The number of billed minutes that were used for this session. </p>
4358
4358
  * @public
4359
4359
  */
4360
- billingMinutes?: number;
4360
+ billingMinutes?: number | undefined;
4361
4361
  /**
4362
4362
  * <p>A JSON object of options and parameters passed to the Selenium WebDriver.</p>
4363
4363
  * @public
4364
4364
  */
4365
- seleniumProperties?: string;
4365
+ seleniumProperties?: string | undefined;
4366
4366
  }
4367
4367
  /**
4368
4368
  * @public
@@ -4372,7 +4372,7 @@ export interface GetTestGridSessionResult {
4372
4372
  * <p>The <a>TestGridSession</a> that was requested.</p>
4373
4373
  * @public
4374
4374
  */
4375
- testGridSession?: TestGridSession;
4375
+ testGridSession?: TestGridSession | undefined;
4376
4376
  }
4377
4377
  /**
4378
4378
  * <p>Represents a request to the get upload operation.</p>
@@ -4395,7 +4395,7 @@ export interface GetUploadResult {
4395
4395
  * uploaded.</p>
4396
4396
  * @public
4397
4397
  */
4398
- upload?: Upload;
4398
+ upload?: Upload | undefined;
4399
4399
  }
4400
4400
  /**
4401
4401
  * @public
@@ -4416,7 +4416,7 @@ export interface GetVPCEConfigurationResult {
4416
4416
  * <p>An object that contains information about your VPC endpoint configuration.</p>
4417
4417
  * @public
4418
4418
  */
4419
- vpceConfiguration?: VPCEConfiguration;
4419
+ vpceConfiguration?: VPCEConfiguration | undefined;
4420
4420
  }
4421
4421
  /**
4422
4422
  * <p>Represents the request to install an Android application (in .apk format) or an iOS
@@ -4446,7 +4446,7 @@ export interface InstallToRemoteAccessSessionResult {
4446
4446
  * <p>An app to upload or that has been uploaded.</p>
4447
4447
  * @public
4448
4448
  */
4449
- appUpload?: Upload;
4449
+ appUpload?: Upload | undefined;
4450
4450
  }
4451
4451
  /**
4452
4452
  * <p>Represents a request to the list artifacts operation.</p>
@@ -4480,7 +4480,7 @@ export interface ListArtifactsRequest {
4480
4480
  * be used to return the next set of items in the list.</p>
4481
4481
  * @public
4482
4482
  */
4483
- nextToken?: string;
4483
+ nextToken?: string | undefined;
4484
4484
  }
4485
4485
  /**
4486
4486
  * <p>Represents the result of a list artifacts operation.</p>
@@ -4491,14 +4491,14 @@ export interface ListArtifactsResult {
4491
4491
  * <p>Information about the artifacts.</p>
4492
4492
  * @public
4493
4493
  */
4494
- artifacts?: Artifact[];
4494
+ artifacts?: Artifact[] | undefined;
4495
4495
  /**
4496
4496
  * <p>If the number of items that are returned is significantly large, this is an identifier that is also
4497
4497
  * returned. It can be used in a subsequent call to this operation to return the next set of items in the
4498
4498
  * list.</p>
4499
4499
  * @public
4500
4500
  */
4501
- nextToken?: string;
4501
+ nextToken?: string | undefined;
4502
4502
  }
4503
4503
  /**
4504
4504
  * @public
@@ -4508,13 +4508,13 @@ export interface ListDeviceInstancesRequest {
4508
4508
  * <p>An integer that specifies the maximum number of items you want to return in the API response.</p>
4509
4509
  * @public
4510
4510
  */
4511
- maxResults?: number;
4511
+ maxResults?: number | undefined;
4512
4512
  /**
4513
4513
  * <p>An identifier that was returned from the previous call to this operation, which can be
4514
4514
  * used to return the next set of items in the list.</p>
4515
4515
  * @public
4516
4516
  */
4517
- nextToken?: string;
4517
+ nextToken?: string | undefined;
4518
4518
  }
4519
4519
  /**
4520
4520
  * @public
@@ -4524,13 +4524,13 @@ export interface ListDeviceInstancesResult {
4524
4524
  * <p>An object that contains information about your device instances.</p>
4525
4525
  * @public
4526
4526
  */
4527
- deviceInstances?: DeviceInstance[];
4527
+ deviceInstances?: DeviceInstance[] | undefined;
4528
4528
  /**
4529
4529
  * <p>An identifier that can be used in the next call to this operation to return the next
4530
4530
  * set of items in the list.</p>
4531
4531
  * @public
4532
4532
  */
4533
- nextToken?: string;
4533
+ nextToken?: string | undefined;
4534
4534
  }
4535
4535
  /**
4536
4536
  * <p>Represents the result of a list device pools request.</p>
@@ -4557,13 +4557,13 @@ export interface ListDevicePoolsRequest {
4557
4557
  * </ul>
4558
4558
  * @public
4559
4559
  */
4560
- type?: DevicePoolType;
4560
+ type?: DevicePoolType | undefined;
4561
4561
  /**
4562
4562
  * <p>An identifier that was returned from the previous call to this operation, which can
4563
4563
  * be used to return the next set of items in the list.</p>
4564
4564
  * @public
4565
4565
  */
4566
- nextToken?: string;
4566
+ nextToken?: string | undefined;
4567
4567
  }
4568
4568
  /**
4569
4569
  * <p>Represents the result of a list device pools request.</p>
@@ -4574,14 +4574,14 @@ export interface ListDevicePoolsResult {
4574
4574
  * <p>Information about the device pools.</p>
4575
4575
  * @public
4576
4576
  */
4577
- devicePools?: DevicePool[];
4577
+ devicePools?: DevicePool[] | undefined;
4578
4578
  /**
4579
4579
  * <p>If the number of items that are returned is significantly large, this is an identifier that is also
4580
4580
  * returned. It can be used in a subsequent call to this operation to return the next set of items in the
4581
4581
  * list.</p>
4582
4582
  * @public
4583
4583
  */
4584
- nextToken?: string;
4584
+ nextToken?: string | undefined;
4585
4585
  }
4586
4586
  /**
4587
4587
  * <p>Represents the result of a list devices request.</p>
@@ -4592,13 +4592,13 @@ export interface ListDevicesRequest {
4592
4592
  * <p>The Amazon Resource Name (ARN) of the project.</p>
4593
4593
  * @public
4594
4594
  */
4595
- arn?: string;
4595
+ arn?: string | undefined;
4596
4596
  /**
4597
4597
  * <p>An identifier that was returned from the previous call to this operation, which can
4598
4598
  * be used to return the next set of items in the list.</p>
4599
4599
  * @public
4600
4600
  */
4601
- nextToken?: string;
4601
+ nextToken?: string | undefined;
4602
4602
  /**
4603
4603
  * <p>Used to select a set of devices. A filter is made up of an attribute, an operator, and
4604
4604
  * one or more values.</p>
@@ -4693,7 +4693,7 @@ export interface ListDevicesRequest {
4693
4693
  * </ul>
4694
4694
  * @public
4695
4695
  */
4696
- filters?: DeviceFilter[];
4696
+ filters?: DeviceFilter[] | undefined;
4697
4697
  }
4698
4698
  /**
4699
4699
  * <p>Represents the result of a list devices operation.</p>
@@ -4704,14 +4704,14 @@ export interface ListDevicesResult {
4704
4704
  * <p>Information about the devices.</p>
4705
4705
  * @public
4706
4706
  */
4707
- devices?: Device[];
4707
+ devices?: Device[] | undefined;
4708
4708
  /**
4709
4709
  * <p>If the number of items that are returned is significantly large, this is an identifier that is also
4710
4710
  * returned. It can be used in a subsequent call to this operation to return the next set of items in the
4711
4711
  * list.</p>
4712
4712
  * @public
4713
4713
  */
4714
- nextToken?: string;
4714
+ nextToken?: string | undefined;
4715
4715
  }
4716
4716
  /**
4717
4717
  * @public
@@ -4721,13 +4721,13 @@ export interface ListInstanceProfilesRequest {
4721
4721
  * <p>An integer that specifies the maximum number of items you want to return in the API response.</p>
4722
4722
  * @public
4723
4723
  */
4724
- maxResults?: number;
4724
+ maxResults?: number | undefined;
4725
4725
  /**
4726
4726
  * <p>An identifier that was returned from the previous call to this operation, which can be
4727
4727
  * used to return the next set of items in the list.</p>
4728
4728
  * @public
4729
4729
  */
4730
- nextToken?: string;
4730
+ nextToken?: string | undefined;
4731
4731
  }
4732
4732
  /**
4733
4733
  * @public
@@ -4737,13 +4737,13 @@ export interface ListInstanceProfilesResult {
4737
4737
  * <p>An object that contains information about your instance profiles.</p>
4738
4738
  * @public
4739
4739
  */
4740
- instanceProfiles?: InstanceProfile[];
4740
+ instanceProfiles?: InstanceProfile[] | undefined;
4741
4741
  /**
4742
4742
  * <p>An identifier that can be used in the next call to this operation to return the next
4743
4743
  * set of items in the list.</p>
4744
4744
  * @public
4745
4745
  */
4746
- nextToken?: string;
4746
+ nextToken?: string | undefined;
4747
4747
  }
4748
4748
  /**
4749
4749
  * <p>Represents a request to the list jobs operation.</p>
@@ -4760,7 +4760,7 @@ export interface ListJobsRequest {
4760
4760
  * be used to return the next set of items in the list.</p>
4761
4761
  * @public
4762
4762
  */
4763
- nextToken?: string;
4763
+ nextToken?: string | undefined;
4764
4764
  }
4765
4765
  /**
4766
4766
  * <p>Represents the result of a list jobs request.</p>
@@ -4771,14 +4771,14 @@ export interface ListJobsResult {
4771
4771
  * <p>Information about the jobs.</p>
4772
4772
  * @public
4773
4773
  */
4774
- jobs?: Job[];
4774
+ jobs?: Job[] | undefined;
4775
4775
  /**
4776
4776
  * <p>If the number of items that are returned is significantly large, this is an identifier that is also
4777
4777
  * returned. It can be used in a subsequent call to this operation to return the next set of items in the
4778
4778
  * list.</p>
4779
4779
  * @public
4780
4780
  */
4781
- nextToken?: string;
4781
+ nextToken?: string | undefined;
4782
4782
  }
4783
4783
  /**
4784
4784
  * @public
@@ -4794,13 +4794,13 @@ export interface ListNetworkProfilesRequest {
4794
4794
  * <p>The type of network profile to return information about. Valid values are listed here.</p>
4795
4795
  * @public
4796
4796
  */
4797
- type?: NetworkProfileType;
4797
+ type?: NetworkProfileType | undefined;
4798
4798
  /**
4799
4799
  * <p>An identifier that was returned from the previous call to this operation, which can
4800
4800
  * be used to return the next set of items in the list.</p>
4801
4801
  * @public
4802
4802
  */
4803
- nextToken?: string;
4803
+ nextToken?: string | undefined;
4804
4804
  }
4805
4805
  /**
4806
4806
  * @public
@@ -4810,13 +4810,13 @@ export interface ListNetworkProfilesResult {
4810
4810
  * <p>A list of the available network profiles.</p>
4811
4811
  * @public
4812
4812
  */
4813
- networkProfiles?: NetworkProfile[];
4813
+ networkProfiles?: NetworkProfile[] | undefined;
4814
4814
  /**
4815
4815
  * <p>An identifier that was returned from the previous call to this operation, which can
4816
4816
  * be used to return the next set of items in the list.</p>
4817
4817
  * @public
4818
4818
  */
4819
- nextToken?: string;
4819
+ nextToken?: string | undefined;
4820
4820
  }
4821
4821
  /**
4822
4822
  * @public
@@ -4827,7 +4827,7 @@ export interface ListOfferingPromotionsRequest {
4827
4827
  * be used to return the next set of items in the list.</p>
4828
4828
  * @public
4829
4829
  */
4830
- nextToken?: string;
4830
+ nextToken?: string | undefined;
4831
4831
  }
4832
4832
  /**
4833
4833
  * <p>Represents information about an offering promotion.</p>
@@ -4838,12 +4838,12 @@ export interface OfferingPromotion {
4838
4838
  * <p>The ID of the offering promotion.</p>
4839
4839
  * @public
4840
4840
  */
4841
- id?: string;
4841
+ id?: string | undefined;
4842
4842
  /**
4843
4843
  * <p>A string that describes the offering promotion.</p>
4844
4844
  * @public
4845
4845
  */
4846
- description?: string;
4846
+ description?: string | undefined;
4847
4847
  }
4848
4848
  /**
4849
4849
  * @public
@@ -4853,13 +4853,13 @@ export interface ListOfferingPromotionsResult {
4853
4853
  * <p>Information about the offering promotions.</p>
4854
4854
  * @public
4855
4855
  */
4856
- offeringPromotions?: OfferingPromotion[];
4856
+ offeringPromotions?: OfferingPromotion[] | undefined;
4857
4857
  /**
4858
4858
  * <p>An identifier to be used in the next call to this operation, to return the next set
4859
4859
  * of items in the list.</p>
4860
4860
  * @public
4861
4861
  */
4862
- nextToken?: string;
4862
+ nextToken?: string | undefined;
4863
4863
  }
4864
4864
  /**
4865
4865
  * <p>Represents the request to list all offerings.</p>
@@ -4871,7 +4871,7 @@ export interface ListOfferingsRequest {
4871
4871
  * be used to return the next set of items in the list.</p>
4872
4872
  * @public
4873
4873
  */
4874
- nextToken?: string;
4874
+ nextToken?: string | undefined;
4875
4875
  }
4876
4876
  /**
4877
4877
  * <p>Represents the return values of the list of offerings.</p>
@@ -4882,13 +4882,13 @@ export interface ListOfferingsResult {
4882
4882
  * <p>A value that represents the list offering results.</p>
4883
4883
  * @public
4884
4884
  */
4885
- offerings?: Offering[];
4885
+ offerings?: Offering[] | undefined;
4886
4886
  /**
4887
4887
  * <p>An identifier that was returned from the previous call to this operation, which can
4888
4888
  * be used to return the next set of items in the list.</p>
4889
4889
  * @public
4890
4890
  */
4891
- nextToken?: string;
4891
+ nextToken?: string | undefined;
4892
4892
  }
4893
4893
  /**
4894
4894
  * <p>Represents the request to list the offering transaction history.</p>
@@ -4900,7 +4900,7 @@ export interface ListOfferingTransactionsRequest {
4900
4900
  * be used to return the next set of items in the list.</p>
4901
4901
  * @public
4902
4902
  */
4903
- nextToken?: string;
4903
+ nextToken?: string | undefined;
4904
4904
  }
4905
4905
  /**
4906
4906
  * <p>Represents the metadata of an offering transaction.</p>
@@ -4911,27 +4911,27 @@ export interface OfferingTransaction {
4911
4911
  * <p>The status of an offering transaction.</p>
4912
4912
  * @public
4913
4913
  */
4914
- offeringStatus?: OfferingStatus;
4914
+ offeringStatus?: OfferingStatus | undefined;
4915
4915
  /**
4916
4916
  * <p>The transaction ID of the offering transaction.</p>
4917
4917
  * @public
4918
4918
  */
4919
- transactionId?: string;
4919
+ transactionId?: string | undefined;
4920
4920
  /**
4921
4921
  * <p>The ID that corresponds to a device offering promotion.</p>
4922
4922
  * @public
4923
4923
  */
4924
- offeringPromotionId?: string;
4924
+ offeringPromotionId?: string | undefined;
4925
4925
  /**
4926
4926
  * <p>The date on which an offering transaction was created.</p>
4927
4927
  * @public
4928
4928
  */
4929
- createdOn?: Date;
4929
+ createdOn?: Date | undefined;
4930
4930
  /**
4931
4931
  * <p>The cost of an offering transaction.</p>
4932
4932
  * @public
4933
4933
  */
4934
- cost?: MonetaryAmount;
4934
+ cost?: MonetaryAmount | undefined;
4935
4935
  }
4936
4936
  /**
4937
4937
  * <p>Returns the transaction log of the specified offerings.</p>
@@ -4943,13 +4943,13 @@ export interface ListOfferingTransactionsResult {
4943
4943
  * Farm.</p>
4944
4944
  * @public
4945
4945
  */
4946
- offeringTransactions?: OfferingTransaction[];
4946
+ offeringTransactions?: OfferingTransaction[] | undefined;
4947
4947
  /**
4948
4948
  * <p>An identifier that was returned from the previous call to this operation, which can
4949
4949
  * be used to return the next set of items in the list.</p>
4950
4950
  * @public
4951
4951
  */
4952
- nextToken?: string;
4952
+ nextToken?: string | undefined;
4953
4953
  }
4954
4954
  /**
4955
4955
  * <p>Represents a request to the list projects operation.</p>
@@ -4962,13 +4962,13 @@ export interface ListProjectsRequest {
4962
4962
  * ARN.</p>
4963
4963
  * @public
4964
4964
  */
4965
- arn?: string;
4965
+ arn?: string | undefined;
4966
4966
  /**
4967
4967
  * <p>An identifier that was returned from the previous call to this operation, which can
4968
4968
  * be used to return the next set of items in the list.</p>
4969
4969
  * @public
4970
4970
  */
4971
- nextToken?: string;
4971
+ nextToken?: string | undefined;
4972
4972
  }
4973
4973
  /**
4974
4974
  * <p>Represents the result of a list projects request.</p>
@@ -4979,14 +4979,14 @@ export interface ListProjectsResult {
4979
4979
  * <p>Information about the projects.</p>
4980
4980
  * @public
4981
4981
  */
4982
- projects?: Project[];
4982
+ projects?: Project[] | undefined;
4983
4983
  /**
4984
4984
  * <p>If the number of items that are returned is significantly large, this is an identifier that is also
4985
4985
  * returned. It can be used in a subsequent call to this operation to return the next set of items in the
4986
4986
  * list.</p>
4987
4987
  * @public
4988
4988
  */
4989
- nextToken?: string;
4989
+ nextToken?: string | undefined;
4990
4990
  }
4991
4991
  /**
4992
4992
  * <p>Represents the request to return information about the remote access
@@ -5005,7 +5005,7 @@ export interface ListRemoteAccessSessionsRequest {
5005
5005
  * be used to return the next set of items in the list.</p>
5006
5006
  * @public
5007
5007
  */
5008
- nextToken?: string;
5008
+ nextToken?: string | undefined;
5009
5009
  }
5010
5010
  /**
5011
5011
  * <p>Represents the response from the server after AWS Device Farm makes a request to
@@ -5018,13 +5018,13 @@ export interface ListRemoteAccessSessionsResult {
5018
5018
  * requesting.</p>
5019
5019
  * @public
5020
5020
  */
5021
- remoteAccessSessions?: RemoteAccessSession[];
5021
+ remoteAccessSessions?: RemoteAccessSession[] | undefined;
5022
5022
  /**
5023
5023
  * <p>An identifier that was returned from the previous call to this operation, which can
5024
5024
  * be used to return the next set of items in the list.</p>
5025
5025
  * @public
5026
5026
  */
5027
- nextToken?: string;
5027
+ nextToken?: string | undefined;
5028
5028
  }
5029
5029
  /**
5030
5030
  * <p>Represents a request to the list runs operation.</p>
@@ -5042,7 +5042,7 @@ export interface ListRunsRequest {
5042
5042
  * be used to return the next set of items in the list.</p>
5043
5043
  * @public
5044
5044
  */
5045
- nextToken?: string;
5045
+ nextToken?: string | undefined;
5046
5046
  }
5047
5047
  /**
5048
5048
  * <p>Represents the result of a list runs request.</p>
@@ -5053,14 +5053,14 @@ export interface ListRunsResult {
5053
5053
  * <p>Information about the runs.</p>
5054
5054
  * @public
5055
5055
  */
5056
- runs?: Run[];
5056
+ runs?: Run[] | undefined;
5057
5057
  /**
5058
5058
  * <p>If the number of items that are returned is significantly large, this is an identifier that is also
5059
5059
  * returned. It can be used in a subsequent call to this operation to return the next set of items in the
5060
5060
  * list.</p>
5061
5061
  * @public
5062
5062
  */
5063
- nextToken?: string;
5063
+ nextToken?: string | undefined;
5064
5064
  }
5065
5065
  /**
5066
5066
  * <p>Represents a request to the list samples operation.</p>
@@ -5077,7 +5077,7 @@ export interface ListSamplesRequest {
5077
5077
  * be used to return the next set of items in the list.</p>
5078
5078
  * @public
5079
5079
  */
5080
- nextToken?: string;
5080
+ nextToken?: string | undefined;
5081
5081
  }
5082
5082
  /**
5083
5083
  * @public
@@ -5115,7 +5115,7 @@ export interface Sample {
5115
5115
  * <p>The sample's ARN.</p>
5116
5116
  * @public
5117
5117
  */
5118
- arn?: string;
5118
+ arn?: string | undefined;
5119
5119
  /**
5120
5120
  * <p>The sample's type.</p>
5121
5121
  * <p>Must be one of the following values:</p>
@@ -5179,13 +5179,13 @@ export interface Sample {
5179
5179
  * </ul>
5180
5180
  * @public
5181
5181
  */
5182
- type?: SampleType;
5182
+ type?: SampleType | undefined;
5183
5183
  /**
5184
5184
  * <p>The presigned Amazon S3 URL that can be used with a GET request to download the sample's
5185
5185
  * file.</p>
5186
5186
  * @public
5187
5187
  */
5188
- url?: string;
5188
+ url?: string | undefined;
5189
5189
  }
5190
5190
  /**
5191
5191
  * <p>Represents the result of a list samples request.</p>
@@ -5196,14 +5196,14 @@ export interface ListSamplesResult {
5196
5196
  * <p>Information about the samples.</p>
5197
5197
  * @public
5198
5198
  */
5199
- samples?: Sample[];
5199
+ samples?: Sample[] | undefined;
5200
5200
  /**
5201
5201
  * <p>If the number of items that are returned is significantly large, this is an identifier that is also
5202
5202
  * returned. It can be used in a subsequent call to this operation to return the next set of items in the
5203
5203
  * list.</p>
5204
5204
  * @public
5205
5205
  */
5206
- nextToken?: string;
5206
+ nextToken?: string | undefined;
5207
5207
  }
5208
5208
  /**
5209
5209
  * <p>Represents a request to the list suites operation.</p>
@@ -5220,7 +5220,7 @@ export interface ListSuitesRequest {
5220
5220
  * be used to return the next set of items in the list.</p>
5221
5221
  * @public
5222
5222
  */
5223
- nextToken?: string;
5223
+ nextToken?: string | undefined;
5224
5224
  }
5225
5225
  /**
5226
5226
  * <p>Represents the result of a list suites request.</p>
@@ -5231,14 +5231,14 @@ export interface ListSuitesResult {
5231
5231
  * <p>Information about the suites.</p>
5232
5232
  * @public
5233
5233
  */
5234
- suites?: Suite[];
5234
+ suites?: Suite[] | undefined;
5235
5235
  /**
5236
5236
  * <p>If the number of items that are returned is significantly large, this is an identifier that is also
5237
5237
  * returned. It can be used in a subsequent call to this operation to return the next set of items in the
5238
5238
  * list.</p>
5239
5239
  * @public
5240
5240
  */
5241
- nextToken?: string;
5241
+ nextToken?: string | undefined;
5242
5242
  }
5243
5243
  /**
5244
5244
  * @public
@@ -5283,7 +5283,7 @@ export interface ListTagsForResourceResponse {
5283
5283
  * character length of 128 characters. Tag values can have a maximum length of 256 characters.</p>
5284
5284
  * @public
5285
5285
  */
5286
- Tags?: Tag[];
5286
+ Tags?: Tag[] | undefined;
5287
5287
  }
5288
5288
  /**
5289
5289
  * @public
@@ -5293,12 +5293,12 @@ export interface ListTestGridProjectsRequest {
5293
5293
  * <p>Return no more than this number of results.</p>
5294
5294
  * @public
5295
5295
  */
5296
- maxResult?: number;
5296
+ maxResult?: number | undefined;
5297
5297
  /**
5298
5298
  * <p>From a response, used to continue a paginated listing. </p>
5299
5299
  * @public
5300
5300
  */
5301
- nextToken?: string;
5301
+ nextToken?: string | undefined;
5302
5302
  }
5303
5303
  /**
5304
5304
  * @public
@@ -5308,13 +5308,13 @@ export interface ListTestGridProjectsResult {
5308
5308
  * <p>The list of TestGridProjects, based on a <a>ListTestGridProjectsRequest</a>.</p>
5309
5309
  * @public
5310
5310
  */
5311
- testGridProjects?: TestGridProject[];
5311
+ testGridProjects?: TestGridProject[] | undefined;
5312
5312
  /**
5313
5313
  * <p>Used for pagination. Pass into <a>ListTestGridProjects</a> to get more results in a paginated
5314
5314
  * request.</p>
5315
5315
  * @public
5316
5316
  */
5317
- nextToken?: string;
5317
+ nextToken?: string | undefined;
5318
5318
  }
5319
5319
  /**
5320
5320
  * @public
@@ -5329,12 +5329,12 @@ export interface ListTestGridSessionActionsRequest {
5329
5329
  * <p>The maximum number of sessions to return per response.</p>
5330
5330
  * @public
5331
5331
  */
5332
- maxResult?: number;
5332
+ maxResult?: number | undefined;
5333
5333
  /**
5334
5334
  * <p>Pagination token.</p>
5335
5335
  * @public
5336
5336
  */
5337
- nextToken?: string;
5337
+ nextToken?: string | undefined;
5338
5338
  }
5339
5339
  /**
5340
5340
  * <p>An action taken by a <a>TestGridSession</a> browser instance.</p>
@@ -5345,27 +5345,27 @@ export interface TestGridSessionAction {
5345
5345
  * <p>The action taken by the session.</p>
5346
5346
  * @public
5347
5347
  */
5348
- action?: string;
5348
+ action?: string | undefined;
5349
5349
  /**
5350
5350
  * <p>The time that the session invoked the action.</p>
5351
5351
  * @public
5352
5352
  */
5353
- started?: Date;
5353
+ started?: Date | undefined;
5354
5354
  /**
5355
5355
  * <p>The time, in milliseconds, that the action took to complete in the browser.</p>
5356
5356
  * @public
5357
5357
  */
5358
- duration?: number;
5358
+ duration?: number | undefined;
5359
5359
  /**
5360
5360
  * <p>HTTP status code returned to the browser when the action was taken.</p>
5361
5361
  * @public
5362
5362
  */
5363
- statusCode?: string;
5363
+ statusCode?: string | undefined;
5364
5364
  /**
5365
5365
  * <p>HTTP method that the browser used to make the request.</p>
5366
5366
  * @public
5367
5367
  */
5368
- requestMethod?: string;
5368
+ requestMethod?: string | undefined;
5369
5369
  }
5370
5370
  /**
5371
5371
  * @public
@@ -5375,12 +5375,12 @@ export interface ListTestGridSessionActionsResult {
5375
5375
  * <p>The action taken by the session.</p>
5376
5376
  * @public
5377
5377
  */
5378
- actions?: TestGridSessionAction[];
5378
+ actions?: TestGridSessionAction[] | undefined;
5379
5379
  /**
5380
5380
  * <p>Pagination token.</p>
5381
5381
  * @public
5382
5382
  */
5383
- nextToken?: string;
5383
+ nextToken?: string | undefined;
5384
5384
  }
5385
5385
  /**
5386
5386
  * @public
@@ -5407,17 +5407,17 @@ export interface ListTestGridSessionArtifactsRequest {
5407
5407
  * <p>Limit results to a specified type of artifact.</p>
5408
5408
  * @public
5409
5409
  */
5410
- type?: TestGridSessionArtifactCategory;
5410
+ type?: TestGridSessionArtifactCategory | undefined;
5411
5411
  /**
5412
5412
  * <p>The maximum number of results to be returned by a request.</p>
5413
5413
  * @public
5414
5414
  */
5415
- maxResult?: number;
5415
+ maxResult?: number | undefined;
5416
5416
  /**
5417
5417
  * <p>Pagination token.</p>
5418
5418
  * @public
5419
5419
  */
5420
- nextToken?: string;
5420
+ nextToken?: string | undefined;
5421
5421
  }
5422
5422
  /**
5423
5423
  * @public
@@ -5445,17 +5445,17 @@ export interface TestGridSessionArtifact {
5445
5445
  * <p>The file name of the artifact.</p>
5446
5446
  * @public
5447
5447
  */
5448
- filename?: string;
5448
+ filename?: string | undefined;
5449
5449
  /**
5450
5450
  * <p>The kind of artifact.</p>
5451
5451
  * @public
5452
5452
  */
5453
- type?: TestGridSessionArtifactType;
5453
+ type?: TestGridSessionArtifactType | undefined;
5454
5454
  /**
5455
5455
  * <p>A semi-stable URL to the content of the object.</p>
5456
5456
  * @public
5457
5457
  */
5458
- url?: string;
5458
+ url?: string | undefined;
5459
5459
  }
5460
5460
  /**
5461
5461
  * @public
@@ -5465,12 +5465,12 @@ export interface ListTestGridSessionArtifactsResult {
5465
5465
  * <p>A list of test grid session artifacts for a <a>TestGridSession</a>.</p>
5466
5466
  * @public
5467
5467
  */
5468
- artifacts?: TestGridSessionArtifact[];
5468
+ artifacts?: TestGridSessionArtifact[] | undefined;
5469
5469
  /**
5470
5470
  * <p>Pagination token.</p>
5471
5471
  * @public
5472
5472
  */
5473
- nextToken?: string;
5473
+ nextToken?: string | undefined;
5474
5474
  }
5475
5475
  /**
5476
5476
  * @public
@@ -5485,37 +5485,37 @@ export interface ListTestGridSessionsRequest {
5485
5485
  * <p>Return only sessions in this state.</p>
5486
5486
  * @public
5487
5487
  */
5488
- status?: TestGridSessionStatus;
5488
+ status?: TestGridSessionStatus | undefined;
5489
5489
  /**
5490
5490
  * <p>Return only sessions created after this time.</p>
5491
5491
  * @public
5492
5492
  */
5493
- creationTimeAfter?: Date;
5493
+ creationTimeAfter?: Date | undefined;
5494
5494
  /**
5495
5495
  * <p>Return only sessions created before this time.</p>
5496
5496
  * @public
5497
5497
  */
5498
- creationTimeBefore?: Date;
5498
+ creationTimeBefore?: Date | undefined;
5499
5499
  /**
5500
5500
  * <p>Return only sessions that ended after this time.</p>
5501
5501
  * @public
5502
5502
  */
5503
- endTimeAfter?: Date;
5503
+ endTimeAfter?: Date | undefined;
5504
5504
  /**
5505
5505
  * <p>Return only sessions that ended before this time.</p>
5506
5506
  * @public
5507
5507
  */
5508
- endTimeBefore?: Date;
5508
+ endTimeBefore?: Date | undefined;
5509
5509
  /**
5510
5510
  * <p>Return only this many results at a time.</p>
5511
5511
  * @public
5512
5512
  */
5513
- maxResult?: number;
5513
+ maxResult?: number | undefined;
5514
5514
  /**
5515
5515
  * <p>Pagination token.</p>
5516
5516
  * @public
5517
5517
  */
5518
- nextToken?: string;
5518
+ nextToken?: string | undefined;
5519
5519
  }
5520
5520
  /**
5521
5521
  * @public
@@ -5525,12 +5525,12 @@ export interface ListTestGridSessionsResult {
5525
5525
  * <p>The sessions that match the criteria in a <a>ListTestGridSessionsRequest</a>. </p>
5526
5526
  * @public
5527
5527
  */
5528
- testGridSessions?: TestGridSession[];
5528
+ testGridSessions?: TestGridSession[] | undefined;
5529
5529
  /**
5530
5530
  * <p>Pagination token.</p>
5531
5531
  * @public
5532
5532
  */
5533
- nextToken?: string;
5533
+ nextToken?: string | undefined;
5534
5534
  }
5535
5535
  /**
5536
5536
  * <p>Represents a request to the list tests operation.</p>
@@ -5547,7 +5547,7 @@ export interface ListTestsRequest {
5547
5547
  * be used to return the next set of items in the list.</p>
5548
5548
  * @public
5549
5549
  */
5550
- nextToken?: string;
5550
+ nextToken?: string | undefined;
5551
5551
  }
5552
5552
  /**
5553
5553
  * <p>Represents the result of a list tests request.</p>
@@ -5558,14 +5558,14 @@ export interface ListTestsResult {
5558
5558
  * <p>Information about the tests.</p>
5559
5559
  * @public
5560
5560
  */
5561
- tests?: Test[];
5561
+ tests?: Test[] | undefined;
5562
5562
  /**
5563
5563
  * <p>If the number of items that are returned is significantly large, this is an identifier that is also
5564
5564
  * returned. It can be used in a subsequent call to this operation to return the next set of items in the
5565
5565
  * list.</p>
5566
5566
  * @public
5567
5567
  */
5568
- nextToken?: string;
5568
+ nextToken?: string | undefined;
5569
5569
  }
5570
5570
  /**
5571
5571
  * <p>Represents a request to the list unique problems operation.</p>
@@ -5582,7 +5582,7 @@ export interface ListUniqueProblemsRequest {
5582
5582
  * be used to return the next set of items in the list.</p>
5583
5583
  * @public
5584
5584
  */
5585
- nextToken?: string;
5585
+ nextToken?: string | undefined;
5586
5586
  }
5587
5587
  /**
5588
5588
  * <p>Information about a problem detail.</p>
@@ -5593,12 +5593,12 @@ export interface ProblemDetail {
5593
5593
  * <p>The problem detail's ARN.</p>
5594
5594
  * @public
5595
5595
  */
5596
- arn?: string;
5596
+ arn?: string | undefined;
5597
5597
  /**
5598
5598
  * <p>The problem detail's name.</p>
5599
5599
  * @public
5600
5600
  */
5601
- name?: string;
5601
+ name?: string | undefined;
5602
5602
  }
5603
5603
  /**
5604
5604
  * <p>Represents a specific warning or failure.</p>
@@ -5609,27 +5609,27 @@ export interface Problem {
5609
5609
  * <p>Information about the associated run.</p>
5610
5610
  * @public
5611
5611
  */
5612
- run?: ProblemDetail;
5612
+ run?: ProblemDetail | undefined;
5613
5613
  /**
5614
5614
  * <p>Information about the associated job.</p>
5615
5615
  * @public
5616
5616
  */
5617
- job?: ProblemDetail;
5617
+ job?: ProblemDetail | undefined;
5618
5618
  /**
5619
5619
  * <p>Information about the associated suite.</p>
5620
5620
  * @public
5621
5621
  */
5622
- suite?: ProblemDetail;
5622
+ suite?: ProblemDetail | undefined;
5623
5623
  /**
5624
5624
  * <p>Information about the associated test.</p>
5625
5625
  * @public
5626
5626
  */
5627
- test?: ProblemDetail;
5627
+ test?: ProblemDetail | undefined;
5628
5628
  /**
5629
5629
  * <p>Information about the associated device.</p>
5630
5630
  * @public
5631
5631
  */
5632
- device?: Device;
5632
+ device?: Device | undefined;
5633
5633
  /**
5634
5634
  * <p>The problem's result.</p>
5635
5635
  * <p>Allowed values include:</p>
@@ -5658,12 +5658,12 @@ export interface Problem {
5658
5658
  * </ul>
5659
5659
  * @public
5660
5660
  */
5661
- result?: ExecutionResult;
5661
+ result?: ExecutionResult | undefined;
5662
5662
  /**
5663
5663
  * <p>A message about the problem's result.</p>
5664
5664
  * @public
5665
5665
  */
5666
- message?: string;
5666
+ message?: string | undefined;
5667
5667
  }
5668
5668
  /**
5669
5669
  * <p>A collection of one or more problems, grouped by their result.</p>
@@ -5674,12 +5674,12 @@ export interface UniqueProblem {
5674
5674
  * <p>A message about the unique problems' result.</p>
5675
5675
  * @public
5676
5676
  */
5677
- message?: string;
5677
+ message?: string | undefined;
5678
5678
  /**
5679
5679
  * <p>Information about the problems.</p>
5680
5680
  * @public
5681
5681
  */
5682
- problems?: Problem[];
5682
+ problems?: Problem[] | undefined;
5683
5683
  }
5684
5684
  /**
5685
5685
  * <p>Represents the result of a list unique problems request.</p>
@@ -5714,14 +5714,14 @@ export interface ListUniqueProblemsResult {
5714
5714
  * </ul>
5715
5715
  * @public
5716
5716
  */
5717
- uniqueProblems?: Partial<Record<ExecutionResult, UniqueProblem[]>>;
5717
+ uniqueProblems?: Partial<Record<ExecutionResult, UniqueProblem[]>> | undefined;
5718
5718
  /**
5719
5719
  * <p>If the number of items that are returned is significantly large, this is an identifier that is also
5720
5720
  * returned. It can be used in a subsequent call to this operation to return the next set of items in the
5721
5721
  * list.</p>
5722
5722
  * @public
5723
5723
  */
5724
- nextToken?: string;
5724
+ nextToken?: string | undefined;
5725
5725
  }
5726
5726
  /**
5727
5727
  * <p>Represents a request to the list uploads operation.</p>
@@ -5828,13 +5828,13 @@ export interface ListUploadsRequest {
5828
5828
  * </ul>
5829
5829
  * @public
5830
5830
  */
5831
- type?: UploadType;
5831
+ type?: UploadType | undefined;
5832
5832
  /**
5833
5833
  * <p>An identifier that was returned from the previous call to this operation, which can
5834
5834
  * be used to return the next set of items in the list.</p>
5835
5835
  * @public
5836
5836
  */
5837
- nextToken?: string;
5837
+ nextToken?: string | undefined;
5838
5838
  }
5839
5839
  /**
5840
5840
  * <p>Represents the result of a list uploads request.</p>
@@ -5845,14 +5845,14 @@ export interface ListUploadsResult {
5845
5845
  * <p>Information about the uploads.</p>
5846
5846
  * @public
5847
5847
  */
5848
- uploads?: Upload[];
5848
+ uploads?: Upload[] | undefined;
5849
5849
  /**
5850
5850
  * <p>If the number of items that are returned is significantly large, this is an identifier that is also
5851
5851
  * returned. It can be used in a subsequent call to this operation to return the next set of items in the
5852
5852
  * list.</p>
5853
5853
  * @public
5854
5854
  */
5855
- nextToken?: string;
5855
+ nextToken?: string | undefined;
5856
5856
  }
5857
5857
  /**
5858
5858
  * @public
@@ -5862,13 +5862,13 @@ export interface ListVPCEConfigurationsRequest {
5862
5862
  * <p>An integer that specifies the maximum number of items you want to return in the API response.</p>
5863
5863
  * @public
5864
5864
  */
5865
- maxResults?: number;
5865
+ maxResults?: number | undefined;
5866
5866
  /**
5867
5867
  * <p>An identifier that was returned from the previous call to this operation, which can be
5868
5868
  * used to return the next set of items in the list.</p>
5869
5869
  * @public
5870
5870
  */
5871
- nextToken?: string;
5871
+ nextToken?: string | undefined;
5872
5872
  }
5873
5873
  /**
5874
5874
  * @public
@@ -5879,13 +5879,13 @@ export interface ListVPCEConfigurationsResult {
5879
5879
  * configuration.</p>
5880
5880
  * @public
5881
5881
  */
5882
- vpceConfigurations?: VPCEConfiguration[];
5882
+ vpceConfigurations?: VPCEConfiguration[] | undefined;
5883
5883
  /**
5884
5884
  * <p>An identifier that was returned from the previous call to this operation, which can be
5885
5885
  * used to return the next set of items in the list.</p>
5886
5886
  * @public
5887
5887
  */
5888
- nextToken?: string;
5888
+ nextToken?: string | undefined;
5889
5889
  }
5890
5890
  /**
5891
5891
  * <p>Represents a request for a purchase offering.</p>
@@ -5906,7 +5906,7 @@ export interface PurchaseOfferingRequest {
5906
5906
  * <p>The ID of the offering promotion to be applied to the purchase.</p>
5907
5907
  * @public
5908
5908
  */
5909
- offeringPromotionId?: string;
5909
+ offeringPromotionId?: string | undefined;
5910
5910
  }
5911
5911
  /**
5912
5912
  * <p>The result of the purchase offering (for example, success or failure).</p>
@@ -5917,7 +5917,7 @@ export interface PurchaseOfferingResult {
5917
5917
  * <p>Represents the offering transaction for the purchase result.</p>
5918
5918
  * @public
5919
5919
  */
5920
- offeringTransaction?: OfferingTransaction;
5920
+ offeringTransaction?: OfferingTransaction | undefined;
5921
5921
  }
5922
5922
  /**
5923
5923
  * <p>A request that represents an offering renewal.</p>
@@ -5944,7 +5944,7 @@ export interface RenewOfferingResult {
5944
5944
  * <p>Represents the status of the offering transaction for the renewal.</p>
5945
5945
  * @public
5946
5946
  */
5947
- offeringTransaction?: OfferingTransaction;
5947
+ offeringTransaction?: OfferingTransaction | undefined;
5948
5948
  }
5949
5949
  /**
5950
5950
  * <p>An entity with the same name already exists.</p>
@@ -6106,22 +6106,22 @@ export interface ExecutionConfiguration {
6106
6106
  * <p>The number of minutes a test run executes before it times out.</p>
6107
6107
  * @public
6108
6108
  */
6109
- jobTimeoutMinutes?: number;
6109
+ jobTimeoutMinutes?: number | undefined;
6110
6110
  /**
6111
6111
  * <p>True if account cleanup is enabled at the beginning of the test. Otherwise, false.</p>
6112
6112
  * @public
6113
6113
  */
6114
- accountsCleanup?: boolean;
6114
+ accountsCleanup?: boolean | undefined;
6115
6115
  /**
6116
6116
  * <p>True if app package cleanup is enabled at the beginning of the test. Otherwise, false.</p>
6117
6117
  * @public
6118
6118
  */
6119
- appPackagesCleanup?: boolean;
6119
+ appPackagesCleanup?: boolean | undefined;
6120
6120
  /**
6121
6121
  * <p>Set to true to enable video capture. Otherwise, set to false. The default is true.</p>
6122
6122
  * @public
6123
6123
  */
6124
- videoCapture?: boolean;
6124
+ videoCapture?: boolean | undefined;
6125
6125
  /**
6126
6126
  * <p>When set to <code>true</code>, for private devices, Device Farm does not sign your app again. For public
6127
6127
  * devices, Device Farm always signs your apps again.</p>
@@ -6129,7 +6129,7 @@ export interface ExecutionConfiguration {
6129
6129
  * Farm FAQs</i>.</p>
6130
6130
  * @public
6131
6131
  */
6132
- skipAppResign?: boolean;
6132
+ skipAppResign?: boolean | undefined;
6133
6133
  }
6134
6134
  /**
6135
6135
  * <p>Represents a request to the schedule run operation.</p>
@@ -6146,12 +6146,12 @@ export interface ScheduleRunRequest {
6146
6146
  * See <a>ListUploads</a>.</p>
6147
6147
  * @public
6148
6148
  */
6149
- appArn?: string;
6149
+ appArn?: string | undefined;
6150
6150
  /**
6151
6151
  * <p>The ARN of the device pool for the run to be scheduled.</p>
6152
6152
  * @public
6153
6153
  */
6154
- devicePoolArn?: string;
6154
+ devicePoolArn?: string | undefined;
6155
6155
  /**
6156
6156
  * <p>The filter criteria used to dynamically select a set of devices for a test run and the maximum number of
6157
6157
  * devices to be included in the run.</p>
@@ -6163,12 +6163,12 @@ export interface ScheduleRunRequest {
6163
6163
  * request.</p>
6164
6164
  * @public
6165
6165
  */
6166
- deviceSelectionConfiguration?: DeviceSelectionConfiguration;
6166
+ deviceSelectionConfiguration?: DeviceSelectionConfiguration | undefined;
6167
6167
  /**
6168
6168
  * <p>The name for the run to be scheduled.</p>
6169
6169
  * @public
6170
6170
  */
6171
- name?: string;
6171
+ name?: string | undefined;
6172
6172
  /**
6173
6173
  * <p>Information about the test for the run to be scheduled.</p>
6174
6174
  * @public
@@ -6178,13 +6178,13 @@ export interface ScheduleRunRequest {
6178
6178
  * <p>Information about the settings for the run to be scheduled.</p>
6179
6179
  * @public
6180
6180
  */
6181
- configuration?: ScheduleRunConfiguration;
6181
+ configuration?: ScheduleRunConfiguration | undefined;
6182
6182
  /**
6183
6183
  * <p>Specifies configuration information about a test run, such as the execution timeout
6184
6184
  * (in minutes).</p>
6185
6185
  * @public
6186
6186
  */
6187
- executionConfiguration?: ExecutionConfiguration;
6187
+ executionConfiguration?: ExecutionConfiguration | undefined;
6188
6188
  }
6189
6189
  /**
6190
6190
  * <p>Represents the result of a schedule run request.</p>
@@ -6195,7 +6195,7 @@ export interface ScheduleRunResult {
6195
6195
  * <p>Information about the scheduled run.</p>
6196
6196
  * @public
6197
6197
  */
6198
- run?: Run;
6198
+ run?: Run | undefined;
6199
6199
  }
6200
6200
  /**
6201
6201
  * @public
@@ -6215,7 +6215,7 @@ export interface StopJobResult {
6215
6215
  * <p>The job that was stopped.</p>
6216
6216
  * @public
6217
6217
  */
6218
- job?: Job;
6218
+ job?: Job | undefined;
6219
6219
  }
6220
6220
  /**
6221
6221
  * <p>Represents the request to stop the remote access session.</p>
@@ -6239,7 +6239,7 @@ export interface StopRemoteAccessSessionResult {
6239
6239
  * stopping.</p>
6240
6240
  * @public
6241
6241
  */
6242
- remoteAccessSession?: RemoteAccessSession;
6242
+ remoteAccessSession?: RemoteAccessSession | undefined;
6243
6243
  }
6244
6244
  /**
6245
6245
  * <p>Represents the request to stop a specific run.</p>
@@ -6261,7 +6261,7 @@ export interface StopRunResult {
6261
6261
  * <p>The run that was stopped.</p>
6262
6262
  * @public
6263
6263
  */
6264
- run?: Run;
6264
+ run?: Run | undefined;
6265
6265
  }
6266
6266
  /**
6267
6267
  * <p>The request doesn't comply with the AWS Identity and Access Management (IAM) tag
@@ -6271,7 +6271,7 @@ export interface StopRunResult {
6271
6271
  export declare class TagPolicyException extends __BaseException {
6272
6272
  readonly name: "TagPolicyException";
6273
6273
  readonly $fault: "client";
6274
- resourceName?: string;
6274
+ resourceName?: string | undefined;
6275
6275
  /**
6276
6276
  * @internal
6277
6277
  */
@@ -6310,7 +6310,7 @@ export interface TagResourceResponse {
6310
6310
  export declare class TooManyTagsException extends __BaseException {
6311
6311
  readonly name: "TooManyTagsException";
6312
6312
  readonly $fault: "client";
6313
- resourceName?: string;
6313
+ resourceName?: string | undefined;
6314
6314
  /**
6315
6315
  * @internal
6316
6316
  */
@@ -6353,12 +6353,12 @@ export interface UpdateDeviceInstanceRequest {
6353
6353
  * <p>The ARN of the profile that you want to associate with the device instance.</p>
6354
6354
  * @public
6355
6355
  */
6356
- profileArn?: string;
6356
+ profileArn?: string | undefined;
6357
6357
  /**
6358
6358
  * <p>An array of strings that you want to associate with the device instance.</p>
6359
6359
  * @public
6360
6360
  */
6361
- labels?: string[];
6361
+ labels?: string[] | undefined;
6362
6362
  }
6363
6363
  /**
6364
6364
  * @public
@@ -6368,7 +6368,7 @@ export interface UpdateDeviceInstanceResult {
6368
6368
  * <p>An object that contains information about your device instance.</p>
6369
6369
  * @public
6370
6370
  */
6371
- deviceInstance?: DeviceInstance;
6371
+ deviceInstance?: DeviceInstance | undefined;
6372
6372
  }
6373
6373
  /**
6374
6374
  * <p>Represents a request to the update device pool operation.</p>
@@ -6384,18 +6384,18 @@ export interface UpdateDevicePoolRequest {
6384
6384
  * <p>A string that represents the name of the device pool to update.</p>
6385
6385
  * @public
6386
6386
  */
6387
- name?: string;
6387
+ name?: string | undefined;
6388
6388
  /**
6389
6389
  * <p>A description of the device pool to update.</p>
6390
6390
  * @public
6391
6391
  */
6392
- description?: string;
6392
+ description?: string | undefined;
6393
6393
  /**
6394
6394
  * <p>Represents the rules to modify for the device pool. Updating rules is optional. If you update rules for
6395
6395
  * your request, the update replaces the existing rules.</p>
6396
6396
  * @public
6397
6397
  */
6398
- rules?: Rule[];
6398
+ rules?: Rule[] | undefined;
6399
6399
  /**
6400
6400
  * <p>The number of devices that Device Farm can add to your device pool. Device Farm adds
6401
6401
  * devices that are available and that meet the criteria that you assign for the
@@ -6407,7 +6407,7 @@ export interface UpdateDevicePoolRequest {
6407
6407
  * <code>clearMaxDevices</code> parameter in the same request.</p>
6408
6408
  * @public
6409
6409
  */
6410
- maxDevices?: number;
6410
+ maxDevices?: number | undefined;
6411
6411
  /**
6412
6412
  * <p>Sets whether the <code>maxDevices</code> parameter applies to your device pool. If you set this parameter
6413
6413
  * to <code>true</code>, the <code>maxDevices</code> parameter does not apply, and Device Farm does not limit
@@ -6417,7 +6417,7 @@ export interface UpdateDevicePoolRequest {
6417
6417
  * parameter in the same request.</p>
6418
6418
  * @public
6419
6419
  */
6420
- clearMaxDevices?: boolean;
6420
+ clearMaxDevices?: boolean | undefined;
6421
6421
  }
6422
6422
  /**
6423
6423
  * <p>Represents the result of an update device pool request.</p>
@@ -6428,7 +6428,7 @@ export interface UpdateDevicePoolResult {
6428
6428
  * <p>The device pool you just updated.</p>
6429
6429
  * @public
6430
6430
  */
6431
- devicePool?: DevicePool;
6431
+ devicePool?: DevicePool | undefined;
6432
6432
  }
6433
6433
  /**
6434
6434
  * @public
@@ -6443,18 +6443,18 @@ export interface UpdateInstanceProfileRequest {
6443
6443
  * <p>The updated name for your instance profile.</p>
6444
6444
  * @public
6445
6445
  */
6446
- name?: string;
6446
+ name?: string | undefined;
6447
6447
  /**
6448
6448
  * <p>The updated description for your instance profile.</p>
6449
6449
  * @public
6450
6450
  */
6451
- description?: string;
6451
+ description?: string | undefined;
6452
6452
  /**
6453
6453
  * <p>The updated choice for whether you want to specify package cleanup. The default value
6454
6454
  * is <code>false</code> for private devices.</p>
6455
6455
  * @public
6456
6456
  */
6457
- packageCleanup?: boolean;
6457
+ packageCleanup?: boolean | undefined;
6458
6458
  /**
6459
6459
  * <p>An array of strings that specifies the list of app packages that should not be cleaned up from the device
6460
6460
  * after a test run is over.</p>
@@ -6462,13 +6462,13 @@ export interface UpdateInstanceProfileRequest {
6462
6462
  * <code>true</code>.</p>
6463
6463
  * @public
6464
6464
  */
6465
- excludeAppPackagesFromCleanup?: string[];
6465
+ excludeAppPackagesFromCleanup?: string[] | undefined;
6466
6466
  /**
6467
6467
  * <p>The updated choice for whether you want to reboot the device after use. The default
6468
6468
  * value is <code>true</code>.</p>
6469
6469
  * @public
6470
6470
  */
6471
- rebootAfterUse?: boolean;
6471
+ rebootAfterUse?: boolean | undefined;
6472
6472
  }
6473
6473
  /**
6474
6474
  * @public
@@ -6478,7 +6478,7 @@ export interface UpdateInstanceProfileResult {
6478
6478
  * <p>An object that contains information about your instance profile.</p>
6479
6479
  * @public
6480
6480
  */
6481
- instanceProfile?: InstanceProfile;
6481
+ instanceProfile?: InstanceProfile | undefined;
6482
6482
  }
6483
6483
  /**
6484
6484
  * @public
@@ -6495,65 +6495,65 @@ export interface UpdateNetworkProfileRequest {
6495
6495
  * information.</p>
6496
6496
  * @public
6497
6497
  */
6498
- name?: string;
6498
+ name?: string | undefined;
6499
6499
  /**
6500
6500
  * <p>The description of the network profile about which you are returning
6501
6501
  * information.</p>
6502
6502
  * @public
6503
6503
  */
6504
- description?: string;
6504
+ description?: string | undefined;
6505
6505
  /**
6506
6506
  * <p>The type of network profile to return information about. Valid values are listed here.</p>
6507
6507
  * @public
6508
6508
  */
6509
- type?: NetworkProfileType;
6509
+ type?: NetworkProfileType | undefined;
6510
6510
  /**
6511
6511
  * <p>The data throughput rate in bits per second, as an integer from 0 to
6512
6512
  * 104857600.</p>
6513
6513
  * @public
6514
6514
  */
6515
- uplinkBandwidthBits?: number;
6515
+ uplinkBandwidthBits?: number | undefined;
6516
6516
  /**
6517
6517
  * <p>The data throughput rate in bits per second, as an integer from 0 to
6518
6518
  * 104857600.</p>
6519
6519
  * @public
6520
6520
  */
6521
- downlinkBandwidthBits?: number;
6521
+ downlinkBandwidthBits?: number | undefined;
6522
6522
  /**
6523
6523
  * <p>Delay time for all packets to destination in milliseconds as an integer from 0 to
6524
6524
  * 2000.</p>
6525
6525
  * @public
6526
6526
  */
6527
- uplinkDelayMs?: number;
6527
+ uplinkDelayMs?: number | undefined;
6528
6528
  /**
6529
6529
  * <p>Delay time for all packets to destination in milliseconds as an integer from 0 to
6530
6530
  * 2000.</p>
6531
6531
  * @public
6532
6532
  */
6533
- downlinkDelayMs?: number;
6533
+ downlinkDelayMs?: number | undefined;
6534
6534
  /**
6535
6535
  * <p>Time variation in the delay of received packets in milliseconds as an integer from
6536
6536
  * 0 to 2000.</p>
6537
6537
  * @public
6538
6538
  */
6539
- uplinkJitterMs?: number;
6539
+ uplinkJitterMs?: number | undefined;
6540
6540
  /**
6541
6541
  * <p>Time variation in the delay of received packets in milliseconds as an integer from
6542
6542
  * 0 to 2000.</p>
6543
6543
  * @public
6544
6544
  */
6545
- downlinkJitterMs?: number;
6545
+ downlinkJitterMs?: number | undefined;
6546
6546
  /**
6547
6547
  * <p>Proportion of transmitted packets that fail to arrive from 0 to 100
6548
6548
  * percent.</p>
6549
6549
  * @public
6550
6550
  */
6551
- uplinkLossPercent?: number;
6551
+ uplinkLossPercent?: number | undefined;
6552
6552
  /**
6553
6553
  * <p>Proportion of received packets that fail to arrive from 0 to 100 percent.</p>
6554
6554
  * @public
6555
6555
  */
6556
- downlinkLossPercent?: number;
6556
+ downlinkLossPercent?: number | undefined;
6557
6557
  }
6558
6558
  /**
6559
6559
  * @public
@@ -6563,7 +6563,7 @@ export interface UpdateNetworkProfileResult {
6563
6563
  * <p>A list of the available network profiles.</p>
6564
6564
  * @public
6565
6565
  */
6566
- networkProfile?: NetworkProfile;
6566
+ networkProfile?: NetworkProfile | undefined;
6567
6567
  }
6568
6568
  /**
6569
6569
  * <p>Represents a request to the update project operation.</p>
@@ -6579,17 +6579,17 @@ export interface UpdateProjectRequest {
6579
6579
  * <p>A string that represents the new name of the project that you are updating.</p>
6580
6580
  * @public
6581
6581
  */
6582
- name?: string;
6582
+ name?: string | undefined;
6583
6583
  /**
6584
6584
  * <p>The number of minutes a test run in the project executes before it times out.</p>
6585
6585
  * @public
6586
6586
  */
6587
- defaultJobTimeoutMinutes?: number;
6587
+ defaultJobTimeoutMinutes?: number | undefined;
6588
6588
  /**
6589
6589
  * <p>The VPC security groups and subnets that are attached to a project.</p>
6590
6590
  * @public
6591
6591
  */
6592
- vpcConfig?: VpcConfig;
6592
+ vpcConfig?: VpcConfig | undefined;
6593
6593
  }
6594
6594
  /**
6595
6595
  * <p>Represents the result of an update project request.</p>
@@ -6600,7 +6600,7 @@ export interface UpdateProjectResult {
6600
6600
  * <p>The project to update.</p>
6601
6601
  * @public
6602
6602
  */
6603
- project?: Project;
6603
+ project?: Project | undefined;
6604
6604
  }
6605
6605
  /**
6606
6606
  * @public
@@ -6615,17 +6615,17 @@ export interface UpdateTestGridProjectRequest {
6615
6615
  * <p>Human-readable name for the project.</p>
6616
6616
  * @public
6617
6617
  */
6618
- name?: string;
6618
+ name?: string | undefined;
6619
6619
  /**
6620
6620
  * <p>Human-readable description for the project.</p>
6621
6621
  * @public
6622
6622
  */
6623
- description?: string;
6623
+ description?: string | undefined;
6624
6624
  /**
6625
6625
  * <p>The VPC security groups and subnets that are attached to a project.</p>
6626
6626
  * @public
6627
6627
  */
6628
- vpcConfig?: TestGridVpcConfig;
6628
+ vpcConfig?: TestGridVpcConfig | undefined;
6629
6629
  }
6630
6630
  /**
6631
6631
  * @public
@@ -6635,7 +6635,7 @@ export interface UpdateTestGridProjectResult {
6635
6635
  * <p>The project, including updated information.</p>
6636
6636
  * @public
6637
6637
  */
6638
- testGridProject?: TestGridProject;
6638
+ testGridProject?: TestGridProject | undefined;
6639
6639
  }
6640
6640
  /**
6641
6641
  * @public
@@ -6651,17 +6651,17 @@ export interface UpdateUploadRequest {
6651
6651
  * name must end with the <code>.yaml</code> or <code>.yml</code> file extension.</p>
6652
6652
  * @public
6653
6653
  */
6654
- name?: string;
6654
+ name?: string | undefined;
6655
6655
  /**
6656
6656
  * <p>The upload's content type (for example, <code>application/x-yaml</code>).</p>
6657
6657
  * @public
6658
6658
  */
6659
- contentType?: string;
6659
+ contentType?: string | undefined;
6660
6660
  /**
6661
6661
  * <p>Set to true if the YAML file has changed and must be updated. Otherwise, set to false.</p>
6662
6662
  * @public
6663
6663
  */
6664
- editContent?: boolean;
6664
+ editContent?: boolean | undefined;
6665
6665
  }
6666
6666
  /**
6667
6667
  * @public
@@ -6671,7 +6671,7 @@ export interface UpdateUploadResult {
6671
6671
  * <p>A test spec uploaded to Device Farm.</p>
6672
6672
  * @public
6673
6673
  */
6674
- upload?: Upload;
6674
+ upload?: Upload | undefined;
6675
6675
  }
6676
6676
  /**
6677
6677
  * @public
@@ -6688,23 +6688,23 @@ export interface UpdateVPCEConfigurationRequest {
6688
6688
  * easily.</p>
6689
6689
  * @public
6690
6690
  */
6691
- vpceConfigurationName?: string;
6691
+ vpceConfigurationName?: string | undefined;
6692
6692
  /**
6693
6693
  * <p>The name of the VPC endpoint service running in your AWS account that you want Device Farm to test.</p>
6694
6694
  * @public
6695
6695
  */
6696
- vpceServiceName?: string;
6696
+ vpceServiceName?: string | undefined;
6697
6697
  /**
6698
6698
  * <p>The DNS (domain) name used to connect to your private service in your VPC. The DNS name must not already
6699
6699
  * be in use on the internet.</p>
6700
6700
  * @public
6701
6701
  */
6702
- serviceDnsName?: string;
6702
+ serviceDnsName?: string | undefined;
6703
6703
  /**
6704
6704
  * <p>An optional description that provides details about your VPC endpoint configuration.</p>
6705
6705
  * @public
6706
6706
  */
6707
- vpceConfigurationDescription?: string;
6707
+ vpceConfigurationDescription?: string | undefined;
6708
6708
  }
6709
6709
  /**
6710
6710
  * @public
@@ -6714,7 +6714,7 @@ export interface UpdateVPCEConfigurationResult {
6714
6714
  * <p>An object that contains information about your VPC endpoint configuration.</p>
6715
6715
  * @public
6716
6716
  */
6717
- vpceConfiguration?: VPCEConfiguration;
6717
+ vpceConfiguration?: VPCEConfiguration | undefined;
6718
6718
  }
6719
6719
  /**
6720
6720
  * @internal