@aws-sdk/client-pinpoint-sms-voice-v2 3.688.0 → 3.692.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.
@@ -20,12 +20,12 @@ export type AccessDeniedExceptionReason = (typeof AccessDeniedExceptionReason)[k
20
20
  export declare class AccessDeniedException extends __BaseException {
21
21
  readonly name: "AccessDeniedException";
22
22
  readonly $fault: "client";
23
- Message?: string;
23
+ Message?: string | undefined;
24
24
  /**
25
25
  * <p>The reason for the exception.</p>
26
26
  * @public
27
27
  */
28
- Reason?: AccessDeniedExceptionReason;
28
+ Reason?: AccessDeniedExceptionReason | undefined;
29
29
  /**
30
30
  * @internal
31
31
  */
@@ -134,7 +134,7 @@ export interface AssociateOriginationIdentityRequest {
134
134
  * request to ensure idempotency.</p>
135
135
  * @public
136
136
  */
137
- ClientToken?: string;
137
+ ClientToken?: string | undefined;
138
138
  }
139
139
  /**
140
140
  * @public
@@ -145,28 +145,28 @@ export interface AssociateOriginationIdentityResult {
145
145
  * identity.</p>
146
146
  * @public
147
147
  */
148
- PoolArn?: string;
148
+ PoolArn?: string | undefined;
149
149
  /**
150
150
  * <p>The PoolId of the pool that is now associated with the origination identity.</p>
151
151
  * @public
152
152
  */
153
- PoolId?: string;
153
+ PoolId?: string | undefined;
154
154
  /**
155
155
  * <p>The PhoneNumberArn or SenderIdArn of the origination identity.</p>
156
156
  * @public
157
157
  */
158
- OriginationIdentityArn?: string;
158
+ OriginationIdentityArn?: string | undefined;
159
159
  /**
160
160
  * <p>The PhoneNumberId or SenderId of the origination identity.</p>
161
161
  * @public
162
162
  */
163
- OriginationIdentity?: string;
163
+ OriginationIdentity?: string | undefined;
164
164
  /**
165
165
  * <p>The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
166
166
  * </p>
167
167
  * @public
168
168
  */
169
- IsoCountryCode?: string;
169
+ IsoCountryCode?: string | undefined;
170
170
  }
171
171
  /**
172
172
  * @public
@@ -247,22 +247,22 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
247
247
  export declare class ConflictException extends __BaseException {
248
248
  readonly name: "ConflictException";
249
249
  readonly $fault: "client";
250
- Message?: string;
250
+ Message?: string | undefined;
251
251
  /**
252
252
  * <p>The reason for the exception.</p>
253
253
  * @public
254
254
  */
255
- Reason?: ConflictExceptionReason;
255
+ Reason?: ConflictExceptionReason | undefined;
256
256
  /**
257
257
  * <p>The type of resource that caused the exception.</p>
258
258
  * @public
259
259
  */
260
- ResourceType?: ResourceType;
260
+ ResourceType?: ResourceType | undefined;
261
261
  /**
262
262
  * <p>The unique identifier of the request.</p>
263
263
  * @public
264
264
  */
265
- ResourceId?: string;
265
+ ResourceId?: string | undefined;
266
266
  /**
267
267
  * @internal
268
268
  */
@@ -277,12 +277,12 @@ export declare class InternalServerException extends __BaseException {
277
277
  readonly name: "InternalServerException";
278
278
  readonly $fault: "server";
279
279
  $retryable: {};
280
- Message?: string;
280
+ Message?: string | undefined;
281
281
  /**
282
282
  * <p>The unique identifier of the request.</p>
283
283
  * @public
284
284
  */
285
- RequestId?: string;
285
+ RequestId?: string | undefined;
286
286
  /**
287
287
  * @internal
288
288
  */
@@ -295,17 +295,17 @@ export declare class InternalServerException extends __BaseException {
295
295
  export declare class ResourceNotFoundException extends __BaseException {
296
296
  readonly name: "ResourceNotFoundException";
297
297
  readonly $fault: "client";
298
- Message?: string;
298
+ Message?: string | undefined;
299
299
  /**
300
300
  * <p>The type of resource that caused the exception.</p>
301
301
  * @public
302
302
  */
303
- ResourceType?: ResourceType;
303
+ ResourceType?: ResourceType | undefined;
304
304
  /**
305
305
  * <p>The unique identifier of the resource.</p>
306
306
  * @public
307
307
  */
308
- ResourceId?: string;
308
+ ResourceId?: string | undefined;
309
309
  /**
310
310
  * @internal
311
311
  */
@@ -351,12 +351,12 @@ export type ServiceQuotaExceededExceptionReason = (typeof ServiceQuotaExceededEx
351
351
  export declare class ServiceQuotaExceededException extends __BaseException {
352
352
  readonly name: "ServiceQuotaExceededException";
353
353
  readonly $fault: "client";
354
- Message?: string;
354
+ Message?: string | undefined;
355
355
  /**
356
356
  * <p>The reason for the exception.</p>
357
357
  * @public
358
358
  */
359
- Reason?: ServiceQuotaExceededExceptionReason;
359
+ Reason?: ServiceQuotaExceededExceptionReason | undefined;
360
360
  /**
361
361
  * @internal
362
362
  */
@@ -373,7 +373,7 @@ export declare class ThrottlingException extends __BaseException {
373
373
  $retryable: {
374
374
  throttling: boolean;
375
375
  };
376
- Message?: string;
376
+ Message?: string | undefined;
377
377
  /**
378
378
  * @internal
379
379
  */
@@ -453,17 +453,17 @@ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof
453
453
  export declare class ValidationException extends __BaseException {
454
454
  readonly name: "ValidationException";
455
455
  readonly $fault: "client";
456
- Message?: string;
456
+ Message?: string | undefined;
457
457
  /**
458
458
  * <p>The reason for the exception.</p>
459
459
  * @public
460
460
  */
461
- Reason?: ValidationExceptionReason;
461
+ Reason?: ValidationExceptionReason | undefined;
462
462
  /**
463
463
  * <p>The field that failed validation.</p>
464
464
  * @public
465
465
  */
466
- Fields?: ValidationExceptionField[];
466
+ Fields?: ValidationExceptionField[] | undefined;
467
467
  /**
468
468
  * @internal
469
469
  */
@@ -710,18 +710,18 @@ export interface EventDestination {
710
710
  * events to Amazon CloudWatch logs.</p>
711
711
  * @public
712
712
  */
713
- CloudWatchLogsDestination?: CloudWatchLogsDestination;
713
+ CloudWatchLogsDestination?: CloudWatchLogsDestination | undefined;
714
714
  /**
715
715
  * <p>An object that contains information about an event destination for logging to Amazon Data Firehose.</p>
716
716
  * @public
717
717
  */
718
- KinesisFirehoseDestination?: KinesisFirehoseDestination;
718
+ KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
719
719
  /**
720
720
  * <p>An object that contains information about an event destination that sends logging
721
721
  * events to Amazon SNS.</p>
722
722
  * @public
723
723
  */
724
- SnsDestination?: SnsDestination;
724
+ SnsDestination?: SnsDestination | undefined;
725
725
  }
726
726
  /**
727
727
  * <p>Information related to a given configuration set in your Amazon Web Services
@@ -751,12 +751,12 @@ export interface ConfigurationSetInformation {
751
751
  * time-sensitive.</p>
752
752
  * @public
753
753
  */
754
- DefaultMessageType?: MessageType;
754
+ DefaultMessageType?: MessageType | undefined;
755
755
  /**
756
756
  * <p>The default sender ID used by the ConfigurationSet.</p>
757
757
  * @public
758
758
  */
759
- DefaultSenderId?: string;
759
+ DefaultSenderId?: string | undefined;
760
760
  /**
761
761
  * <p>The time when the ConfigurationSet was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
762
762
  * @public
@@ -766,7 +766,7 @@ export interface ConfigurationSetInformation {
766
766
  * <p>The unique identifier for the protect configuration.</p>
767
767
  * @public
768
768
  */
769
- ProtectConfigurationId?: string;
769
+ ProtectConfigurationId?: string | undefined;
770
770
  }
771
771
  /**
772
772
  * <p>The list of tags to be added to the specified topic.</p>
@@ -797,14 +797,14 @@ export interface CreateConfigurationSetRequest {
797
797
  * <p>An array of key and value pair tags that's associated with the new configuration set. </p>
798
798
  * @public
799
799
  */
800
- Tags?: Tag[];
800
+ Tags?: Tag[] | undefined;
801
801
  /**
802
802
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
803
803
  * request. If you don't specify a client token, a randomly generated token is used for the
804
804
  * request to ensure idempotency.</p>
805
805
  * @public
806
806
  */
807
- ClientToken?: string;
807
+ ClientToken?: string | undefined;
808
808
  }
809
809
  /**
810
810
  * @public
@@ -814,23 +814,23 @@ export interface CreateConfigurationSetResult {
814
814
  * <p>The Amazon Resource Name (ARN) of the newly created configuration set.</p>
815
815
  * @public
816
816
  */
817
- ConfigurationSetArn?: string;
817
+ ConfigurationSetArn?: string | undefined;
818
818
  /**
819
819
  * <p>The name of the new configuration set.</p>
820
820
  * @public
821
821
  */
822
- ConfigurationSetName?: string;
822
+ ConfigurationSetName?: string | undefined;
823
823
  /**
824
824
  * <p>An array of key and value pair tags that's associated with the configuration
825
825
  * set.</p>
826
826
  * @public
827
827
  */
828
- Tags?: Tag[];
828
+ Tags?: Tag[] | undefined;
829
829
  /**
830
830
  * <p>The time when the configuration set was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
831
831
  * @public
832
832
  */
833
- CreatedTimestamp?: Date;
833
+ CreatedTimestamp?: Date | undefined;
834
834
  }
835
835
  /**
836
836
  * @public
@@ -860,24 +860,24 @@ export interface CreateEventDestinationRequest {
860
860
  * <p>An object that contains information about an event destination for logging to Amazon CloudWatch Logs.</p>
861
861
  * @public
862
862
  */
863
- CloudWatchLogsDestination?: CloudWatchLogsDestination;
863
+ CloudWatchLogsDestination?: CloudWatchLogsDestination | undefined;
864
864
  /**
865
865
  * <p>An object that contains information about an event destination for logging to Amazon Data Firehose.</p>
866
866
  * @public
867
867
  */
868
- KinesisFirehoseDestination?: KinesisFirehoseDestination;
868
+ KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
869
869
  /**
870
870
  * <p>An object that contains information about an event destination for logging to Amazon SNS.</p>
871
871
  * @public
872
872
  */
873
- SnsDestination?: SnsDestination;
873
+ SnsDestination?: SnsDestination | undefined;
874
874
  /**
875
875
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
876
876
  * request. If you don't specify a client token, a randomly generated token is used for the
877
877
  * request to ensure idempotency.</p>
878
878
  * @public
879
879
  */
880
- ClientToken?: string;
880
+ ClientToken?: string | undefined;
881
881
  }
882
882
  /**
883
883
  * @public
@@ -887,17 +887,17 @@ export interface CreateEventDestinationResult {
887
887
  * <p>The ARN of the configuration set.</p>
888
888
  * @public
889
889
  */
890
- ConfigurationSetArn?: string;
890
+ ConfigurationSetArn?: string | undefined;
891
891
  /**
892
892
  * <p>The name of the configuration set.</p>
893
893
  * @public
894
894
  */
895
- ConfigurationSetName?: string;
895
+ ConfigurationSetName?: string | undefined;
896
896
  /**
897
897
  * <p>The details of the destination where events are logged.</p>
898
898
  * @public
899
899
  */
900
- EventDestination?: EventDestination;
900
+ EventDestination?: EventDestination | undefined;
901
901
  }
902
902
  /**
903
903
  * @public
@@ -912,14 +912,14 @@ export interface CreateOptOutListRequest {
912
912
  * <p>An array of tags (key and value pairs) to associate with the new OptOutList.</p>
913
913
  * @public
914
914
  */
915
- Tags?: Tag[];
915
+ Tags?: Tag[] | undefined;
916
916
  /**
917
917
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
918
918
  * request. If you don't specify a client token, a randomly generated token is used for the
919
919
  * request to ensure idempotency.</p>
920
920
  * @public
921
921
  */
922
- ClientToken?: string;
922
+ ClientToken?: string | undefined;
923
923
  }
924
924
  /**
925
925
  * @public
@@ -929,22 +929,22 @@ export interface CreateOptOutListResult {
929
929
  * <p>The Amazon Resource Name (ARN) for the OptOutList.</p>
930
930
  * @public
931
931
  */
932
- OptOutListArn?: string;
932
+ OptOutListArn?: string | undefined;
933
933
  /**
934
934
  * <p>The name of the new OptOutList.</p>
935
935
  * @public
936
936
  */
937
- OptOutListName?: string;
937
+ OptOutListName?: string | undefined;
938
938
  /**
939
939
  * <p>An array of tags (key and value pairs) associated with the new OptOutList.</p>
940
940
  * @public
941
941
  */
942
- Tags?: Tag[];
942
+ Tags?: Tag[] | undefined;
943
943
  /**
944
944
  * <p>The time when the pool was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
945
945
  * @public
946
946
  */
947
- CreatedTimestamp?: Date;
947
+ CreatedTimestamp?: Date | undefined;
948
948
  }
949
949
  /**
950
950
  * @public
@@ -980,19 +980,19 @@ export interface CreatePoolRequest {
980
980
  * change this value using the <a>UpdatePool</a> action.</p>
981
981
  * @public
982
982
  */
983
- DeletionProtectionEnabled?: boolean;
983
+ DeletionProtectionEnabled?: boolean | undefined;
984
984
  /**
985
985
  * <p>An array of tags (key and value pairs) associated with the pool.</p>
986
986
  * @public
987
987
  */
988
- Tags?: Tag[];
988
+ Tags?: Tag[] | undefined;
989
989
  /**
990
990
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
991
991
  * request. If you don't specify a client token, a randomly generated token is used for the
992
992
  * request to ensure idempotency.</p>
993
993
  * @public
994
994
  */
995
- ClientToken?: string;
995
+ ClientToken?: string | undefined;
996
996
  }
997
997
  /**
998
998
  * @public
@@ -1015,12 +1015,12 @@ export interface CreatePoolResult {
1015
1015
  * <p>The Amazon Resource Name (ARN) for the pool.</p>
1016
1016
  * @public
1017
1017
  */
1018
- PoolArn?: string;
1018
+ PoolArn?: string | undefined;
1019
1019
  /**
1020
1020
  * <p>The unique identifier for the pool.</p>
1021
1021
  * @public
1022
1022
  */
1023
- PoolId?: string;
1023
+ PoolId?: string | undefined;
1024
1024
  /**
1025
1025
  * <p>The current status of the pool.</p>
1026
1026
  * <ul>
@@ -1037,28 +1037,28 @@ export interface CreatePoolResult {
1037
1037
  * </ul>
1038
1038
  * @public
1039
1039
  */
1040
- Status?: PoolStatus;
1040
+ Status?: PoolStatus | undefined;
1041
1041
  /**
1042
1042
  * <p>The type of message for the pool to use.</p>
1043
1043
  * @public
1044
1044
  */
1045
- MessageType?: MessageType;
1045
+ MessageType?: MessageType | undefined;
1046
1046
  /**
1047
1047
  * <p>By default this is set to false. When set to true you can receive incoming text
1048
1048
  * messages from your end recipients.</p>
1049
1049
  * @public
1050
1050
  */
1051
- TwoWayEnabled?: boolean;
1051
+ TwoWayEnabled?: boolean | undefined;
1052
1052
  /**
1053
1053
  * <p>The Amazon Resource Name (ARN) of the two way channel.</p>
1054
1054
  * @public
1055
1055
  */
1056
- TwoWayChannelArn?: string;
1056
+ TwoWayChannelArn?: string | undefined;
1057
1057
  /**
1058
1058
  * <p>An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.</p>
1059
1059
  * @public
1060
1060
  */
1061
- TwoWayChannelRole?: string;
1061
+ TwoWayChannelRole?: string | undefined;
1062
1062
  /**
1063
1063
  * <p>By default this is set to false. When an end recipient sends a message that begins
1064
1064
  * with HELP or STOP to one of your dedicated numbers, AWS End User Messaging SMS and Voice automatically
@@ -1067,33 +1067,33 @@ export interface CreatePoolResult {
1067
1067
  * responsible for tracking and honoring opt-out requests.</p>
1068
1068
  * @public
1069
1069
  */
1070
- SelfManagedOptOutsEnabled?: boolean;
1070
+ SelfManagedOptOutsEnabled?: boolean | undefined;
1071
1071
  /**
1072
1072
  * <p>The name of the OptOutList associated with the pool.</p>
1073
1073
  * @public
1074
1074
  */
1075
- OptOutListName?: string;
1075
+ OptOutListName?: string | undefined;
1076
1076
  /**
1077
1077
  * <p>Indicates whether shared routes are enabled for the pool. Set to false and only origination identities in this pool are used to send messages. </p>
1078
1078
  * @public
1079
1079
  */
1080
- SharedRoutesEnabled?: boolean;
1080
+ SharedRoutesEnabled?: boolean | undefined;
1081
1081
  /**
1082
1082
  * <p>When set to true deletion protection is enabled. By default this is set to false.
1083
1083
  * </p>
1084
1084
  * @public
1085
1085
  */
1086
- DeletionProtectionEnabled?: boolean;
1086
+ DeletionProtectionEnabled?: boolean | undefined;
1087
1087
  /**
1088
1088
  * <p>An array of tags (key and value pairs) associated with the pool.</p>
1089
1089
  * @public
1090
1090
  */
1091
- Tags?: Tag[];
1091
+ Tags?: Tag[] | undefined;
1092
1092
  /**
1093
1093
  * <p>The time when the pool was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1094
1094
  * @public
1095
1095
  */
1096
- CreatedTimestamp?: Date;
1096
+ CreatedTimestamp?: Date | undefined;
1097
1097
  }
1098
1098
  /**
1099
1099
  * @public
@@ -1105,18 +1105,18 @@ export interface CreateProtectConfigurationRequest {
1105
1105
  * request to ensure idempotency.</p>
1106
1106
  * @public
1107
1107
  */
1108
- ClientToken?: string;
1108
+ ClientToken?: string | undefined;
1109
1109
  /**
1110
1110
  * <p>When set to true deletion protection is enabled. By default this is set to false.
1111
1111
  * </p>
1112
1112
  * @public
1113
1113
  */
1114
- DeletionProtectionEnabled?: boolean;
1114
+ DeletionProtectionEnabled?: boolean | undefined;
1115
1115
  /**
1116
1116
  * <p>An array of key and value pair tags that are associated with the resource.</p>
1117
1117
  * @public
1118
1118
  */
1119
- Tags?: Tag[];
1119
+ Tags?: Tag[] | undefined;
1120
1120
  }
1121
1121
  /**
1122
1122
  * @public
@@ -1152,7 +1152,7 @@ export interface CreateProtectConfigurationResult {
1152
1152
  * <p>An array of key and value pair tags that are associated with the resource.</p>
1153
1153
  * @public
1154
1154
  */
1155
- Tags?: Tag[];
1155
+ Tags?: Tag[] | undefined;
1156
1156
  }
1157
1157
  /**
1158
1158
  * @public
@@ -1168,14 +1168,14 @@ export interface CreateRegistrationRequest {
1168
1168
  * <p>An array of tags (key and value pairs) to associate with the registration.</p>
1169
1169
  * @public
1170
1170
  */
1171
- Tags?: Tag[];
1171
+ Tags?: Tag[] | undefined;
1172
1172
  /**
1173
1173
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
1174
1174
  * request. If you don't specify a client token, a randomly generated token is used for the
1175
1175
  * request to ensure idempotency.</p>
1176
1176
  * @public
1177
1177
  */
1178
- ClientToken?: string;
1178
+ ClientToken?: string | undefined;
1179
1179
  }
1180
1180
  /**
1181
1181
  * @public
@@ -1268,12 +1268,12 @@ export interface CreateRegistrationResult {
1268
1268
  * <p>Metadata about a given registration which is specific to that registration type.</p>
1269
1269
  * @public
1270
1270
  */
1271
- AdditionalAttributes?: Record<string, string>;
1271
+ AdditionalAttributes?: Record<string, string> | undefined;
1272
1272
  /**
1273
1273
  * <p>An array of tags (key and value pairs) to associate with the registration.</p>
1274
1274
  * @public
1275
1275
  */
1276
- Tags?: Tag[];
1276
+ Tags?: Tag[] | undefined;
1277
1277
  /**
1278
1278
  * <p>The time when the registration was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1279
1279
  * @public
@@ -1334,12 +1334,12 @@ export interface CreateRegistrationAssociationResult {
1334
1334
  * <p>The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.</p>
1335
1335
  * @public
1336
1336
  */
1337
- IsoCountryCode?: string;
1337
+ IsoCountryCode?: string | undefined;
1338
1338
  /**
1339
1339
  * <p>The phone number associated with the registration in E.164 format.</p>
1340
1340
  * @public
1341
1341
  */
1342
- PhoneNumber?: string;
1342
+ PhoneNumber?: string | undefined;
1343
1343
  }
1344
1344
  /**
1345
1345
  * @public
@@ -1349,24 +1349,24 @@ export interface CreateRegistrationAttachmentRequest {
1349
1349
  * <p>The registration file to upload. The maximum file size is 500KB and valid file extensions are PDF, JPEG and PNG.</p>
1350
1350
  * @public
1351
1351
  */
1352
- AttachmentBody?: Uint8Array;
1352
+ AttachmentBody?: Uint8Array | undefined;
1353
1353
  /**
1354
1354
  * <p>Registration files have to be stored in an Amazon S3 bucket. The URI to use when sending is in the format <code>s3://BucketName/FileName</code>.</p>
1355
1355
  * @public
1356
1356
  */
1357
- AttachmentUrl?: string;
1357
+ AttachmentUrl?: string | undefined;
1358
1358
  /**
1359
1359
  * <p>An array of tags (key and value pairs) to associate with the registration attachment.</p>
1360
1360
  * @public
1361
1361
  */
1362
- Tags?: Tag[];
1362
+ Tags?: Tag[] | undefined;
1363
1363
  /**
1364
1364
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
1365
1365
  * request. If you don't specify a client token, a randomly generated token is used for the
1366
1366
  * request to ensure idempotency.</p>
1367
1367
  * @public
1368
1368
  */
1369
- ClientToken?: string;
1369
+ ClientToken?: string | undefined;
1370
1370
  }
1371
1371
  /**
1372
1372
  * @public
@@ -1409,7 +1409,7 @@ export interface CreateRegistrationAttachmentResult {
1409
1409
  * <p>An array of tags (key and value pairs) to associate with the registration attachment.</p>
1410
1410
  * @public
1411
1411
  */
1412
- Tags?: Tag[];
1412
+ Tags?: Tag[] | undefined;
1413
1413
  /**
1414
1414
  * <p>The time when the registration attachment was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1415
1415
  * @public
@@ -1459,42 +1459,42 @@ export interface RegistrationVersionStatusHistory {
1459
1459
  * <p>The time when the registration was in the submitted state, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1460
1460
  * @public
1461
1461
  */
1462
- SubmittedTimestamp?: Date;
1462
+ SubmittedTimestamp?: Date | undefined;
1463
1463
  /**
1464
1464
  * <p>The time when the registration was in the reviewing state, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1465
1465
  * @public
1466
1466
  */
1467
- ReviewingTimestamp?: Date;
1467
+ ReviewingTimestamp?: Date | undefined;
1468
1468
  /**
1469
1469
  * <p>The time when the registration was in the requires authentication state, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1470
1470
  * @public
1471
1471
  */
1472
- RequiresAuthenticationTimestamp?: Date;
1472
+ RequiresAuthenticationTimestamp?: Date | undefined;
1473
1473
  /**
1474
1474
  * <p>The time when the registration was in the approved state, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1475
1475
  * @public
1476
1476
  */
1477
- ApprovedTimestamp?: Date;
1477
+ ApprovedTimestamp?: Date | undefined;
1478
1478
  /**
1479
1479
  * <p>The time when the registration was in the discarded state, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1480
1480
  * @public
1481
1481
  */
1482
- DiscardedTimestamp?: Date;
1482
+ DiscardedTimestamp?: Date | undefined;
1483
1483
  /**
1484
1484
  * <p>The time when the registration was in the denied state, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1485
1485
  * @public
1486
1486
  */
1487
- DeniedTimestamp?: Date;
1487
+ DeniedTimestamp?: Date | undefined;
1488
1488
  /**
1489
1489
  * <p>The time when the registration was in the revoked state, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1490
1490
  * @public
1491
1491
  */
1492
- RevokedTimestamp?: Date;
1492
+ RevokedTimestamp?: Date | undefined;
1493
1493
  /**
1494
1494
  * <p>The time when the registration was in the archived state, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1495
1495
  * @public
1496
1496
  */
1497
- ArchivedTimestamp?: Date;
1497
+ ArchivedTimestamp?: Date | undefined;
1498
1498
  }
1499
1499
  /**
1500
1500
  * @public
@@ -1577,14 +1577,14 @@ export interface CreateVerifiedDestinationNumberRequest {
1577
1577
  * <p>An array of tags (key and value pairs) to associate with the destination number.</p>
1578
1578
  * @public
1579
1579
  */
1580
- Tags?: Tag[];
1580
+ Tags?: Tag[] | undefined;
1581
1581
  /**
1582
1582
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
1583
1583
  * request. If you don't specify a client token, a randomly generated token is used for the
1584
1584
  * request to ensure idempotency.</p>
1585
1585
  * @public
1586
1586
  */
1587
- ClientToken?: string;
1587
+ ClientToken?: string | undefined;
1588
1588
  }
1589
1589
  /**
1590
1590
  * @public
@@ -1636,7 +1636,7 @@ export interface CreateVerifiedDestinationNumberResult {
1636
1636
  * <p>An array of tags (key and value pairs) to associate with the destination number.</p>
1637
1637
  * @public
1638
1638
  */
1639
- Tags?: Tag[];
1639
+ Tags?: Tag[] | undefined;
1640
1640
  /**
1641
1641
  * <p>The time when the verified phone number was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1642
1642
  * @public
@@ -1682,33 +1682,33 @@ export interface DeleteConfigurationSetResult {
1682
1682
  * <p>The Amazon Resource Name (ARN) of the deleted configuration set.</p>
1683
1683
  * @public
1684
1684
  */
1685
- ConfigurationSetArn?: string;
1685
+ ConfigurationSetArn?: string | undefined;
1686
1686
  /**
1687
1687
  * <p>The name of the deleted configuration set.</p>
1688
1688
  * @public
1689
1689
  */
1690
- ConfigurationSetName?: string;
1690
+ ConfigurationSetName?: string | undefined;
1691
1691
  /**
1692
1692
  * <p>An array of any EventDestination objects that were associated with the deleted
1693
1693
  * configuration set.</p>
1694
1694
  * @public
1695
1695
  */
1696
- EventDestinations?: EventDestination[];
1696
+ EventDestinations?: EventDestination[] | undefined;
1697
1697
  /**
1698
1698
  * <p>The default message type of the configuration set that was deleted.</p>
1699
1699
  * @public
1700
1700
  */
1701
- DefaultMessageType?: MessageType;
1701
+ DefaultMessageType?: MessageType | undefined;
1702
1702
  /**
1703
1703
  * <p>The default Sender ID of the configuration set that was deleted.</p>
1704
1704
  * @public
1705
1705
  */
1706
- DefaultSenderId?: string;
1706
+ DefaultSenderId?: string | undefined;
1707
1707
  /**
1708
1708
  * <p>The time that the deleted configuration set was created in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1709
1709
  * @public
1710
1710
  */
1711
- CreatedTimestamp?: Date;
1711
+ CreatedTimestamp?: Date | undefined;
1712
1712
  }
1713
1713
  /**
1714
1714
  * @public
@@ -1731,17 +1731,17 @@ export interface DeleteDefaultMessageTypeResult {
1731
1731
  * <p>The Amazon Resource Name (ARN) of the configuration set.</p>
1732
1732
  * @public
1733
1733
  */
1734
- ConfigurationSetArn?: string;
1734
+ ConfigurationSetArn?: string | undefined;
1735
1735
  /**
1736
1736
  * <p>The name of the configuration set.</p>
1737
1737
  * @public
1738
1738
  */
1739
- ConfigurationSetName?: string;
1739
+ ConfigurationSetName?: string | undefined;
1740
1740
  /**
1741
1741
  * <p>The current message type for the configuration set.</p>
1742
1742
  * @public
1743
1743
  */
1744
- MessageType?: MessageType;
1744
+ MessageType?: MessageType | undefined;
1745
1745
  }
1746
1746
  /**
1747
1747
  * @public
@@ -1763,17 +1763,17 @@ export interface DeleteDefaultSenderIdResult {
1763
1763
  * <p>The Amazon Resource Name (ARN) of the configuration set.</p>
1764
1764
  * @public
1765
1765
  */
1766
- ConfigurationSetArn?: string;
1766
+ ConfigurationSetArn?: string | undefined;
1767
1767
  /**
1768
1768
  * <p>The name of the configuration set.</p>
1769
1769
  * @public
1770
1770
  */
1771
- ConfigurationSetName?: string;
1771
+ ConfigurationSetName?: string | undefined;
1772
1772
  /**
1773
1773
  * <p>The current sender ID for the configuration set.</p>
1774
1774
  * @public
1775
1775
  */
1776
- SenderId?: string;
1776
+ SenderId?: string | undefined;
1777
1777
  }
1778
1778
  /**
1779
1779
  * @public
@@ -1801,17 +1801,17 @@ export interface DeleteEventDestinationResult {
1801
1801
  * <p>The Amazon Resource Name (ARN) of the configuration set.</p>
1802
1802
  * @public
1803
1803
  */
1804
- ConfigurationSetArn?: string;
1804
+ ConfigurationSetArn?: string | undefined;
1805
1805
  /**
1806
1806
  * <p>The name of the configuration set the event destination was deleted from.</p>
1807
1807
  * @public
1808
1808
  */
1809
- ConfigurationSetName?: string;
1809
+ ConfigurationSetName?: string | undefined;
1810
1810
  /**
1811
1811
  * <p>The event destination object that was deleted.</p>
1812
1812
  * @public
1813
1813
  */
1814
- EventDestination?: EventDestination;
1814
+ EventDestination?: EventDestination | undefined;
1815
1815
  }
1816
1816
  /**
1817
1817
  * @public
@@ -1855,27 +1855,27 @@ export interface DeleteKeywordResult {
1855
1855
  * <p>The PhoneNumberArn or PoolArn that the keyword was associated with.</p>
1856
1856
  * @public
1857
1857
  */
1858
- OriginationIdentityArn?: string;
1858
+ OriginationIdentityArn?: string | undefined;
1859
1859
  /**
1860
1860
  * <p>The PhoneNumberId or PoolId that the keyword was associated with.</p>
1861
1861
  * @public
1862
1862
  */
1863
- OriginationIdentity?: string;
1863
+ OriginationIdentity?: string | undefined;
1864
1864
  /**
1865
1865
  * <p>The keyword that was deleted.</p>
1866
1866
  * @public
1867
1867
  */
1868
- Keyword?: string;
1868
+ Keyword?: string | undefined;
1869
1869
  /**
1870
1870
  * <p>The message that was associated with the deleted keyword.</p>
1871
1871
  * @public
1872
1872
  */
1873
- KeywordMessage?: string;
1873
+ KeywordMessage?: string | undefined;
1874
1874
  /**
1875
1875
  * <p>The action that was associated with the deleted keyword.</p>
1876
1876
  * @public
1877
1877
  */
1878
- KeywordAction?: KeywordAction;
1878
+ KeywordAction?: KeywordAction | undefined;
1879
1879
  }
1880
1880
  /**
1881
1881
  * @public
@@ -1890,7 +1890,7 @@ export interface DeleteMediaMessageSpendLimitOverrideResult {
1890
1890
  * <p>The current monthly limit, in US dollars.</p>
1891
1891
  * @public
1892
1892
  */
1893
- MonthlyLimit?: number;
1893
+ MonthlyLimit?: number | undefined;
1894
1894
  }
1895
1895
  /**
1896
1896
  * @public
@@ -1918,28 +1918,28 @@ export interface DeleteOptedOutNumberResult {
1918
1918
  * <p>The OptOutListArn that the phone number was removed from.</p>
1919
1919
  * @public
1920
1920
  */
1921
- OptOutListArn?: string;
1921
+ OptOutListArn?: string | undefined;
1922
1922
  /**
1923
1923
  * <p>The OptOutListName that the phone number was removed from.</p>
1924
1924
  * @public
1925
1925
  */
1926
- OptOutListName?: string;
1926
+ OptOutListName?: string | undefined;
1927
1927
  /**
1928
1928
  * <p>The phone number that was removed from the OptOutList.</p>
1929
1929
  * @public
1930
1930
  */
1931
- OptedOutNumber?: string;
1931
+ OptedOutNumber?: string | undefined;
1932
1932
  /**
1933
1933
  * <p>The time that the number was removed at, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1934
1934
  * @public
1935
1935
  */
1936
- OptedOutTimestamp?: Date;
1936
+ OptedOutTimestamp?: Date | undefined;
1937
1937
  /**
1938
1938
  * <p>This is true if it was the end user who requested their phone number be removed.
1939
1939
  * </p>
1940
1940
  * @public
1941
1941
  */
1942
- EndUserOptedOut?: boolean;
1942
+ EndUserOptedOut?: boolean | undefined;
1943
1943
  }
1944
1944
  /**
1945
1945
  * @public
@@ -1963,17 +1963,17 @@ export interface DeleteOptOutListResult {
1963
1963
  * <p>The Amazon Resource Name (ARN) of the OptOutList that was removed.</p>
1964
1964
  * @public
1965
1965
  */
1966
- OptOutListArn?: string;
1966
+ OptOutListArn?: string | undefined;
1967
1967
  /**
1968
1968
  * <p>The name of the OptOutList that was removed.</p>
1969
1969
  * @public
1970
1970
  */
1971
- OptOutListName?: string;
1971
+ OptOutListName?: string | undefined;
1972
1972
  /**
1973
1973
  * <p>The time when the OptOutList was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
1974
1974
  * @public
1975
1975
  */
1976
- CreatedTimestamp?: Date;
1976
+ CreatedTimestamp?: Date | undefined;
1977
1977
  }
1978
1978
  /**
1979
1979
  * @public
@@ -1996,12 +1996,12 @@ export interface DeletePoolResult {
1996
1996
  * <p>The Amazon Resource Name (ARN) of the pool that was deleted.</p>
1997
1997
  * @public
1998
1998
  */
1999
- PoolArn?: string;
1999
+ PoolArn?: string | undefined;
2000
2000
  /**
2001
2001
  * <p>The PoolId of the pool that was deleted.</p>
2002
2002
  * @public
2003
2003
  */
2004
- PoolId?: string;
2004
+ PoolId?: string | undefined;
2005
2005
  /**
2006
2006
  * <p>The current status of the pool.</p>
2007
2007
  * <ul>
@@ -2018,28 +2018,28 @@ export interface DeletePoolResult {
2018
2018
  * </ul>
2019
2019
  * @public
2020
2020
  */
2021
- Status?: PoolStatus;
2021
+ Status?: PoolStatus | undefined;
2022
2022
  /**
2023
2023
  * <p>The message type that was associated with the deleted pool.</p>
2024
2024
  * @public
2025
2025
  */
2026
- MessageType?: MessageType;
2026
+ MessageType?: MessageType | undefined;
2027
2027
  /**
2028
2028
  * <p>By default this is set to false. When set to true you can receive incoming text
2029
2029
  * messages from your end recipients.</p>
2030
2030
  * @public
2031
2031
  */
2032
- TwoWayEnabled?: boolean;
2032
+ TwoWayEnabled?: boolean | undefined;
2033
2033
  /**
2034
2034
  * <p>The Amazon Resource Name (ARN) of the TwoWayChannel.</p>
2035
2035
  * @public
2036
2036
  */
2037
- TwoWayChannelArn?: string;
2037
+ TwoWayChannelArn?: string | undefined;
2038
2038
  /**
2039
2039
  * <p>An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.</p>
2040
2040
  * @public
2041
2041
  */
2042
- TwoWayChannelRole?: string;
2042
+ TwoWayChannelRole?: string | undefined;
2043
2043
  /**
2044
2044
  * <p>By default this is set to false. When an end recipient sends a message that begins
2045
2045
  * with HELP or STOP to one of your dedicated numbers, AWS End User Messaging SMS and Voice automatically
@@ -2048,22 +2048,22 @@ export interface DeletePoolResult {
2048
2048
  * responsible for tracking and honoring opt-out requests.</p>
2049
2049
  * @public
2050
2050
  */
2051
- SelfManagedOptOutsEnabled?: boolean;
2051
+ SelfManagedOptOutsEnabled?: boolean | undefined;
2052
2052
  /**
2053
2053
  * <p>The name of the OptOutList that was associated with the deleted pool.</p>
2054
2054
  * @public
2055
2055
  */
2056
- OptOutListName?: string;
2056
+ OptOutListName?: string | undefined;
2057
2057
  /**
2058
2058
  * <p>Indicates whether shared routes are enabled for the pool.</p>
2059
2059
  * @public
2060
2060
  */
2061
- SharedRoutesEnabled?: boolean;
2061
+ SharedRoutesEnabled?: boolean | undefined;
2062
2062
  /**
2063
2063
  * <p>The time when the pool was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
2064
2064
  * @public
2065
2065
  */
2066
- CreatedTimestamp?: Date;
2066
+ CreatedTimestamp?: Date | undefined;
2067
2067
  }
2068
2068
  /**
2069
2069
  * @public
@@ -2188,17 +2188,17 @@ export interface DeleteRegistrationResult {
2188
2188
  * <p>The version number of the registration that was approved.</p>
2189
2189
  * @public
2190
2190
  */
2191
- ApprovedVersionNumber?: number;
2191
+ ApprovedVersionNumber?: number | undefined;
2192
2192
  /**
2193
2193
  * <p>The latest version number of the registration that was denied.</p>
2194
2194
  * @public
2195
2195
  */
2196
- LatestDeniedVersionNumber?: number;
2196
+ LatestDeniedVersionNumber?: number | undefined;
2197
2197
  /**
2198
2198
  * <p>Metadata about a given registration which is specific to that registration type.</p>
2199
2199
  * @public
2200
2200
  */
2201
- AdditionalAttributes?: Record<string, string>;
2201
+ AdditionalAttributes?: Record<string, string> | undefined;
2202
2202
  /**
2203
2203
  * <p>The time when the registration was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
2204
2204
  * @public
@@ -2256,7 +2256,7 @@ export interface DeleteRegistrationAttachmentResult {
2256
2256
  * <p>The error message if the upload failed.</p>
2257
2257
  * @public
2258
2258
  */
2259
- AttachmentUploadErrorReason?: AttachmentUploadErrorReason;
2259
+ AttachmentUploadErrorReason?: AttachmentUploadErrorReason | undefined;
2260
2260
  /**
2261
2261
  * <p>The time when the registration attachment was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
2262
2262
  * @public
@@ -2306,17 +2306,17 @@ export interface DeleteRegistrationFieldValueResult {
2306
2306
  * <p>An array of values for the form field.</p>
2307
2307
  * @public
2308
2308
  */
2309
- SelectChoices?: string[];
2309
+ SelectChoices?: string[] | undefined;
2310
2310
  /**
2311
2311
  * <p>The text data for a free form field.</p>
2312
2312
  * @public
2313
2313
  */
2314
- TextValue?: string;
2314
+ TextValue?: string | undefined;
2315
2315
  /**
2316
2316
  * <p>The unique identifier for the registration attachment.</p>
2317
2317
  * @public
2318
2318
  */
2319
- RegistrationAttachmentId?: string;
2319
+ RegistrationAttachmentId?: string | undefined;
2320
2320
  }
2321
2321
  /**
2322
2322
  * @public
@@ -2336,17 +2336,17 @@ export interface DeleteResourcePolicyResult {
2336
2336
  * <p>The Amazon Resource Name (ARN) of the AWS End User Messaging SMS and Voice resource that the resource-based policy was deleted from.</p>
2337
2337
  * @public
2338
2338
  */
2339
- ResourceArn?: string;
2339
+ ResourceArn?: string | undefined;
2340
2340
  /**
2341
2341
  * <p>The JSON formatted resource-based policy that was deleted.</p>
2342
2342
  * @public
2343
2343
  */
2344
- Policy?: string;
2344
+ Policy?: string | undefined;
2345
2345
  /**
2346
2346
  * <p>The time when the resource-based policy was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
2347
2347
  * @public
2348
2348
  */
2349
- CreatedTimestamp?: Date;
2349
+ CreatedTimestamp?: Date | undefined;
2350
2350
  }
2351
2351
  /**
2352
2352
  * @public
@@ -2361,7 +2361,7 @@ export interface DeleteTextMessageSpendLimitOverrideResult {
2361
2361
  * <p>The current monthly limit, in US dollars.</p>
2362
2362
  * @public
2363
2363
  */
2364
- MonthlyLimit?: number;
2364
+ MonthlyLimit?: number | undefined;
2365
2365
  }
2366
2366
  /**
2367
2367
  * @public
@@ -2411,7 +2411,7 @@ export interface DeleteVoiceMessageSpendLimitOverrideResult {
2411
2411
  * <p>The current monthly limit, in US dollars.</p>
2412
2412
  * @public
2413
2413
  */
2414
- MonthlyLimit?: number;
2414
+ MonthlyLimit?: number | undefined;
2415
2415
  }
2416
2416
  /**
2417
2417
  * @public
@@ -2422,12 +2422,12 @@ export interface DescribeAccountAttributesRequest {
2422
2422
  * value for this field in the initial request.</p>
2423
2423
  * @public
2424
2424
  */
2425
- NextToken?: string;
2425
+ NextToken?: string | undefined;
2426
2426
  /**
2427
2427
  * <p>The maximum number of results to return per each request.</p>
2428
2428
  * @public
2429
2429
  */
2430
- MaxResults?: number;
2430
+ MaxResults?: number | undefined;
2431
2431
  }
2432
2432
  /**
2433
2433
  * @public
@@ -2437,13 +2437,13 @@ export interface DescribeAccountAttributesResult {
2437
2437
  * <p>An array of AccountAttributes objects.</p>
2438
2438
  * @public
2439
2439
  */
2440
- AccountAttributes?: AccountAttribute[];
2440
+ AccountAttributes?: AccountAttribute[] | undefined;
2441
2441
  /**
2442
2442
  * <p>The token to be used for the next set of paginated results. If this field is empty
2443
2443
  * then there are no more results.</p>
2444
2444
  * @public
2445
2445
  */
2446
- NextToken?: string;
2446
+ NextToken?: string | undefined;
2447
2447
  }
2448
2448
  /**
2449
2449
  * @public
@@ -2454,12 +2454,12 @@ export interface DescribeAccountLimitsRequest {
2454
2454
  * value for this field in the initial request.</p>
2455
2455
  * @public
2456
2456
  */
2457
- NextToken?: string;
2457
+ NextToken?: string | undefined;
2458
2458
  /**
2459
2459
  * <p>The maximum number of results to return per each request.</p>
2460
2460
  * @public
2461
2461
  */
2462
- MaxResults?: number;
2462
+ MaxResults?: number | undefined;
2463
2463
  }
2464
2464
  /**
2465
2465
  * @public
@@ -2469,13 +2469,13 @@ export interface DescribeAccountLimitsResult {
2469
2469
  * <p>An array of AccountLimit objects that show the current spend limits.</p>
2470
2470
  * @public
2471
2471
  */
2472
- AccountLimits?: AccountLimit[];
2472
+ AccountLimits?: AccountLimit[] | undefined;
2473
2473
  /**
2474
2474
  * <p>The token to be used for the next set of paginated results. If this field is empty
2475
2475
  * then there are no more results.</p>
2476
2476
  * @public
2477
2477
  */
2478
- NextToken?: string;
2478
+ NextToken?: string | undefined;
2479
2479
  }
2480
2480
  /**
2481
2481
  * @public
@@ -2486,23 +2486,23 @@ export interface DescribeConfigurationSetsRequest {
2486
2486
  * ConfigurationSetArn.</p>
2487
2487
  * @public
2488
2488
  */
2489
- ConfigurationSetNames?: string[];
2489
+ ConfigurationSetNames?: string[] | undefined;
2490
2490
  /**
2491
2491
  * <p>An array of filters to apply to the results that are returned.</p>
2492
2492
  * @public
2493
2493
  */
2494
- Filters?: ConfigurationSetFilter[];
2494
+ Filters?: ConfigurationSetFilter[] | undefined;
2495
2495
  /**
2496
2496
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
2497
2497
  * value for this field in the initial request.</p>
2498
2498
  * @public
2499
2499
  */
2500
- NextToken?: string;
2500
+ NextToken?: string | undefined;
2501
2501
  /**
2502
2502
  * <p>The maximum number of results to return per each request.</p>
2503
2503
  * @public
2504
2504
  */
2505
- MaxResults?: number;
2505
+ MaxResults?: number | undefined;
2506
2506
  }
2507
2507
  /**
2508
2508
  * @public
@@ -2512,13 +2512,13 @@ export interface DescribeConfigurationSetsResult {
2512
2512
  * <p>An array of ConfigurationSets objects.</p>
2513
2513
  * @public
2514
2514
  */
2515
- ConfigurationSets?: ConfigurationSetInformation[];
2515
+ ConfigurationSets?: ConfigurationSetInformation[] | undefined;
2516
2516
  /**
2517
2517
  * <p>The token to be used for the next set of paginated results. If this field is empty
2518
2518
  * then there are no more results.</p>
2519
2519
  * @public
2520
2520
  */
2521
- NextToken?: string;
2521
+ NextToken?: string | undefined;
2522
2522
  }
2523
2523
  /**
2524
2524
  * @public
@@ -2566,23 +2566,23 @@ export interface DescribeKeywordsRequest {
2566
2566
  * <p>An array of keywords to search for.</p>
2567
2567
  * @public
2568
2568
  */
2569
- Keywords?: string[];
2569
+ Keywords?: string[] | undefined;
2570
2570
  /**
2571
2571
  * <p>An array of keyword filters to filter the results.</p>
2572
2572
  * @public
2573
2573
  */
2574
- Filters?: KeywordFilter[];
2574
+ Filters?: KeywordFilter[] | undefined;
2575
2575
  /**
2576
2576
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
2577
2577
  * value for this field in the initial request.</p>
2578
2578
  * @public
2579
2579
  */
2580
- NextToken?: string;
2580
+ NextToken?: string | undefined;
2581
2581
  /**
2582
2582
  * <p>The maximum number of results to return per each request.</p>
2583
2583
  * @public
2584
2584
  */
2585
- MaxResults?: number;
2585
+ MaxResults?: number | undefined;
2586
2586
  }
2587
2587
  /**
2588
2588
  * <p>The information for all keywords in a pool.</p>
@@ -2613,23 +2613,23 @@ export interface DescribeKeywordsResult {
2613
2613
  * <p>The PhoneNumberArn or PoolArn that is associated with the OriginationIdentity. </p>
2614
2614
  * @public
2615
2615
  */
2616
- OriginationIdentityArn?: string;
2616
+ OriginationIdentityArn?: string | undefined;
2617
2617
  /**
2618
2618
  * <p>The PhoneNumberId or PoolId that is associated with the OriginationIdentity.</p>
2619
2619
  * @public
2620
2620
  */
2621
- OriginationIdentity?: string;
2621
+ OriginationIdentity?: string | undefined;
2622
2622
  /**
2623
2623
  * <p>An array of KeywordInformation objects that contain the results.</p>
2624
2624
  * @public
2625
2625
  */
2626
- Keywords?: KeywordInformation[];
2626
+ Keywords?: KeywordInformation[] | undefined;
2627
2627
  /**
2628
2628
  * <p>The token to be used for the next set of paginated results. If this field is empty
2629
2629
  * then there are no more results.</p>
2630
2630
  * @public
2631
2631
  */
2632
- NextToken?: string;
2632
+ NextToken?: string | undefined;
2633
2633
  }
2634
2634
  /**
2635
2635
  * @public
@@ -2676,23 +2676,23 @@ export interface DescribeOptedOutNumbersRequest {
2676
2676
  * <p>If you specify an opted out number that isn't valid, an exception is returned.</p>
2677
2677
  * @public
2678
2678
  */
2679
- OptedOutNumbers?: string[];
2679
+ OptedOutNumbers?: string[] | undefined;
2680
2680
  /**
2681
2681
  * <p>An array of OptedOutFilter objects to filter the results on.</p>
2682
2682
  * @public
2683
2683
  */
2684
- Filters?: OptedOutFilter[];
2684
+ Filters?: OptedOutFilter[] | undefined;
2685
2685
  /**
2686
2686
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
2687
2687
  * value for this field in the initial request.</p>
2688
2688
  * @public
2689
2689
  */
2690
- NextToken?: string;
2690
+ NextToken?: string | undefined;
2691
2691
  /**
2692
2692
  * <p>The maximum number of results to return per each request.</p>
2693
2693
  * @public
2694
2694
  */
2695
- MaxResults?: number;
2695
+ MaxResults?: number | undefined;
2696
2696
  }
2697
2697
  /**
2698
2698
  * <p>The information for an opted out number in an Amazon Web Services account.</p>
@@ -2723,24 +2723,24 @@ export interface DescribeOptedOutNumbersResult {
2723
2723
  * <p>The Amazon Resource Name (ARN) of the OptOutList.</p>
2724
2724
  * @public
2725
2725
  */
2726
- OptOutListArn?: string;
2726
+ OptOutListArn?: string | undefined;
2727
2727
  /**
2728
2728
  * <p>The name of the OptOutList.</p>
2729
2729
  * @public
2730
2730
  */
2731
- OptOutListName?: string;
2731
+ OptOutListName?: string | undefined;
2732
2732
  /**
2733
2733
  * <p>An array of OptedOutNumbersInformation objects that provide information about the
2734
2734
  * requested OptedOutNumbers.</p>
2735
2735
  * @public
2736
2736
  */
2737
- OptedOutNumbers?: OptedOutNumberInformation[];
2737
+ OptedOutNumbers?: OptedOutNumberInformation[] | undefined;
2738
2738
  /**
2739
2739
  * <p>The token to be used for the next set of paginated results. If this field is empty
2740
2740
  * then there are no more results.</p>
2741
2741
  * @public
2742
2742
  */
2743
- NextToken?: string;
2743
+ NextToken?: string | undefined;
2744
2744
  }
2745
2745
  /**
2746
2746
  * @public
@@ -2766,23 +2766,23 @@ export interface DescribeOptOutListsRequest {
2766
2766
  * </important>
2767
2767
  * @public
2768
2768
  */
2769
- OptOutListNames?: string[];
2769
+ OptOutListNames?: string[] | undefined;
2770
2770
  /**
2771
2771
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
2772
2772
  * value for this field in the initial request.</p>
2773
2773
  * @public
2774
2774
  */
2775
- NextToken?: string;
2775
+ NextToken?: string | undefined;
2776
2776
  /**
2777
2777
  * <p>The maximum number of results to return per each request.</p>
2778
2778
  * @public
2779
2779
  */
2780
- MaxResults?: number;
2780
+ MaxResults?: number | undefined;
2781
2781
  /**
2782
2782
  * <p>Use <code>SELF</code> to filter the list of Opt-Out List to ones your account owns or use <code>SHARED</code> to filter on Opt-Out List shared with your account. The <code>Owner</code> and <code>OptOutListNames</code> parameters can't be used at the same time.</p>
2783
2783
  * @public
2784
2784
  */
2785
- Owner?: Owner;
2785
+ Owner?: Owner | undefined;
2786
2786
  }
2787
2787
  /**
2788
2788
  * <p>The information for all OptOutList in an Amazon Web Services account.</p>
@@ -2814,13 +2814,13 @@ export interface DescribeOptOutListsResult {
2814
2814
  * OptOutLists.</p>
2815
2815
  * @public
2816
2816
  */
2817
- OptOutLists?: OptOutListInformation[];
2817
+ OptOutLists?: OptOutListInformation[] | undefined;
2818
2818
  /**
2819
2819
  * <p>The token to be used for the next set of paginated results. If this field is empty
2820
2820
  * then there are no more results.</p>
2821
2821
  * @public
2822
2822
  */
2823
- NextToken?: string;
2823
+ NextToken?: string | undefined;
2824
2824
  }
2825
2825
  /**
2826
2826
  * @public
@@ -2870,28 +2870,28 @@ export interface DescribePhoneNumbersRequest {
2870
2870
  * </important>
2871
2871
  * @public
2872
2872
  */
2873
- PhoneNumberIds?: string[];
2873
+ PhoneNumberIds?: string[] | undefined;
2874
2874
  /**
2875
2875
  * <p>An array of PhoneNumberFilter objects to filter the results.</p>
2876
2876
  * @public
2877
2877
  */
2878
- Filters?: PhoneNumberFilter[];
2878
+ Filters?: PhoneNumberFilter[] | undefined;
2879
2879
  /**
2880
2880
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
2881
2881
  * value for this field in the initial request.</p>
2882
2882
  * @public
2883
2883
  */
2884
- NextToken?: string;
2884
+ NextToken?: string | undefined;
2885
2885
  /**
2886
2886
  * <p>The maximum number of results to return per each request.</p>
2887
2887
  * @public
2888
2888
  */
2889
- MaxResults?: number;
2889
+ MaxResults?: number | undefined;
2890
2890
  /**
2891
2891
  * <p>Use <code>SELF</code> to filter the list of phone numbers to ones your account owns or use <code>SHARED</code> to filter on phone numbers shared with your account. The <code>Owner</code> and <code>PhoneNumberIds</code> parameters can't be used at the same time.</p>
2892
2892
  * @public
2893
2893
  */
2894
- Owner?: Owner;
2894
+ Owner?: Owner | undefined;
2895
2895
  }
2896
2896
  /**
2897
2897
  * @public
@@ -2950,7 +2950,7 @@ export interface PhoneNumberInformation {
2950
2950
  * <p>The unique identifier for the phone number.</p>
2951
2951
  * @public
2952
2952
  */
2953
- PhoneNumberId?: string;
2953
+ PhoneNumberId?: string | undefined;
2954
2954
  /**
2955
2955
  * <p>The phone number in E.164 format.</p>
2956
2956
  * @public
@@ -3000,12 +3000,12 @@ export interface PhoneNumberInformation {
3000
3000
  * <p>The Amazon Resource Name (ARN) of the two way channel.</p>
3001
3001
  * @public
3002
3002
  */
3003
- TwoWayChannelArn?: string;
3003
+ TwoWayChannelArn?: string | undefined;
3004
3004
  /**
3005
3005
  * <p>An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.</p>
3006
3006
  * @public
3007
3007
  */
3008
- TwoWayChannelRole?: string;
3008
+ TwoWayChannelRole?: string | undefined;
3009
3009
  /**
3010
3010
  * <p>When set to false an end recipient sends a message that begins with HELP or STOP to
3011
3011
  * one of your dedicated numbers, AWS End User Messaging SMS and Voice automatically replies with a
@@ -3030,12 +3030,12 @@ export interface PhoneNumberInformation {
3030
3030
  * <p>The unique identifier of the pool associated with the phone number.</p>
3031
3031
  * @public
3032
3032
  */
3033
- PoolId?: string;
3033
+ PoolId?: string | undefined;
3034
3034
  /**
3035
3035
  * <p>The unique identifier for the registration.</p>
3036
3036
  * @public
3037
3037
  */
3038
- RegistrationId?: string;
3038
+ RegistrationId?: string | undefined;
3039
3039
  /**
3040
3040
  * <p>The time when the phone number was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
3041
3041
  * @public
@@ -3051,13 +3051,13 @@ export interface DescribePhoneNumbersResult {
3051
3051
  * phone numbers.</p>
3052
3052
  * @public
3053
3053
  */
3054
- PhoneNumbers?: PhoneNumberInformation[];
3054
+ PhoneNumbers?: PhoneNumberInformation[] | undefined;
3055
3055
  /**
3056
3056
  * <p>The token to be used for the next set of paginated results. If this field is empty
3057
3057
  * then there are no more results.</p>
3058
3058
  * @public
3059
3059
  */
3060
- NextToken?: string;
3060
+ NextToken?: string | undefined;
3061
3061
  }
3062
3062
  /**
3063
3063
  * @public
@@ -3105,28 +3105,28 @@ export interface DescribePoolsRequest {
3105
3105
  * </important>
3106
3106
  * @public
3107
3107
  */
3108
- PoolIds?: string[];
3108
+ PoolIds?: string[] | undefined;
3109
3109
  /**
3110
3110
  * <p>An array of PoolFilter objects to filter the results.</p>
3111
3111
  * @public
3112
3112
  */
3113
- Filters?: PoolFilter[];
3113
+ Filters?: PoolFilter[] | undefined;
3114
3114
  /**
3115
3115
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
3116
3116
  * value for this field in the initial request.</p>
3117
3117
  * @public
3118
3118
  */
3119
- NextToken?: string;
3119
+ NextToken?: string | undefined;
3120
3120
  /**
3121
3121
  * <p>The maximum number of results to return per each request.</p>
3122
3122
  * @public
3123
3123
  */
3124
- MaxResults?: number;
3124
+ MaxResults?: number | undefined;
3125
3125
  /**
3126
3126
  * <p>Use <code>SELF</code> to filter the list of Pools to ones your account owns or use <code>SHARED</code> to filter on Pools shared with your account. The <code>Owner</code> and <code>PoolIds</code> parameters can't be used at the same time.</p>
3127
3127
  * @public
3128
3128
  */
3129
- Owner?: Owner;
3129
+ Owner?: Owner | undefined;
3130
3130
  }
3131
3131
  /**
3132
3132
  * <p>The information for a pool in an Amazon Web Services account.</p>
@@ -3165,12 +3165,12 @@ export interface PoolInformation {
3165
3165
  * <p>The Amazon Resource Name (ARN) of the two way channel.</p>
3166
3166
  * @public
3167
3167
  */
3168
- TwoWayChannelArn?: string;
3168
+ TwoWayChannelArn?: string | undefined;
3169
3169
  /**
3170
3170
  * <p>An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.</p>
3171
3171
  * @public
3172
3172
  */
3173
- TwoWayChannelRole?: string;
3173
+ TwoWayChannelRole?: string | undefined;
3174
3174
  /**
3175
3175
  * <p>When set to false, an end recipient sends a message that begins with HELP or STOP to
3176
3176
  * one of your dedicated numbers, AWS End User Messaging SMS and Voice automatically replies with a
@@ -3215,13 +3215,13 @@ export interface DescribePoolsResult {
3215
3215
  * <p>An array of PoolInformation objects that contain the details for the requested pools. </p>
3216
3216
  * @public
3217
3217
  */
3218
- Pools?: PoolInformation[];
3218
+ Pools?: PoolInformation[] | undefined;
3219
3219
  /**
3220
3220
  * <p>The token to be used for the next set of paginated results. If this field is empty
3221
3221
  * then there are no more results.</p>
3222
3222
  * @public
3223
3223
  */
3224
- NextToken?: string;
3224
+ NextToken?: string | undefined;
3225
3225
  }
3226
3226
  /**
3227
3227
  * @public
@@ -3259,23 +3259,23 @@ export interface DescribeProtectConfigurationsRequest {
3259
3259
  * <p>An array of protect configuration identifiers to search for.</p>
3260
3260
  * @public
3261
3261
  */
3262
- ProtectConfigurationIds?: string[];
3262
+ ProtectConfigurationIds?: string[] | undefined;
3263
3263
  /**
3264
3264
  * <p>An array of ProtectConfigurationFilter objects to filter the results.</p>
3265
3265
  * @public
3266
3266
  */
3267
- Filters?: ProtectConfigurationFilter[];
3267
+ Filters?: ProtectConfigurationFilter[] | undefined;
3268
3268
  /**
3269
3269
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
3270
3270
  * value for this field in the initial request.</p>
3271
3271
  * @public
3272
3272
  */
3273
- NextToken?: string;
3273
+ NextToken?: string | undefined;
3274
3274
  /**
3275
3275
  * <p>The maximum number of results to return per each request.</p>
3276
3276
  * @public
3277
3277
  */
3278
- MaxResults?: number;
3278
+ MaxResults?: number | undefined;
3279
3279
  }
3280
3280
  /**
3281
3281
  * <p>Provides information on the specified protect configuration.</p>
@@ -3317,13 +3317,13 @@ export interface DescribeProtectConfigurationsResult {
3317
3317
  * <p>An array of ProtectConfigurationInformation objects that contain the details for the request. </p>
3318
3318
  * @public
3319
3319
  */
3320
- ProtectConfigurations?: ProtectConfigurationInformation[];
3320
+ ProtectConfigurations?: ProtectConfigurationInformation[] | undefined;
3321
3321
  /**
3322
3322
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
3323
3323
  * value for this field in the initial request.</p>
3324
3324
  * @public
3325
3325
  */
3326
- NextToken?: string;
3326
+ NextToken?: string | undefined;
3327
3327
  }
3328
3328
  /**
3329
3329
  * @public
@@ -3360,23 +3360,23 @@ export interface DescribeRegistrationAttachmentsRequest {
3360
3360
  * <p>The unique identifier of registration attachments to find. This is an array of <b>RegistrationAttachmentId</b>.</p>
3361
3361
  * @public
3362
3362
  */
3363
- RegistrationAttachmentIds?: string[];
3363
+ RegistrationAttachmentIds?: string[] | undefined;
3364
3364
  /**
3365
3365
  * <p>An array of RegistrationAttachmentFilter objects to filter the results.</p>
3366
3366
  * @public
3367
3367
  */
3368
- Filters?: RegistrationAttachmentFilter[];
3368
+ Filters?: RegistrationAttachmentFilter[] | undefined;
3369
3369
  /**
3370
3370
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
3371
3371
  * value for this field in the initial request.</p>
3372
3372
  * @public
3373
3373
  */
3374
- NextToken?: string;
3374
+ NextToken?: string | undefined;
3375
3375
  /**
3376
3376
  * <p>The maximum number of results to return per each request.</p>
3377
3377
  * @public
3378
3378
  */
3379
- MaxResults?: number;
3379
+ MaxResults?: number | undefined;
3380
3380
  }
3381
3381
  /**
3382
3382
  * <p>Provides information on the specified registration attachments.</p>
@@ -3420,7 +3420,7 @@ export interface RegistrationAttachmentsInformation {
3420
3420
  * <p>A description of why the upload didn't successfully complete.</p>
3421
3421
  * @public
3422
3422
  */
3423
- AttachmentUploadErrorReason?: AttachmentUploadErrorReason;
3423
+ AttachmentUploadErrorReason?: AttachmentUploadErrorReason | undefined;
3424
3424
  /**
3425
3425
  * <p>The time when the registration attachment was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
3426
3426
  * @public
@@ -3441,7 +3441,7 @@ export interface DescribeRegistrationAttachmentsResult {
3441
3441
  * value for this field in the initial request.</p>
3442
3442
  * @public
3443
3443
  */
3444
- NextToken?: string;
3444
+ NextToken?: string | undefined;
3445
3445
  }
3446
3446
  /**
3447
3447
  * @public
@@ -3457,23 +3457,23 @@ export interface DescribeRegistrationFieldDefinitionsRequest {
3457
3457
  * <p>The path to the section of the registration.</p>
3458
3458
  * @public
3459
3459
  */
3460
- SectionPath?: string;
3460
+ SectionPath?: string | undefined;
3461
3461
  /**
3462
3462
  * <p>An array of paths to the registration form field.</p>
3463
3463
  * @public
3464
3464
  */
3465
- FieldPaths?: string[];
3465
+ FieldPaths?: string[] | undefined;
3466
3466
  /**
3467
3467
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
3468
3468
  * value for this field in the initial request.</p>
3469
3469
  * @public
3470
3470
  */
3471
- NextToken?: string;
3471
+ NextToken?: string | undefined;
3472
3472
  /**
3473
3473
  * <p>The maximum number of results to return per each request.</p>
3474
3474
  * @public
3475
3475
  */
3476
- MaxResults?: number;
3476
+ MaxResults?: number | undefined;
3477
3477
  }
3478
3478
  /**
3479
3479
  * <p>A description of each select option.</p>
@@ -3489,12 +3489,12 @@ export interface SelectOptionDescription {
3489
3489
  * <p>The title of the select option.</p>
3490
3490
  * @public
3491
3491
  */
3492
- Title?: string;
3492
+ Title?: string | undefined;
3493
3493
  /**
3494
3494
  * <p>A description of the option meaning.</p>
3495
3495
  * @public
3496
3496
  */
3497
- Description?: string;
3497
+ Description?: string | undefined;
3498
3498
  }
3499
3499
  /**
3500
3500
  * <p>Provides help information on the registration field.</p>
@@ -3515,32 +3515,32 @@ export interface RegistrationFieldDisplayHints {
3515
3515
  * <p>A full description of the display hint.</p>
3516
3516
  * @public
3517
3517
  */
3518
- LongDescription?: string;
3518
+ LongDescription?: string | undefined;
3519
3519
  /**
3520
3520
  * <p>The title of the document the display hint is associated with.</p>
3521
3521
  * @public
3522
3522
  */
3523
- DocumentationTitle?: string;
3523
+ DocumentationTitle?: string | undefined;
3524
3524
  /**
3525
3525
  * <p>The link to the document the display hint is associated with.</p>
3526
3526
  * @public
3527
3527
  */
3528
- DocumentationLink?: string;
3528
+ DocumentationLink?: string | undefined;
3529
3529
  /**
3530
3530
  * <p>An array of SelectOptionDescription objects.</p>
3531
3531
  * @public
3532
3532
  */
3533
- SelectOptionDescriptions?: SelectOptionDescription[];
3533
+ SelectOptionDescriptions?: SelectOptionDescription[] | undefined;
3534
3534
  /**
3535
3535
  * <p>The validation rules for the text field.</p>
3536
3536
  * @public
3537
3537
  */
3538
- TextValidationDescription?: string;
3538
+ TextValidationDescription?: string | undefined;
3539
3539
  /**
3540
3540
  * <p>Example text of what the value of a field should contain.</p>
3541
3541
  * @public
3542
3542
  */
3543
- ExampleTextValue?: string;
3543
+ ExampleTextValue?: string | undefined;
3544
3544
  }
3545
3545
  /**
3546
3546
  * @public
@@ -3639,12 +3639,12 @@ export interface RegistrationFieldDefinition {
3639
3639
  * <p>The validation rules for a select field.</p>
3640
3640
  * @public
3641
3641
  */
3642
- SelectValidation?: SelectValidation;
3642
+ SelectValidation?: SelectValidation | undefined;
3643
3643
  /**
3644
3644
  * <p>The validation rules for a text field.</p>
3645
3645
  * @public
3646
3646
  */
3647
- TextValidation?: TextValidation;
3647
+ TextValidation?: TextValidation | undefined;
3648
3648
  /**
3649
3649
  * <p>An array of RegistrationFieldDisplayHints objects for the field.</p>
3650
3650
  * @public
@@ -3671,7 +3671,7 @@ export interface DescribeRegistrationFieldDefinitionsResult {
3671
3671
  * value for this field in the initial request.</p>
3672
3672
  * @public
3673
3673
  */
3674
- NextToken?: string;
3674
+ NextToken?: string | undefined;
3675
3675
  }
3676
3676
  /**
3677
3677
  * @public
@@ -3686,28 +3686,28 @@ export interface DescribeRegistrationFieldValuesRequest {
3686
3686
  * <p>The version number of the registration.</p>
3687
3687
  * @public
3688
3688
  */
3689
- VersionNumber?: number;
3689
+ VersionNumber?: number | undefined;
3690
3690
  /**
3691
3691
  * <p>The path to the section of the registration.</p>
3692
3692
  * @public
3693
3693
  */
3694
- SectionPath?: string;
3694
+ SectionPath?: string | undefined;
3695
3695
  /**
3696
3696
  * <p>An array of paths to the registration form field.</p>
3697
3697
  * @public
3698
3698
  */
3699
- FieldPaths?: string[];
3699
+ FieldPaths?: string[] | undefined;
3700
3700
  /**
3701
3701
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
3702
3702
  * value for this field in the initial request.</p>
3703
3703
  * @public
3704
3704
  */
3705
- NextToken?: string;
3705
+ NextToken?: string | undefined;
3706
3706
  /**
3707
3707
  * <p>The maximum number of results to return per each request.</p>
3708
3708
  * @public
3709
3709
  */
3710
- MaxResults?: number;
3710
+ MaxResults?: number | undefined;
3711
3711
  }
3712
3712
  /**
3713
3713
  * <p>Provides the values of the specified field.</p>
@@ -3723,22 +3723,22 @@ export interface RegistrationFieldValueInformation {
3723
3723
  * <p>An array of values for the form field.</p>
3724
3724
  * @public
3725
3725
  */
3726
- SelectChoices?: string[];
3726
+ SelectChoices?: string[] | undefined;
3727
3727
  /**
3728
3728
  * <p>The text data for a free form field.</p>
3729
3729
  * @public
3730
3730
  */
3731
- TextValue?: string;
3731
+ TextValue?: string | undefined;
3732
3732
  /**
3733
3733
  * <p>The unique identifier for the registration attachment.</p>
3734
3734
  * @public
3735
3735
  */
3736
- RegistrationAttachmentId?: string;
3736
+ RegistrationAttachmentId?: string | undefined;
3737
3737
  /**
3738
3738
  * <p>A description of why the registration was denied.</p>
3739
3739
  * @public
3740
3740
  */
3741
- DeniedReason?: string;
3741
+ DeniedReason?: string | undefined;
3742
3742
  }
3743
3743
  /**
3744
3744
  * @public
@@ -3769,7 +3769,7 @@ export interface DescribeRegistrationFieldValuesResult {
3769
3769
  * value for this field in the initial request.</p>
3770
3770
  * @public
3771
3771
  */
3772
- NextToken?: string;
3772
+ NextToken?: string | undefined;
3773
3773
  }
3774
3774
  /**
3775
3775
  * @public
@@ -3807,23 +3807,23 @@ export interface DescribeRegistrationsRequest {
3807
3807
  * <p>An array of unique identifiers for each registration.</p>
3808
3808
  * @public
3809
3809
  */
3810
- RegistrationIds?: string[];
3810
+ RegistrationIds?: string[] | undefined;
3811
3811
  /**
3812
3812
  * <p>An array of RegistrationFilter objects to filter the results.</p>
3813
3813
  * @public
3814
3814
  */
3815
- Filters?: RegistrationFilter[];
3815
+ Filters?: RegistrationFilter[] | undefined;
3816
3816
  /**
3817
3817
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
3818
3818
  * value for this field in the initial request.</p>
3819
3819
  * @public
3820
3820
  */
3821
- NextToken?: string;
3821
+ NextToken?: string | undefined;
3822
3822
  /**
3823
3823
  * <p>The maximum number of results to return per each request.</p>
3824
3824
  * @public
3825
3825
  */
3826
- MaxResults?: number;
3826
+ MaxResults?: number | undefined;
3827
3827
  }
3828
3828
  /**
3829
3829
  * <p>Provides information about the requested registration.</p>
@@ -3898,17 +3898,17 @@ export interface RegistrationInformation {
3898
3898
  * <p>The version number of the registration that was approved.</p>
3899
3899
  * @public
3900
3900
  */
3901
- ApprovedVersionNumber?: number;
3901
+ ApprovedVersionNumber?: number | undefined;
3902
3902
  /**
3903
3903
  * <p>The latest version number of the registration that was denied.</p>
3904
3904
  * @public
3905
3905
  */
3906
- LatestDeniedVersionNumber?: number;
3906
+ LatestDeniedVersionNumber?: number | undefined;
3907
3907
  /**
3908
3908
  * <p>Metadata about a given registration which is specific to that registration type.</p>
3909
3909
  * @public
3910
3910
  */
3911
- AdditionalAttributes?: Record<string, string>;
3911
+ AdditionalAttributes?: Record<string, string> | undefined;
3912
3912
  /**
3913
3913
  * <p>The time when the registration was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
3914
3914
  * @public
@@ -3929,7 +3929,7 @@ export interface DescribeRegistrationsResult {
3929
3929
  * value for this field in the initial request.</p>
3930
3930
  * @public
3931
3931
  */
3932
- NextToken?: string;
3932
+ NextToken?: string | undefined;
3933
3933
  }
3934
3934
  /**
3935
3935
  * @public
@@ -3945,18 +3945,18 @@ export interface DescribeRegistrationSectionDefinitionsRequest {
3945
3945
  * <p>An array of paths for the registration form section.</p>
3946
3946
  * @public
3947
3947
  */
3948
- SectionPaths?: string[];
3948
+ SectionPaths?: string[] | undefined;
3949
3949
  /**
3950
3950
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
3951
3951
  * value for this field in the initial request.</p>
3952
3952
  * @public
3953
3953
  */
3954
- NextToken?: string;
3954
+ NextToken?: string | undefined;
3955
3955
  /**
3956
3956
  * <p>The maximum number of results to return per each request.</p>
3957
3957
  * @public
3958
3958
  */
3959
- MaxResults?: number;
3959
+ MaxResults?: number | undefined;
3960
3960
  }
3961
3961
  /**
3962
3962
  * <p>Provides help information on the registration section.</p>
@@ -3977,17 +3977,17 @@ export interface RegistrationSectionDisplayHints {
3977
3977
  * <p>A full description of the display hint.</p>
3978
3978
  * @public
3979
3979
  */
3980
- LongDescription?: string;
3980
+ LongDescription?: string | undefined;
3981
3981
  /**
3982
3982
  * <p>The title of the document the display hint is associated with.</p>
3983
3983
  * @public
3984
3984
  */
3985
- DocumentationTitle?: string;
3985
+ DocumentationTitle?: string | undefined;
3986
3986
  /**
3987
3987
  * <p>The link to the document the display hint is associated with.</p>
3988
3988
  * @public
3989
3989
  */
3990
- DocumentationLink?: string;
3990
+ DocumentationLink?: string | undefined;
3991
3991
  }
3992
3992
  /**
3993
3993
  * <p>Provides information on the specified section definition.</p>
@@ -4025,7 +4025,7 @@ export interface DescribeRegistrationSectionDefinitionsResult {
4025
4025
  * value for this field in the initial request.</p>
4026
4026
  * @public
4027
4027
  */
4028
- NextToken?: string;
4028
+ NextToken?: string | undefined;
4029
4029
  }
4030
4030
  /**
4031
4031
  * @public
@@ -4064,23 +4064,23 @@ export interface DescribeRegistrationTypeDefinitionsRequest {
4064
4064
  * action.</p>
4065
4065
  * @public
4066
4066
  */
4067
- RegistrationTypes?: string[];
4067
+ RegistrationTypes?: string[] | undefined;
4068
4068
  /**
4069
4069
  * <p>An array of RegistrationFilter objects to filter the results.</p>
4070
4070
  * @public
4071
4071
  */
4072
- Filters?: RegistrationTypeFilter[];
4072
+ Filters?: RegistrationTypeFilter[] | undefined;
4073
4073
  /**
4074
4074
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
4075
4075
  * value for this field in the initial request.</p>
4076
4076
  * @public
4077
4077
  */
4078
- NextToken?: string;
4078
+ NextToken?: string | undefined;
4079
4079
  /**
4080
4080
  * <p>The maximum number of results to return per each request.</p>
4081
4081
  * @public
4082
4082
  */
4083
- MaxResults?: number;
4083
+ MaxResults?: number | undefined;
4084
4084
  }
4085
4085
  /**
4086
4086
  * <p>Provides help information on the registration type.</p>
@@ -4096,22 +4096,22 @@ export interface RegistrationTypeDisplayHints {
4096
4096
  * <p>A short description of the display hint.</p>
4097
4097
  * @public
4098
4098
  */
4099
- ShortDescription?: string;
4099
+ ShortDescription?: string | undefined;
4100
4100
  /**
4101
4101
  * <p>A full description of the display hint.</p>
4102
4102
  * @public
4103
4103
  */
4104
- LongDescription?: string;
4104
+ LongDescription?: string | undefined;
4105
4105
  /**
4106
4106
  * <p>The title of the document the display hint is associated with.</p>
4107
4107
  * @public
4108
4108
  */
4109
- DocumentationTitle?: string;
4109
+ DocumentationTitle?: string | undefined;
4110
4110
  /**
4111
4111
  * <p>The link to the document the display hint is associated with.</p>
4112
4112
  * @public
4113
4113
  */
4114
- DocumentationLink?: string;
4114
+ DocumentationLink?: string | undefined;
4115
4115
  }
4116
4116
  /**
4117
4117
  * @public
@@ -4153,7 +4153,7 @@ export interface SupportedAssociation {
4153
4153
  * <p>The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.</p>
4154
4154
  * @public
4155
4155
  */
4156
- IsoCountryCode?: string;
4156
+ IsoCountryCode?: string | undefined;
4157
4157
  /**
4158
4158
  * <p>The association behavior.</p>
4159
4159
  * <ul>
@@ -4208,7 +4208,7 @@ export interface RegistrationTypeDefinition {
4208
4208
  * <p>The supported association behavior for the registration type.</p>
4209
4209
  * @public
4210
4210
  */
4211
- SupportedAssociations?: SupportedAssociation[];
4211
+ SupportedAssociations?: SupportedAssociation[] | undefined;
4212
4212
  /**
4213
4213
  * <p>Provides help information on the registration.</p>
4214
4214
  * @public
@@ -4230,7 +4230,7 @@ export interface DescribeRegistrationTypeDefinitionsResult {
4230
4230
  * value for this field in the initial request.</p>
4231
4231
  * @public
4232
4232
  */
4233
- NextToken?: string;
4233
+ NextToken?: string | undefined;
4234
4234
  }
4235
4235
  /**
4236
4236
  * @public
@@ -4272,23 +4272,23 @@ export interface DescribeRegistrationVersionsRequest {
4272
4272
  * <p>An array of registration version numbers.</p>
4273
4273
  * @public
4274
4274
  */
4275
- VersionNumbers?: number[];
4275
+ VersionNumbers?: number[] | undefined;
4276
4276
  /**
4277
4277
  * <p>An array of RegistrationVersionFilter objects to filter the results.</p>
4278
4278
  * @public
4279
4279
  */
4280
- Filters?: RegistrationVersionFilter[];
4280
+ Filters?: RegistrationVersionFilter[] | undefined;
4281
4281
  /**
4282
4282
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
4283
4283
  * value for this field in the initial request.</p>
4284
4284
  * @public
4285
4285
  */
4286
- NextToken?: string;
4286
+ NextToken?: string | undefined;
4287
4287
  /**
4288
4288
  * <p>The maximum number of results to return per each request.</p>
4289
4289
  * @public
4290
4290
  */
4291
- MaxResults?: number;
4291
+ MaxResults?: number | undefined;
4292
4292
  }
4293
4293
  /**
4294
4294
  * <p>Provides the reason a registration was rejected.</p>
@@ -4309,17 +4309,17 @@ export interface RegistrationDeniedReasonInformation {
4309
4309
  * <p>A long description of the rejection reason.</p>
4310
4310
  * @public
4311
4311
  */
4312
- LongDescription?: string;
4312
+ LongDescription?: string | undefined;
4313
4313
  /**
4314
4314
  * <p>The title of the document.</p>
4315
4315
  * @public
4316
4316
  */
4317
- DocumentationTitle?: string;
4317
+ DocumentationTitle?: string | undefined;
4318
4318
  /**
4319
4319
  * <p>The link to the document.</p>
4320
4320
  * @public
4321
4321
  */
4322
- DocumentationLink?: string;
4322
+ DocumentationLink?: string | undefined;
4323
4323
  }
4324
4324
  /**
4325
4325
  * <p>Provides information about the specified version of the registration.</p>
@@ -4383,7 +4383,7 @@ export interface RegistrationVersionInformation {
4383
4383
  * <p>An array of RegistrationDeniedReasonInformation objects. </p>
4384
4384
  * @public
4385
4385
  */
4386
- DeniedReasons?: RegistrationDeniedReasonInformation[];
4386
+ DeniedReasons?: RegistrationDeniedReasonInformation[] | undefined;
4387
4387
  }
4388
4388
  /**
4389
4389
  * @public
@@ -4409,7 +4409,7 @@ export interface DescribeRegistrationVersionsResult {
4409
4409
  * value for this field in the initial request.</p>
4410
4410
  * @public
4411
4411
  */
4412
- NextToken?: string;
4412
+ NextToken?: string | undefined;
4413
4413
  }
4414
4414
  /**
4415
4415
  * @public
@@ -4472,28 +4472,28 @@ export interface DescribeSenderIdsRequest {
4472
4472
  * </important>
4473
4473
  * @public
4474
4474
  */
4475
- SenderIds?: SenderIdAndCountry[];
4475
+ SenderIds?: SenderIdAndCountry[] | undefined;
4476
4476
  /**
4477
4477
  * <p>An array of SenderIdFilter objects to filter the results.</p>
4478
4478
  * @public
4479
4479
  */
4480
- Filters?: SenderIdFilter[];
4480
+ Filters?: SenderIdFilter[] | undefined;
4481
4481
  /**
4482
4482
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
4483
4483
  * value for this field in the initial request.</p>
4484
4484
  * @public
4485
4485
  */
4486
- NextToken?: string;
4486
+ NextToken?: string | undefined;
4487
4487
  /**
4488
4488
  * <p>The maximum number of results to return per each request.</p>
4489
4489
  * @public
4490
4490
  */
4491
- MaxResults?: number;
4491
+ MaxResults?: number | undefined;
4492
4492
  /**
4493
4493
  * <p>Use <code>SELF</code> to filter the list of Sender Ids to ones your account owns or use <code>SHARED</code> to filter on Sender Ids shared with your account. The <code>Owner</code> and <code>SenderIds</code> parameters can't be used at the same time. </p>
4494
4494
  * @public
4495
4495
  */
4496
- Owner?: Owner;
4496
+ Owner?: Owner | undefined;
4497
4497
  }
4498
4498
  /**
4499
4499
  * <p>The information for all SenderIds in an Amazon Web Services account.</p>
@@ -4542,7 +4542,7 @@ export interface SenderIdInformation {
4542
4542
  * <p>The unique identifier for the registration.</p>
4543
4543
  * @public
4544
4544
  */
4545
- RegistrationId?: string;
4545
+ RegistrationId?: string | undefined;
4546
4546
  }
4547
4547
  /**
4548
4548
  * @public
@@ -4553,13 +4553,13 @@ export interface DescribeSenderIdsResult {
4553
4553
  * SenderIds.</p>
4554
4554
  * @public
4555
4555
  */
4556
- SenderIds?: SenderIdInformation[];
4556
+ SenderIds?: SenderIdInformation[] | undefined;
4557
4557
  /**
4558
4558
  * <p>The token to be used for the next set of paginated results. If this field is empty
4559
4559
  * then there are no more results.</p>
4560
4560
  * @public
4561
4561
  */
4562
- NextToken?: string;
4562
+ NextToken?: string | undefined;
4563
4563
  }
4564
4564
  /**
4565
4565
  * @public
@@ -4570,12 +4570,12 @@ export interface DescribeSpendLimitsRequest {
4570
4570
  * value for this field in the initial request.</p>
4571
4571
  * @public
4572
4572
  */
4573
- NextToken?: string;
4573
+ NextToken?: string | undefined;
4574
4574
  /**
4575
4575
  * <p>The maximum number of results to return per each request.</p>
4576
4576
  * @public
4577
4577
  */
4578
- MaxResults?: number;
4578
+ MaxResults?: number | undefined;
4579
4579
  }
4580
4580
  /**
4581
4581
  * @public
@@ -4634,13 +4634,13 @@ export interface DescribeSpendLimitsResult {
4634
4634
  * limits.</p>
4635
4635
  * @public
4636
4636
  */
4637
- SpendLimits?: SpendLimit[];
4637
+ SpendLimits?: SpendLimit[] | undefined;
4638
4638
  /**
4639
4639
  * <p>The token to be used for the next set of paginated results. If this field is empty
4640
4640
  * then there are no more results.</p>
4641
4641
  * @public
4642
4642
  */
4643
- NextToken?: string;
4643
+ NextToken?: string | undefined;
4644
4644
  }
4645
4645
  /**
4646
4646
  * @public
@@ -4677,28 +4677,28 @@ export interface DescribeVerifiedDestinationNumbersRequest {
4677
4677
  * <p>An array of VerifiedDestinationNumberid to retreive.</p>
4678
4678
  * @public
4679
4679
  */
4680
- VerifiedDestinationNumberIds?: string[];
4680
+ VerifiedDestinationNumberIds?: string[] | undefined;
4681
4681
  /**
4682
4682
  * <p>An array of verified destination phone number, in E.164 format.</p>
4683
4683
  * @public
4684
4684
  */
4685
- DestinationPhoneNumbers?: string[];
4685
+ DestinationPhoneNumbers?: string[] | undefined;
4686
4686
  /**
4687
4687
  * <p>An array of VerifiedDestinationNumberFilter objects to filter the results.</p>
4688
4688
  * @public
4689
4689
  */
4690
- Filters?: VerifiedDestinationNumberFilter[];
4690
+ Filters?: VerifiedDestinationNumberFilter[] | undefined;
4691
4691
  /**
4692
4692
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
4693
4693
  * value for this field in the initial request.</p>
4694
4694
  * @public
4695
4695
  */
4696
- NextToken?: string;
4696
+ NextToken?: string | undefined;
4697
4697
  /**
4698
4698
  * <p>The maximum number of results to return per each request.</p>
4699
4699
  * @public
4700
4700
  */
4701
- MaxResults?: number;
4701
+ MaxResults?: number | undefined;
4702
4702
  }
4703
4703
  /**
4704
4704
  * <p>Provides information about the requested verified destintion phone number.</p>
@@ -4755,7 +4755,7 @@ export interface DescribeVerifiedDestinationNumbersResult {
4755
4755
  * value for this field in the initial request.</p>
4756
4756
  * @public
4757
4757
  */
4758
- NextToken?: string;
4758
+ NextToken?: string | undefined;
4759
4759
  }
4760
4760
  /**
4761
4761
  * @public
@@ -4805,7 +4805,7 @@ export interface DisassociateOriginationIdentityRequest {
4805
4805
  * request to ensure idempotency.</p>
4806
4806
  * @public
4807
4807
  */
4808
- ClientToken?: string;
4808
+ ClientToken?: string | undefined;
4809
4809
  }
4810
4810
  /**
4811
4811
  * @public
@@ -4815,28 +4815,28 @@ export interface DisassociateOriginationIdentityResult {
4815
4815
  * <p>The Amazon Resource Name (ARN) of the pool.</p>
4816
4816
  * @public
4817
4817
  */
4818
- PoolArn?: string;
4818
+ PoolArn?: string | undefined;
4819
4819
  /**
4820
4820
  * <p>The PoolId of the pool no longer associated with the origination identity.</p>
4821
4821
  * @public
4822
4822
  */
4823
- PoolId?: string;
4823
+ PoolId?: string | undefined;
4824
4824
  /**
4825
4825
  * <p>The PhoneNumberArn or SenderIdArn of the origination identity.</p>
4826
4826
  * @public
4827
4827
  */
4828
- OriginationIdentityArn?: string;
4828
+ OriginationIdentityArn?: string | undefined;
4829
4829
  /**
4830
4830
  * <p>The PhoneNumberId or SenderId of the origination identity.</p>
4831
4831
  * @public
4832
4832
  */
4833
- OriginationIdentity?: string;
4833
+ OriginationIdentity?: string | undefined;
4834
4834
  /**
4835
4835
  * <p>The two-character code, in ISO 3166-1 alpha-2 format, for the country or
4836
4836
  * region.</p>
4837
4837
  * @public
4838
4838
  */
4839
- IsoCountryCode?: string;
4839
+ IsoCountryCode?: string | undefined;
4840
4840
  }
4841
4841
  /**
4842
4842
  * @public
@@ -5038,17 +5038,17 @@ export interface GetResourcePolicyResult {
5038
5038
  * <p>The Amazon Resource Name (ARN) of the AWS End User Messaging SMS and Voice resource attached to the resource-based policy.</p>
5039
5039
  * @public
5040
5040
  */
5041
- ResourceArn?: string;
5041
+ ResourceArn?: string | undefined;
5042
5042
  /**
5043
5043
  * <p>The JSON formatted string that contains the resource-based policy attached to the AWS End User Messaging SMS and Voice resource. </p>
5044
5044
  * @public
5045
5045
  */
5046
- Policy?: string;
5046
+ Policy?: string | undefined;
5047
5047
  /**
5048
5048
  * <p>The time when the resource-based policy was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
5049
5049
  * @public
5050
5050
  */
5051
- CreatedTimestamp?: Date;
5051
+ CreatedTimestamp?: Date | undefined;
5052
5052
  }
5053
5053
  /**
5054
5054
  * @public
@@ -5119,18 +5119,18 @@ export interface ListPoolOriginationIdentitiesRequest {
5119
5119
  * <p>An array of PoolOriginationIdentitiesFilter objects to filter the results..</p>
5120
5120
  * @public
5121
5121
  */
5122
- Filters?: PoolOriginationIdentitiesFilter[];
5122
+ Filters?: PoolOriginationIdentitiesFilter[] | undefined;
5123
5123
  /**
5124
5124
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
5125
5125
  * value for this field in the initial request.</p>
5126
5126
  * @public
5127
5127
  */
5128
- NextToken?: string;
5128
+ NextToken?: string | undefined;
5129
5129
  /**
5130
5130
  * <p>The maximum number of results to return per each request.</p>
5131
5131
  * @public
5132
5132
  */
5133
- MaxResults?: number;
5133
+ MaxResults?: number | undefined;
5134
5134
  }
5135
5135
  /**
5136
5136
  * <p>The metadata for an origination identity associated with a pool.</p>
@@ -5163,7 +5163,7 @@ export interface OriginationIdentityMetadata {
5163
5163
  * <p>The phone number in E.164 format.</p>
5164
5164
  * @public
5165
5165
  */
5166
- PhoneNumber?: string;
5166
+ PhoneNumber?: string | undefined;
5167
5167
  }
5168
5168
  /**
5169
5169
  * @public
@@ -5173,23 +5173,23 @@ export interface ListPoolOriginationIdentitiesResult {
5173
5173
  * <p>The Amazon Resource Name (ARN) for the pool.</p>
5174
5174
  * @public
5175
5175
  */
5176
- PoolArn?: string;
5176
+ PoolArn?: string | undefined;
5177
5177
  /**
5178
5178
  * <p>The unique PoolId of the pool.</p>
5179
5179
  * @public
5180
5180
  */
5181
- PoolId?: string;
5181
+ PoolId?: string | undefined;
5182
5182
  /**
5183
5183
  * <p>An array of any OriginationIdentityMetadata objects.</p>
5184
5184
  * @public
5185
5185
  */
5186
- OriginationIdentities?: OriginationIdentityMetadata[];
5186
+ OriginationIdentities?: OriginationIdentityMetadata[] | undefined;
5187
5187
  /**
5188
5188
  * <p>The token to be used for the next set of paginated results. If this field is empty
5189
5189
  * then there are no more results.</p>
5190
5190
  * @public
5191
5191
  */
5192
- NextToken?: string;
5192
+ NextToken?: string | undefined;
5193
5193
  }
5194
5194
  /**
5195
5195
  * @public
@@ -5232,18 +5232,18 @@ export interface ListRegistrationAssociationsRequest {
5232
5232
  * <p>An array of RegistrationAssociationFilter to apply to the results that are returned.</p>
5233
5233
  * @public
5234
5234
  */
5235
- Filters?: RegistrationAssociationFilter[];
5235
+ Filters?: RegistrationAssociationFilter[] | undefined;
5236
5236
  /**
5237
5237
  * <p>The token to be used for the next set of paginated results. You don't need to supply a
5238
5238
  * value for this field in the initial request.</p>
5239
5239
  * @public
5240
5240
  */
5241
- NextToken?: string;
5241
+ NextToken?: string | undefined;
5242
5242
  /**
5243
5243
  * <p>The maximum number of results to return per each request.</p>
5244
5244
  * @public
5245
5245
  */
5246
- MaxResults?: number;
5246
+ MaxResults?: number | undefined;
5247
5247
  }
5248
5248
  /**
5249
5249
  * <p>Metadata for the origination identity that is associated with the registration.</p>
@@ -5269,12 +5269,12 @@ export interface RegistrationAssociationMetadata {
5269
5269
  * <p>The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.</p>
5270
5270
  * @public
5271
5271
  */
5272
- IsoCountryCode?: string;
5272
+ IsoCountryCode?: string | undefined;
5273
5273
  /**
5274
5274
  * <p>The phone number associated with the registration in E.164 format.</p>
5275
5275
  * @public
5276
5276
  */
5277
- PhoneNumber?: string;
5277
+ PhoneNumber?: string | undefined;
5278
5278
  }
5279
5279
  /**
5280
5280
  * @public
@@ -5306,7 +5306,7 @@ export interface ListRegistrationAssociationsResult {
5306
5306
  * value for this field in the initial request.</p>
5307
5307
  * @public
5308
5308
  */
5309
- NextToken?: string;
5309
+ NextToken?: string | undefined;
5310
5310
  }
5311
5311
  /**
5312
5312
  * @public
@@ -5326,12 +5326,12 @@ export interface ListTagsForResourceResult {
5326
5326
  * <p>The ARN of the resource.</p>
5327
5327
  * @public
5328
5328
  */
5329
- ResourceArn?: string;
5329
+ ResourceArn?: string | undefined;
5330
5330
  /**
5331
5331
  * <p>An array of key and value pair tags that are associated with the resource.</p>
5332
5332
  * @public
5333
5333
  */
5334
- Tags?: Tag[];
5334
+ Tags?: Tag[] | undefined;
5335
5335
  }
5336
5336
  /**
5337
5337
  * @public
@@ -5373,7 +5373,7 @@ export interface PutKeywordRequest {
5373
5373
  * </ul>
5374
5374
  * @public
5375
5375
  */
5376
- KeywordAction?: KeywordAction;
5376
+ KeywordAction?: KeywordAction | undefined;
5377
5377
  }
5378
5378
  /**
5379
5379
  * @public
@@ -5383,27 +5383,27 @@ export interface PutKeywordResult {
5383
5383
  * <p>The PhoneNumberArn or PoolArn that the keyword was associated with.</p>
5384
5384
  * @public
5385
5385
  */
5386
- OriginationIdentityArn?: string;
5386
+ OriginationIdentityArn?: string | undefined;
5387
5387
  /**
5388
5388
  * <p>The PhoneNumberId or PoolId that the keyword was associated with.</p>
5389
5389
  * @public
5390
5390
  */
5391
- OriginationIdentity?: string;
5391
+ OriginationIdentity?: string | undefined;
5392
5392
  /**
5393
5393
  * <p>The keyword that was added.</p>
5394
5394
  * @public
5395
5395
  */
5396
- Keyword?: string;
5396
+ Keyword?: string | undefined;
5397
5397
  /**
5398
5398
  * <p>The message associated with the keyword.</p>
5399
5399
  * @public
5400
5400
  */
5401
- KeywordMessage?: string;
5401
+ KeywordMessage?: string | undefined;
5402
5402
  /**
5403
5403
  * <p>The action to perform when the keyword is used.</p>
5404
5404
  * @public
5405
5405
  */
5406
- KeywordAction?: KeywordAction;
5406
+ KeywordAction?: KeywordAction | undefined;
5407
5407
  }
5408
5408
  /**
5409
5409
  * @public
@@ -5431,28 +5431,28 @@ export interface PutOptedOutNumberResult {
5431
5431
  * <p>The OptOutListArn that the phone number was removed from.</p>
5432
5432
  * @public
5433
5433
  */
5434
- OptOutListArn?: string;
5434
+ OptOutListArn?: string | undefined;
5435
5435
  /**
5436
5436
  * <p>The OptOutListName that the phone number was removed from.</p>
5437
5437
  * @public
5438
5438
  */
5439
- OptOutListName?: string;
5439
+ OptOutListName?: string | undefined;
5440
5440
  /**
5441
5441
  * <p>The phone number that was added to the OptOutList.</p>
5442
5442
  * @public
5443
5443
  */
5444
- OptedOutNumber?: string;
5444
+ OptedOutNumber?: string | undefined;
5445
5445
  /**
5446
5446
  * <p>The time that the phone number was added to the OptOutList, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
5447
5447
  * @public
5448
5448
  */
5449
- OptedOutTimestamp?: Date;
5449
+ OptedOutTimestamp?: Date | undefined;
5450
5450
  /**
5451
5451
  * <p>This is true if it was the end user who requested their phone number be removed.
5452
5452
  * </p>
5453
5453
  * @public
5454
5454
  */
5455
- EndUserOptedOut?: boolean;
5455
+ EndUserOptedOut?: boolean | undefined;
5456
5456
  }
5457
5457
  /**
5458
5458
  * @public
@@ -5472,17 +5472,17 @@ export interface PutRegistrationFieldValueRequest {
5472
5472
  * <p>An array of values for the form field.</p>
5473
5473
  * @public
5474
5474
  */
5475
- SelectChoices?: string[];
5475
+ SelectChoices?: string[] | undefined;
5476
5476
  /**
5477
5477
  * <p>The text data for a free form field.</p>
5478
5478
  * @public
5479
5479
  */
5480
- TextValue?: string;
5480
+ TextValue?: string | undefined;
5481
5481
  /**
5482
5482
  * <p>The unique identifier for the registration attachment.</p>
5483
5483
  * @public
5484
5484
  */
5485
- RegistrationAttachmentId?: string;
5485
+ RegistrationAttachmentId?: string | undefined;
5486
5486
  }
5487
5487
  /**
5488
5488
  * @public
@@ -5512,17 +5512,17 @@ export interface PutRegistrationFieldValueResult {
5512
5512
  * <p>An array of values for the form field.</p>
5513
5513
  * @public
5514
5514
  */
5515
- SelectChoices?: string[];
5515
+ SelectChoices?: string[] | undefined;
5516
5516
  /**
5517
5517
  * <p>The text data for a free form field.</p>
5518
5518
  * @public
5519
5519
  */
5520
- TextValue?: string;
5520
+ TextValue?: string | undefined;
5521
5521
  /**
5522
5522
  * <p>The unique identifier for the registration attachment.</p>
5523
5523
  * @public
5524
5524
  */
5525
- RegistrationAttachmentId?: string;
5525
+ RegistrationAttachmentId?: string | undefined;
5526
5526
  }
5527
5527
  /**
5528
5528
  * @public
@@ -5547,17 +5547,17 @@ export interface PutResourcePolicyResult {
5547
5547
  * <p>The Amazon Resource Name (ARN) of the AWS End User Messaging SMS and Voice resource attached to the resource-based policy.</p>
5548
5548
  * @public
5549
5549
  */
5550
- ResourceArn?: string;
5550
+ ResourceArn?: string | undefined;
5551
5551
  /**
5552
5552
  * <p>The JSON formatted Resource Policy.</p>
5553
5553
  * @public
5554
5554
  */
5555
- Policy?: string;
5555
+ Policy?: string | undefined;
5556
5556
  /**
5557
5557
  * <p>The time when the resource-based policy was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
5558
5558
  * @public
5559
5559
  */
5560
- CreatedTimestamp?: Date;
5560
+ CreatedTimestamp?: Date | undefined;
5561
5561
  }
5562
5562
  /**
5563
5563
  * @public
@@ -5581,64 +5581,64 @@ export interface ReleasePhoneNumberResult {
5581
5581
  * <p>The PhoneNumberArn of the phone number that was released.</p>
5582
5582
  * @public
5583
5583
  */
5584
- PhoneNumberArn?: string;
5584
+ PhoneNumberArn?: string | undefined;
5585
5585
  /**
5586
5586
  * <p>The PhoneNumberId of the phone number that was released.</p>
5587
5587
  * @public
5588
5588
  */
5589
- PhoneNumberId?: string;
5589
+ PhoneNumberId?: string | undefined;
5590
5590
  /**
5591
5591
  * <p>The phone number that was released.</p>
5592
5592
  * @public
5593
5593
  */
5594
- PhoneNumber?: string;
5594
+ PhoneNumber?: string | undefined;
5595
5595
  /**
5596
5596
  * <p>The current status of the request.</p>
5597
5597
  * @public
5598
5598
  */
5599
- Status?: NumberStatus;
5599
+ Status?: NumberStatus | undefined;
5600
5600
  /**
5601
5601
  * <p>The two-character code, in ISO 3166-1 alpha-2 format, for the country or
5602
5602
  * region.</p>
5603
5603
  * @public
5604
5604
  */
5605
- IsoCountryCode?: string;
5605
+ IsoCountryCode?: string | undefined;
5606
5606
  /**
5607
5607
  * <p>The message type that was associated with the phone number.</p>
5608
5608
  * @public
5609
5609
  */
5610
- MessageType?: MessageType;
5610
+ MessageType?: MessageType | undefined;
5611
5611
  /**
5612
5612
  * <p>Specifies if the number could be used for text messages, voice, or both.</p>
5613
5613
  * @public
5614
5614
  */
5615
- NumberCapabilities?: NumberCapability[];
5615
+ NumberCapabilities?: NumberCapability[] | undefined;
5616
5616
  /**
5617
5617
  * <p>The type of number that was released.</p>
5618
5618
  * @public
5619
5619
  */
5620
- NumberType?: NumberType;
5620
+ NumberType?: NumberType | undefined;
5621
5621
  /**
5622
5622
  * <p>The monthly price of the phone number, in US dollars.</p>
5623
5623
  * @public
5624
5624
  */
5625
- MonthlyLeasingPrice?: string;
5625
+ MonthlyLeasingPrice?: string | undefined;
5626
5626
  /**
5627
5627
  * <p>By default this is set to false. When set to true you can receive incoming text
5628
5628
  * messages from your end recipients.</p>
5629
5629
  * @public
5630
5630
  */
5631
- TwoWayEnabled?: boolean;
5631
+ TwoWayEnabled?: boolean | undefined;
5632
5632
  /**
5633
5633
  * <p>The Amazon Resource Name (ARN) of the TwoWayChannel.</p>
5634
5634
  * @public
5635
5635
  */
5636
- TwoWayChannelArn?: string;
5636
+ TwoWayChannelArn?: string | undefined;
5637
5637
  /**
5638
5638
  * <p>An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.</p>
5639
5639
  * @public
5640
5640
  */
5641
- TwoWayChannelRole?: string;
5641
+ TwoWayChannelRole?: string | undefined;
5642
5642
  /**
5643
5643
  * <p>By default this is set to false. When an end recipient sends a message that begins
5644
5644
  * with HELP or STOP to one of your dedicated numbers, AWS End User Messaging SMS and Voice automatically
@@ -5647,22 +5647,22 @@ export interface ReleasePhoneNumberResult {
5647
5647
  * responsible for tracking and honoring opt-out requests.</p>
5648
5648
  * @public
5649
5649
  */
5650
- SelfManagedOptOutsEnabled?: boolean;
5650
+ SelfManagedOptOutsEnabled?: boolean | undefined;
5651
5651
  /**
5652
5652
  * <p>The name of the OptOutList that was associated with the phone number.</p>
5653
5653
  * @public
5654
5654
  */
5655
- OptOutListName?: string;
5655
+ OptOutListName?: string | undefined;
5656
5656
  /**
5657
5657
  * <p>The unique identifier for the registration.</p>
5658
5658
  * @public
5659
5659
  */
5660
- RegistrationId?: string;
5660
+ RegistrationId?: string | undefined;
5661
5661
  /**
5662
5662
  * <p>The time when the phone number was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
5663
5663
  * @public
5664
5664
  */
5665
- CreatedTimestamp?: Date;
5665
+ CreatedTimestamp?: Date | undefined;
5666
5666
  }
5667
5667
  /**
5668
5668
  * @public
@@ -5719,7 +5719,7 @@ export interface ReleaseSenderIdResult {
5719
5719
  * <p>The unique identifier for the registration.</p>
5720
5720
  * @public
5721
5721
  */
5722
- RegistrationId?: string;
5722
+ RegistrationId?: string | undefined;
5723
5723
  }
5724
5724
  /**
5725
5725
  * @public
@@ -5770,7 +5770,7 @@ export interface RequestPhoneNumberRequest {
5770
5770
  * </important>
5771
5771
  * @public
5772
5772
  */
5773
- OptOutListName?: string;
5773
+ OptOutListName?: string | undefined;
5774
5774
  /**
5775
5775
  * <p>The pool to associated with the phone number. You can use the PoolId or PoolArn. </p>
5776
5776
  * <important>
@@ -5778,32 +5778,32 @@ export interface RequestPhoneNumberRequest {
5778
5778
  * </important>
5779
5779
  * @public
5780
5780
  */
5781
- PoolId?: string;
5781
+ PoolId?: string | undefined;
5782
5782
  /**
5783
5783
  * <p>Use this field to attach your phone number for an external registration
5784
5784
  * process.</p>
5785
5785
  * @public
5786
5786
  */
5787
- RegistrationId?: string;
5787
+ RegistrationId?: string | undefined;
5788
5788
  /**
5789
5789
  * <p>By default this is set to false. When set to true the phone number can't be
5790
5790
  * deleted.</p>
5791
5791
  * @public
5792
5792
  */
5793
- DeletionProtectionEnabled?: boolean;
5793
+ DeletionProtectionEnabled?: boolean | undefined;
5794
5794
  /**
5795
5795
  * <p>An array of tags (key and value pairs) associate with the requested phone number.
5796
5796
  * </p>
5797
5797
  * @public
5798
5798
  */
5799
- Tags?: Tag[];
5799
+ Tags?: Tag[] | undefined;
5800
5800
  /**
5801
5801
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
5802
5802
  * request. If you don't specify a client token, a randomly generated token is used for the
5803
5803
  * request to ensure idempotency.</p>
5804
5804
  * @public
5805
5805
  */
5806
- ClientToken?: string;
5806
+ ClientToken?: string | undefined;
5807
5807
  }
5808
5808
  /**
5809
5809
  * @public
@@ -5813,67 +5813,67 @@ export interface RequestPhoneNumberResult {
5813
5813
  * <p>The Amazon Resource Name (ARN) of the requested phone number.</p>
5814
5814
  * @public
5815
5815
  */
5816
- PhoneNumberArn?: string;
5816
+ PhoneNumberArn?: string | undefined;
5817
5817
  /**
5818
5818
  * <p>The unique identifier of the new phone number.</p>
5819
5819
  * @public
5820
5820
  */
5821
- PhoneNumberId?: string;
5821
+ PhoneNumberId?: string | undefined;
5822
5822
  /**
5823
5823
  * <p>The new phone number that was requested.</p>
5824
5824
  * @public
5825
5825
  */
5826
- PhoneNumber?: string;
5826
+ PhoneNumber?: string | undefined;
5827
5827
  /**
5828
5828
  * <p>The current status of the request.</p>
5829
5829
  * @public
5830
5830
  */
5831
- Status?: NumberStatus;
5831
+ Status?: NumberStatus | undefined;
5832
5832
  /**
5833
5833
  * <p>The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
5834
5834
  * </p>
5835
5835
  * @public
5836
5836
  */
5837
- IsoCountryCode?: string;
5837
+ IsoCountryCode?: string | undefined;
5838
5838
  /**
5839
5839
  * <p>The type of message. Valid values are TRANSACTIONAL for messages that are critical or
5840
5840
  * time-sensitive and PROMOTIONAL for messages that aren't critical or
5841
5841
  * time-sensitive.</p>
5842
5842
  * @public
5843
5843
  */
5844
- MessageType?: MessageType;
5844
+ MessageType?: MessageType | undefined;
5845
5845
  /**
5846
5846
  * <p>Indicates if the phone number will be used for text messages, voice messages or both.
5847
5847
  * </p>
5848
5848
  * @public
5849
5849
  */
5850
- NumberCapabilities?: NumberCapability[];
5850
+ NumberCapabilities?: NumberCapability[] | undefined;
5851
5851
  /**
5852
5852
  * <p>The type of number that was released.</p>
5853
5853
  * @public
5854
5854
  */
5855
- NumberType?: RequestableNumberType;
5855
+ NumberType?: RequestableNumberType | undefined;
5856
5856
  /**
5857
5857
  * <p>The monthly price, in US dollars, to lease the phone number.</p>
5858
5858
  * @public
5859
5859
  */
5860
- MonthlyLeasingPrice?: string;
5860
+ MonthlyLeasingPrice?: string | undefined;
5861
5861
  /**
5862
5862
  * <p>By default this is set to false. When set to true you can receive incoming text
5863
5863
  * messages from your end recipients.</p>
5864
5864
  * @public
5865
5865
  */
5866
- TwoWayEnabled?: boolean;
5866
+ TwoWayEnabled?: boolean | undefined;
5867
5867
  /**
5868
5868
  * <p>The ARN used to identify the two way channel.</p>
5869
5869
  * @public
5870
5870
  */
5871
- TwoWayChannelArn?: string;
5871
+ TwoWayChannelArn?: string | undefined;
5872
5872
  /**
5873
5873
  * <p>An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.</p>
5874
5874
  * @public
5875
5875
  */
5876
- TwoWayChannelRole?: string;
5876
+ TwoWayChannelRole?: string | undefined;
5877
5877
  /**
5878
5878
  * <p>By default this is set to false. When an end recipient sends a message that begins
5879
5879
  * with HELP or STOP to one of your dedicated numbers, AWS End User Messaging SMS and Voice automatically
@@ -5882,38 +5882,38 @@ export interface RequestPhoneNumberResult {
5882
5882
  * responsible for tracking and honoring opt-out requests.</p>
5883
5883
  * @public
5884
5884
  */
5885
- SelfManagedOptOutsEnabled?: boolean;
5885
+ SelfManagedOptOutsEnabled?: boolean | undefined;
5886
5886
  /**
5887
5887
  * <p>The name of the OptOutList that is associated with the requested phone number.</p>
5888
5888
  * @public
5889
5889
  */
5890
- OptOutListName?: string;
5890
+ OptOutListName?: string | undefined;
5891
5891
  /**
5892
5892
  * <p>By default this is set to false. When set to true the phone number can't be deleted.
5893
5893
  * </p>
5894
5894
  * @public
5895
5895
  */
5896
- DeletionProtectionEnabled?: boolean;
5896
+ DeletionProtectionEnabled?: boolean | undefined;
5897
5897
  /**
5898
5898
  * <p>The unique identifier of the pool associated with the phone number </p>
5899
5899
  * @public
5900
5900
  */
5901
- PoolId?: string;
5901
+ PoolId?: string | undefined;
5902
5902
  /**
5903
5903
  * <p>The unique identifier for the registration.</p>
5904
5904
  * @public
5905
5905
  */
5906
- RegistrationId?: string;
5906
+ RegistrationId?: string | undefined;
5907
5907
  /**
5908
5908
  * <p>An array of key and value pair tags that are associated with the phone number.</p>
5909
5909
  * @public
5910
5910
  */
5911
- Tags?: Tag[];
5911
+ Tags?: Tag[] | undefined;
5912
5912
  /**
5913
5913
  * <p>The time when the phone number was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
5914
5914
  * @public
5915
5915
  */
5916
- CreatedTimestamp?: Date;
5916
+ CreatedTimestamp?: Date | undefined;
5917
5917
  }
5918
5918
  /**
5919
5919
  * @public
@@ -5935,24 +5935,24 @@ export interface RequestSenderIdRequest {
5935
5935
  * time-sensitive.</p>
5936
5936
  * @public
5937
5937
  */
5938
- MessageTypes?: MessageType[];
5938
+ MessageTypes?: MessageType[] | undefined;
5939
5939
  /**
5940
5940
  * <p>By default this is set to false. When set to true the sender ID can't be deleted.</p>
5941
5941
  * @public
5942
5942
  */
5943
- DeletionProtectionEnabled?: boolean;
5943
+ DeletionProtectionEnabled?: boolean | undefined;
5944
5944
  /**
5945
5945
  * <p>An array of tags (key and value pairs) to associate with the sender ID.</p>
5946
5946
  * @public
5947
5947
  */
5948
- Tags?: Tag[];
5948
+ Tags?: Tag[] | undefined;
5949
5949
  /**
5950
5950
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
5951
5951
  * request. If you don't specify a client token, a randomly generated token is used for the
5952
5952
  * request to ensure idempotency.</p>
5953
5953
  * @public
5954
5954
  */
5955
- ClientToken?: string;
5955
+ ClientToken?: string | undefined;
5956
5956
  }
5957
5957
  /**
5958
5958
  * @public
@@ -5999,7 +5999,7 @@ export interface RequestSenderIdResult {
5999
5999
  * <p>An array of tags (key and value pairs) to associate with the sender ID.</p>
6000
6000
  * @public
6001
6001
  */
6002
- Tags?: Tag[];
6002
+ Tags?: Tag[] | undefined;
6003
6003
  }
6004
6004
  /**
6005
6005
  * @public
@@ -6031,7 +6031,7 @@ export interface SendDestinationNumberVerificationCodeRequest {
6031
6031
  * <p>Choose the language to use for the message.</p>
6032
6032
  * @public
6033
6033
  */
6034
- LanguageCode?: LanguageCode;
6034
+ LanguageCode?: LanguageCode | undefined;
6035
6035
  /**
6036
6036
  * <p>The origination identity of the message. This can be either the PhoneNumber,
6037
6037
  * PhoneNumberId, PhoneNumberArn, SenderId, SenderIdArn, PoolId, or PoolArn.</p>
@@ -6040,19 +6040,19 @@ export interface SendDestinationNumberVerificationCodeRequest {
6040
6040
  * </important>
6041
6041
  * @public
6042
6042
  */
6043
- OriginationIdentity?: string;
6043
+ OriginationIdentity?: string | undefined;
6044
6044
  /**
6045
6045
  * <p>The name of the configuration set to use. This can be either the ConfigurationSetName
6046
6046
  * or ConfigurationSetArn.</p>
6047
6047
  * @public
6048
6048
  */
6049
- ConfigurationSetName?: string;
6049
+ ConfigurationSetName?: string | undefined;
6050
6050
  /**
6051
6051
  * <p>You can specify custom data in this field. If you do, that data is logged to the event
6052
6052
  * destination.</p>
6053
6053
  * @public
6054
6054
  */
6055
- Context?: Record<string, string>;
6055
+ Context?: Record<string, string> | undefined;
6056
6056
  /**
6057
6057
  * <p>This field is used for any country-specific registration requirements. Currently, this
6058
6058
  * setting is only used when you send messages to recipients in India using a sender ID.
@@ -6060,7 +6060,7 @@ export interface SendDestinationNumberVerificationCodeRequest {
6060
6060
  * </p>
6061
6061
  * @public
6062
6062
  */
6063
- DestinationCountryParameters?: Partial<Record<DestinationCountryParameterKey, string>>;
6063
+ DestinationCountryParameters?: Partial<Record<DestinationCountryParameterKey, string>> | undefined;
6064
6064
  }
6065
6065
  /**
6066
6066
  * @public
@@ -6094,7 +6094,7 @@ export interface SendMediaMessageRequest {
6094
6094
  * <p>The text body of the message.</p>
6095
6095
  * @public
6096
6096
  */
6097
- MessageBody?: string;
6097
+ MessageBody?: string | undefined;
6098
6098
  /**
6099
6099
  * <p>An array of URLs to each media file to send. </p>
6100
6100
  * <p>The media files have to be stored in a publicly available S3 bucket. Supported media file formats
@@ -6102,40 +6102,40 @@ export interface SendMediaMessageRequest {
6102
6102
  * objects, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/create-bucket-overview.html">Creating a bucket</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/upload-objects.html">Uploading objects</a> in the S3 user guide.</p>
6103
6103
  * @public
6104
6104
  */
6105
- MediaUrls?: string[];
6105
+ MediaUrls?: string[] | undefined;
6106
6106
  /**
6107
6107
  * <p>The name of the configuration set to use. This can be either the ConfigurationSetName
6108
6108
  * or ConfigurationSetArn.</p>
6109
6109
  * @public
6110
6110
  */
6111
- ConfigurationSetName?: string;
6111
+ ConfigurationSetName?: string | undefined;
6112
6112
  /**
6113
6113
  * <p>The maximum amount that you want to spend, in US dollars, per each MMS message.</p>
6114
6114
  * @public
6115
6115
  */
6116
- MaxPrice?: string;
6116
+ MaxPrice?: string | undefined;
6117
6117
  /**
6118
6118
  * <p>How long the text message is valid for. By default this is 72 hours.</p>
6119
6119
  * @public
6120
6120
  */
6121
- TimeToLive?: number;
6121
+ TimeToLive?: number | undefined;
6122
6122
  /**
6123
6123
  * <p>You can specify custom data in this field. If you do, that data is logged to the event
6124
6124
  * destination.</p>
6125
6125
  * @public
6126
6126
  */
6127
- Context?: Record<string, string>;
6127
+ Context?: Record<string, string> | undefined;
6128
6128
  /**
6129
6129
  * <p>When set to true, the message is checked and validated, but isn't sent to the end
6130
6130
  * recipient.</p>
6131
6131
  * @public
6132
6132
  */
6133
- DryRun?: boolean;
6133
+ DryRun?: boolean | undefined;
6134
6134
  /**
6135
6135
  * <p>The unique identifier of the protect configuration to use.</p>
6136
6136
  * @public
6137
6137
  */
6138
- ProtectConfigurationId?: string;
6138
+ ProtectConfigurationId?: string | undefined;
6139
6139
  }
6140
6140
  /**
6141
6141
  * @public
@@ -6145,7 +6145,7 @@ export interface SendMediaMessageResult {
6145
6145
  * <p>The unique identifier for the message.</p>
6146
6146
  * @public
6147
6147
  */
6148
- MessageId?: string;
6148
+ MessageId?: string | undefined;
6149
6149
  }
6150
6150
  /**
6151
6151
  * @public
@@ -6164,47 +6164,47 @@ export interface SendTextMessageRequest {
6164
6164
  * </important>
6165
6165
  * @public
6166
6166
  */
6167
- OriginationIdentity?: string;
6167
+ OriginationIdentity?: string | undefined;
6168
6168
  /**
6169
6169
  * <p>The body of the text message.</p>
6170
6170
  * @public
6171
6171
  */
6172
- MessageBody?: string;
6172
+ MessageBody?: string | undefined;
6173
6173
  /**
6174
6174
  * <p>The type of message. Valid values are
6175
6175
  * for messages that are critical or time-sensitive and PROMOTIONAL for messages that
6176
6176
  * aren't critical or time-sensitive.</p>
6177
6177
  * @public
6178
6178
  */
6179
- MessageType?: MessageType;
6179
+ MessageType?: MessageType | undefined;
6180
6180
  /**
6181
6181
  * <p>When you register a short code in the US, you must specify a program name. If you
6182
6182
  * don’t have a US short code, omit this attribute.</p>
6183
6183
  * @public
6184
6184
  */
6185
- Keyword?: string;
6185
+ Keyword?: string | undefined;
6186
6186
  /**
6187
6187
  * <p>The name of the configuration set to use. This can be either the ConfigurationSetName
6188
6188
  * or ConfigurationSetArn.</p>
6189
6189
  * @public
6190
6190
  */
6191
- ConfigurationSetName?: string;
6191
+ ConfigurationSetName?: string | undefined;
6192
6192
  /**
6193
6193
  * <p>The maximum amount that you want to spend, in US dollars, per each text message. If the calculated amount to send the text message is greater than <code>MaxPrice</code>, the message is not sent and an error is returned.</p>
6194
6194
  * @public
6195
6195
  */
6196
- MaxPrice?: string;
6196
+ MaxPrice?: string | undefined;
6197
6197
  /**
6198
6198
  * <p>How long the text message is valid for, in seconds. By default this is 72 hours. If the messages isn't handed off before the TTL expires we stop attempting to hand off the message and return <code>TTL_EXPIRED</code> event.</p>
6199
6199
  * @public
6200
6200
  */
6201
- TimeToLive?: number;
6201
+ TimeToLive?: number | undefined;
6202
6202
  /**
6203
6203
  * <p>You can specify custom data in this field. If you do, that data is logged to the event
6204
6204
  * destination.</p>
6205
6205
  * @public
6206
6206
  */
6207
- Context?: Record<string, string>;
6207
+ Context?: Record<string, string> | undefined;
6208
6208
  /**
6209
6209
  * <p>This field is used for any country-specific registration requirements. Currently, this
6210
6210
  * setting is only used when you send messages to recipients in India using a sender ID.
@@ -6233,7 +6233,7 @@ export interface SendTextMessageRequest {
6233
6233
  * </ul>
6234
6234
  * @public
6235
6235
  */
6236
- DestinationCountryParameters?: Partial<Record<DestinationCountryParameterKey, string>>;
6236
+ DestinationCountryParameters?: Partial<Record<DestinationCountryParameterKey, string>> | undefined;
6237
6237
  /**
6238
6238
  * <p>When set to true, the message is checked and validated, but isn't sent to the end
6239
6239
  * recipient. You are not charged for using <code>DryRun</code>.</p>
@@ -6243,12 +6243,12 @@ export interface SendTextMessageRequest {
6243
6243
  * Second (MPS) limits</a> in the <i>AWS End User Messaging SMS User Guide</i>..</p>
6244
6244
  * @public
6245
6245
  */
6246
- DryRun?: boolean;
6246
+ DryRun?: boolean | undefined;
6247
6247
  /**
6248
6248
  * <p>The unique identifier for the protect configuration.</p>
6249
6249
  * @public
6250
6250
  */
6251
- ProtectConfigurationId?: string;
6251
+ ProtectConfigurationId?: string | undefined;
6252
6252
  }
6253
6253
  /**
6254
6254
  * @public
@@ -6258,7 +6258,7 @@ export interface SendTextMessageResult {
6258
6258
  * <p>The unique identifier for the message.</p>
6259
6259
  * @public
6260
6260
  */
6261
- MessageId?: string;
6261
+ MessageId?: string | undefined;
6262
6262
  }
6263
6263
  /**
6264
6264
  * @public
@@ -6363,7 +6363,7 @@ export interface SendVoiceMessageRequest {
6363
6363
  * <p>The text to convert to a voice message.</p>
6364
6364
  * @public
6365
6365
  */
6366
- MessageBody?: string;
6366
+ MessageBody?: string | undefined;
6367
6367
  /**
6368
6368
  * <p>Specifies if the MessageBody field contains text or <a href="https://docs.aws.amazon.com/polly/latest/dg/what-is.html">speech synthesis
6369
6369
  * markup language (SSML)</a>.</p>
@@ -6379,46 +6379,46 @@ export interface SendVoiceMessageRequest {
6379
6379
  * </ul>
6380
6380
  * @public
6381
6381
  */
6382
- MessageBodyTextType?: VoiceMessageBodyTextType;
6382
+ MessageBodyTextType?: VoiceMessageBodyTextType | undefined;
6383
6383
  /**
6384
6384
  * <p>The voice for the <a href="https://docs.aws.amazon.com/polly/latest/dg/what-is.html">Amazon Polly</a>
6385
6385
  * service to use. By default this is set to "MATTHEW".</p>
6386
6386
  * @public
6387
6387
  */
6388
- VoiceId?: VoiceId;
6388
+ VoiceId?: VoiceId | undefined;
6389
6389
  /**
6390
6390
  * <p>The name of the configuration set to use. This can be either the ConfigurationSetName
6391
6391
  * or ConfigurationSetArn.</p>
6392
6392
  * @public
6393
6393
  */
6394
- ConfigurationSetName?: string;
6394
+ ConfigurationSetName?: string | undefined;
6395
6395
  /**
6396
6396
  * <p>The maximum amount to spend per voice message, in US dollars.</p>
6397
6397
  * @public
6398
6398
  */
6399
- MaxPricePerMinute?: string;
6399
+ MaxPricePerMinute?: string | undefined;
6400
6400
  /**
6401
6401
  * <p>How long the voice message is valid for. By default this is 72 hours.</p>
6402
6402
  * @public
6403
6403
  */
6404
- TimeToLive?: number;
6404
+ TimeToLive?: number | undefined;
6405
6405
  /**
6406
6406
  * <p>You can specify custom data in this field. If you do, that data is logged to the event
6407
6407
  * destination.</p>
6408
6408
  * @public
6409
6409
  */
6410
- Context?: Record<string, string>;
6410
+ Context?: Record<string, string> | undefined;
6411
6411
  /**
6412
6412
  * <p>When set to true, the message is checked and validated, but isn't sent to the end
6413
6413
  * recipient.</p>
6414
6414
  * @public
6415
6415
  */
6416
- DryRun?: boolean;
6416
+ DryRun?: boolean | undefined;
6417
6417
  /**
6418
6418
  * <p>The unique identifier for the protect configuration.</p>
6419
6419
  * @public
6420
6420
  */
6421
- ProtectConfigurationId?: string;
6421
+ ProtectConfigurationId?: string | undefined;
6422
6422
  }
6423
6423
  /**
6424
6424
  * @public
@@ -6428,7 +6428,7 @@ export interface SendVoiceMessageResult {
6428
6428
  * <p>The unique identifier for the message.</p>
6429
6429
  * @public
6430
6430
  */
6431
- MessageId?: string;
6431
+ MessageId?: string | undefined;
6432
6432
  }
6433
6433
  /**
6434
6434
  * @public
@@ -6481,17 +6481,17 @@ export interface SetDefaultMessageTypeResult {
6481
6481
  * <p>The Amazon Resource Name (ARN) of the updated configuration set.</p>
6482
6482
  * @public
6483
6483
  */
6484
- ConfigurationSetArn?: string;
6484
+ ConfigurationSetArn?: string | undefined;
6485
6485
  /**
6486
6486
  * <p>The name of the configuration set that was updated.</p>
6487
6487
  * @public
6488
6488
  */
6489
- ConfigurationSetName?: string;
6489
+ ConfigurationSetName?: string | undefined;
6490
6490
  /**
6491
6491
  * <p>The new default message type of the configuration set.</p>
6492
6492
  * @public
6493
6493
  */
6494
- MessageType?: MessageType;
6494
+ MessageType?: MessageType | undefined;
6495
6495
  }
6496
6496
  /**
6497
6497
  * @public
@@ -6521,17 +6521,17 @@ export interface SetDefaultSenderIdResult {
6521
6521
  * <p>The Amazon Resource Name (ARN) of the updated configuration set.</p>
6522
6522
  * @public
6523
6523
  */
6524
- ConfigurationSetArn?: string;
6524
+ ConfigurationSetArn?: string | undefined;
6525
6525
  /**
6526
6526
  * <p>The name of the configuration set that was updated.</p>
6527
6527
  * @public
6528
6528
  */
6529
- ConfigurationSetName?: string;
6529
+ ConfigurationSetName?: string | undefined;
6530
6530
  /**
6531
6531
  * <p>The default sender ID to set for the ConfigurationSet.</p>
6532
6532
  * @public
6533
6533
  */
6534
- SenderId?: string;
6534
+ SenderId?: string | undefined;
6535
6535
  }
6536
6536
  /**
6537
6537
  * @public
@@ -6551,7 +6551,7 @@ export interface SetMediaMessageSpendLimitOverrideResult {
6551
6551
  * <p>The current monthly limit to enforce on sending text messages.</p>
6552
6552
  * @public
6553
6553
  */
6554
- MonthlyLimit?: number;
6554
+ MonthlyLimit?: number | undefined;
6555
6555
  }
6556
6556
  /**
6557
6557
  * @public
@@ -6571,7 +6571,7 @@ export interface SetTextMessageSpendLimitOverrideResult {
6571
6571
  * <p>The current monthly limit to enforce on sending text messages.</p>
6572
6572
  * @public
6573
6573
  */
6574
- MonthlyLimit?: number;
6574
+ MonthlyLimit?: number | undefined;
6575
6575
  }
6576
6576
  /**
6577
6577
  * @public
@@ -6591,7 +6591,7 @@ export interface SetVoiceMessageSpendLimitOverrideResult {
6591
6591
  * <p>The current monthly limit to enforce on sending voice messages.</p>
6592
6592
  * @public
6593
6593
  */
6594
- MonthlyLimit?: number;
6594
+ MonthlyLimit?: number | undefined;
6595
6595
  }
6596
6596
  /**
6597
6597
  * @public
@@ -6730,7 +6730,7 @@ export interface UpdateEventDestinationRequest {
6730
6730
  * <p>When set to true logging is enabled.</p>
6731
6731
  * @public
6732
6732
  */
6733
- Enabled?: boolean;
6733
+ Enabled?: boolean | undefined;
6734
6734
  /**
6735
6735
  * <p>An array of event types that determine which events to log.</p>
6736
6736
  * <note>
@@ -6738,24 +6738,24 @@ export interface UpdateEventDestinationRequest {
6738
6738
  * </note>
6739
6739
  * @public
6740
6740
  */
6741
- MatchingEventTypes?: EventType[];
6741
+ MatchingEventTypes?: EventType[] | undefined;
6742
6742
  /**
6743
6743
  * <p>An object that contains information about an event destination that sends data to
6744
6744
  * CloudWatch Logs.</p>
6745
6745
  * @public
6746
6746
  */
6747
- CloudWatchLogsDestination?: CloudWatchLogsDestination;
6747
+ CloudWatchLogsDestination?: CloudWatchLogsDestination | undefined;
6748
6748
  /**
6749
6749
  * <p>An object that contains information about an event destination for logging to Firehose.</p>
6750
6750
  * @public
6751
6751
  */
6752
- KinesisFirehoseDestination?: KinesisFirehoseDestination;
6752
+ KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
6753
6753
  /**
6754
6754
  * <p>An object that contains information about an event destination that sends data to
6755
6755
  * Amazon SNS.</p>
6756
6756
  * @public
6757
6757
  */
6758
- SnsDestination?: SnsDestination;
6758
+ SnsDestination?: SnsDestination | undefined;
6759
6759
  }
6760
6760
  /**
6761
6761
  * @public
@@ -6765,18 +6765,18 @@ export interface UpdateEventDestinationResult {
6765
6765
  * <p>The Amazon Resource Name (ARN) for the ConfigurationSet that was updated.</p>
6766
6766
  * @public
6767
6767
  */
6768
- ConfigurationSetArn?: string;
6768
+ ConfigurationSetArn?: string | undefined;
6769
6769
  /**
6770
6770
  * <p>The name of the configuration set.</p>
6771
6771
  * @public
6772
6772
  */
6773
- ConfigurationSetName?: string;
6773
+ ConfigurationSetName?: string | undefined;
6774
6774
  /**
6775
6775
  * <p>An EventDestination object containing the details of where events will be logged.
6776
6776
  * </p>
6777
6777
  * @public
6778
6778
  */
6779
- EventDestination?: EventDestination;
6779
+ EventDestination?: EventDestination | undefined;
6780
6780
  }
6781
6781
  /**
6782
6782
  * @public
@@ -6796,17 +6796,17 @@ export interface UpdatePhoneNumberRequest {
6796
6796
  * messages from your end recipients.</p>
6797
6797
  * @public
6798
6798
  */
6799
- TwoWayEnabled?: boolean;
6799
+ TwoWayEnabled?: boolean | undefined;
6800
6800
  /**
6801
6801
  * <p>The Amazon Resource Name (ARN) of the two way channel.</p>
6802
6802
  * @public
6803
6803
  */
6804
- TwoWayChannelArn?: string;
6804
+ TwoWayChannelArn?: string | undefined;
6805
6805
  /**
6806
6806
  * <p>An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.</p>
6807
6807
  * @public
6808
6808
  */
6809
- TwoWayChannelRole?: string;
6809
+ TwoWayChannelRole?: string | undefined;
6810
6810
  /**
6811
6811
  * <p>By default this is set to false. When an end recipient sends a message that begins
6812
6812
  * with HELP or STOP to one of your dedicated numbers, AWS End User Messaging SMS and Voice automatically
@@ -6815,19 +6815,19 @@ export interface UpdatePhoneNumberRequest {
6815
6815
  * responsible for tracking and honoring opt-out requests.</p>
6816
6816
  * @public
6817
6817
  */
6818
- SelfManagedOptOutsEnabled?: boolean;
6818
+ SelfManagedOptOutsEnabled?: boolean | undefined;
6819
6819
  /**
6820
6820
  * <p>The OptOutList to add the phone number to. Valid values for this field can be either
6821
6821
  * the OutOutListName or OutOutListArn.</p>
6822
6822
  * @public
6823
6823
  */
6824
- OptOutListName?: string;
6824
+ OptOutListName?: string | undefined;
6825
6825
  /**
6826
6826
  * <p>By default this is set to false. When set to true the phone number can't be deleted.
6827
6827
  * </p>
6828
6828
  * @public
6829
6829
  */
6830
- DeletionProtectionEnabled?: boolean;
6830
+ DeletionProtectionEnabled?: boolean | undefined;
6831
6831
  }
6832
6832
  /**
6833
6833
  * @public
@@ -6837,91 +6837,91 @@ export interface UpdatePhoneNumberResult {
6837
6837
  * <p>The Amazon Resource Name (ARN) of the updated phone number.</p>
6838
6838
  * @public
6839
6839
  */
6840
- PhoneNumberArn?: string;
6840
+ PhoneNumberArn?: string | undefined;
6841
6841
  /**
6842
6842
  * <p>The unique identifier of the phone number.</p>
6843
6843
  * @public
6844
6844
  */
6845
- PhoneNumberId?: string;
6845
+ PhoneNumberId?: string | undefined;
6846
6846
  /**
6847
6847
  * <p>The phone number that was updated.</p>
6848
6848
  * @public
6849
6849
  */
6850
- PhoneNumber?: string;
6850
+ PhoneNumber?: string | undefined;
6851
6851
  /**
6852
6852
  * <p>The current status of the request.</p>
6853
6853
  * @public
6854
6854
  */
6855
- Status?: NumberStatus;
6855
+ Status?: NumberStatus | undefined;
6856
6856
  /**
6857
6857
  * <p>The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
6858
6858
  * </p>
6859
6859
  * @public
6860
6860
  */
6861
- IsoCountryCode?: string;
6861
+ IsoCountryCode?: string | undefined;
6862
6862
  /**
6863
6863
  * <p>The type of message. Valid values are TRANSACTIONAL for messages that are critical or
6864
6864
  * time-sensitive and PROMOTIONAL for messages that aren't critical or
6865
6865
  * time-sensitive.</p>
6866
6866
  * @public
6867
6867
  */
6868
- MessageType?: MessageType;
6868
+ MessageType?: MessageType | undefined;
6869
6869
  /**
6870
6870
  * <p>Specifies if the number could be used for text messages, voice or both.</p>
6871
6871
  * @public
6872
6872
  */
6873
- NumberCapabilities?: NumberCapability[];
6873
+ NumberCapabilities?: NumberCapability[] | undefined;
6874
6874
  /**
6875
6875
  * <p>The type of number that was requested.</p>
6876
6876
  * @public
6877
6877
  */
6878
- NumberType?: NumberType;
6878
+ NumberType?: NumberType | undefined;
6879
6879
  /**
6880
6880
  * <p>The monthly leasing price of the phone number, in US dollars.</p>
6881
6881
  * @public
6882
6882
  */
6883
- MonthlyLeasingPrice?: string;
6883
+ MonthlyLeasingPrice?: string | undefined;
6884
6884
  /**
6885
6885
  * <p>By default this is set to false. When set to true you can receive incoming text
6886
6886
  * messages from your end recipients.</p>
6887
6887
  * @public
6888
6888
  */
6889
- TwoWayEnabled?: boolean;
6889
+ TwoWayEnabled?: boolean | undefined;
6890
6890
  /**
6891
6891
  * <p>The Amazon Resource Name (ARN) of the two way channel.</p>
6892
6892
  * @public
6893
6893
  */
6894
- TwoWayChannelArn?: string;
6894
+ TwoWayChannelArn?: string | undefined;
6895
6895
  /**
6896
6896
  * <p>An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.</p>
6897
6897
  * @public
6898
6898
  */
6899
- TwoWayChannelRole?: string;
6899
+ TwoWayChannelRole?: string | undefined;
6900
6900
  /**
6901
6901
  * <p>This is true if self managed opt-out are enabled.</p>
6902
6902
  * @public
6903
6903
  */
6904
- SelfManagedOptOutsEnabled?: boolean;
6904
+ SelfManagedOptOutsEnabled?: boolean | undefined;
6905
6905
  /**
6906
6906
  * <p>The name of the OptOutList associated with the phone number.</p>
6907
6907
  * @public
6908
6908
  */
6909
- OptOutListName?: string;
6909
+ OptOutListName?: string | undefined;
6910
6910
  /**
6911
6911
  * <p>When set to true the phone number can't be deleted.</p>
6912
6912
  * @public
6913
6913
  */
6914
- DeletionProtectionEnabled?: boolean;
6914
+ DeletionProtectionEnabled?: boolean | undefined;
6915
6915
  /**
6916
6916
  * <p>The unique identifier for the registration.</p>
6917
6917
  * @public
6918
6918
  */
6919
- RegistrationId?: string;
6919
+ RegistrationId?: string | undefined;
6920
6920
  /**
6921
6921
  * <p>The time when the phone number was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
6922
6922
  * @public
6923
6923
  */
6924
- CreatedTimestamp?: Date;
6924
+ CreatedTimestamp?: Date | undefined;
6925
6925
  }
6926
6926
  /**
6927
6927
  * @public
@@ -6941,17 +6941,17 @@ export interface UpdatePoolRequest {
6941
6941
  * messages from your end recipients.</p>
6942
6942
  * @public
6943
6943
  */
6944
- TwoWayEnabled?: boolean;
6944
+ TwoWayEnabled?: boolean | undefined;
6945
6945
  /**
6946
6946
  * <p>The Amazon Resource Name (ARN) of the two way channel.</p>
6947
6947
  * @public
6948
6948
  */
6949
- TwoWayChannelArn?: string;
6949
+ TwoWayChannelArn?: string | undefined;
6950
6950
  /**
6951
6951
  * <p>An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.</p>
6952
6952
  * @public
6953
6953
  */
6954
- TwoWayChannelRole?: string;
6954
+ TwoWayChannelRole?: string | undefined;
6955
6955
  /**
6956
6956
  * <p>By default this is set to false. When an end recipient sends a message that begins
6957
6957
  * with HELP or STOP to one of your dedicated numbers, AWS End User Messaging SMS and Voice automatically
@@ -6960,7 +6960,7 @@ export interface UpdatePoolRequest {
6960
6960
  * responsible for tracking and honoring opt-out requests.</p>
6961
6961
  * @public
6962
6962
  */
6963
- SelfManagedOptOutsEnabled?: boolean;
6963
+ SelfManagedOptOutsEnabled?: boolean | undefined;
6964
6964
  /**
6965
6965
  * <p>The OptOutList to associate with the pool. Valid values are either OptOutListName or
6966
6966
  * OptOutListArn.</p>
@@ -6969,17 +6969,17 @@ export interface UpdatePoolRequest {
6969
6969
  * </important>
6970
6970
  * @public
6971
6971
  */
6972
- OptOutListName?: string;
6972
+ OptOutListName?: string | undefined;
6973
6973
  /**
6974
6974
  * <p>Indicates whether shared routes are enabled for the pool.</p>
6975
6975
  * @public
6976
6976
  */
6977
- SharedRoutesEnabled?: boolean;
6977
+ SharedRoutesEnabled?: boolean | undefined;
6978
6978
  /**
6979
6979
  * <p>When set to true the pool can't be deleted.</p>
6980
6980
  * @public
6981
6981
  */
6982
- DeletionProtectionEnabled?: boolean;
6982
+ DeletionProtectionEnabled?: boolean | undefined;
6983
6983
  }
6984
6984
  /**
6985
6985
  * @public
@@ -6989,38 +6989,38 @@ export interface UpdatePoolResult {
6989
6989
  * <p>The ARN of the pool.</p>
6990
6990
  * @public
6991
6991
  */
6992
- PoolArn?: string;
6992
+ PoolArn?: string | undefined;
6993
6993
  /**
6994
6994
  * <p>The unique identifier of the pool.</p>
6995
6995
  * @public
6996
6996
  */
6997
- PoolId?: string;
6997
+ PoolId?: string | undefined;
6998
6998
  /**
6999
6999
  * <p>The current status of the pool update request.</p>
7000
7000
  * @public
7001
7001
  */
7002
- Status?: PoolStatus;
7002
+ Status?: PoolStatus | undefined;
7003
7003
  /**
7004
7004
  * <p>The type of message for the pool to use.</p>
7005
7005
  * @public
7006
7006
  */
7007
- MessageType?: MessageType;
7007
+ MessageType?: MessageType | undefined;
7008
7008
  /**
7009
7009
  * <p>By default this is set to false. When set to true you can receive incoming text
7010
7010
  * messages from your end recipients.</p>
7011
7011
  * @public
7012
7012
  */
7013
- TwoWayEnabled?: boolean;
7013
+ TwoWayEnabled?: boolean | undefined;
7014
7014
  /**
7015
7015
  * <p>The Amazon Resource Name (ARN) of the two way channel.</p>
7016
7016
  * @public
7017
7017
  */
7018
- TwoWayChannelArn?: string;
7018
+ TwoWayChannelArn?: string | undefined;
7019
7019
  /**
7020
7020
  * <p>An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.</p>
7021
7021
  * @public
7022
7022
  */
7023
- TwoWayChannelRole?: string;
7023
+ TwoWayChannelRole?: string | undefined;
7024
7024
  /**
7025
7025
  * <p>When an end recipient sends a message that begins with HELP or STOP to one of your
7026
7026
  * dedicated numbers, AWS End User Messaging SMS and Voice automatically replies with a customizable message
@@ -7029,27 +7029,27 @@ export interface UpdatePoolResult {
7029
7029
  * opt-out requests.</p>
7030
7030
  * @public
7031
7031
  */
7032
- SelfManagedOptOutsEnabled?: boolean;
7032
+ SelfManagedOptOutsEnabled?: boolean | undefined;
7033
7033
  /**
7034
7034
  * <p>The name of the OptOutList associated with the pool.</p>
7035
7035
  * @public
7036
7036
  */
7037
- OptOutListName?: string;
7037
+ OptOutListName?: string | undefined;
7038
7038
  /**
7039
7039
  * <p>Indicates whether shared routes are enabled for the pool.</p>
7040
7040
  * @public
7041
7041
  */
7042
- SharedRoutesEnabled?: boolean;
7042
+ SharedRoutesEnabled?: boolean | undefined;
7043
7043
  /**
7044
7044
  * <p>When set to true the pool can't be deleted.</p>
7045
7045
  * @public
7046
7046
  */
7047
- DeletionProtectionEnabled?: boolean;
7047
+ DeletionProtectionEnabled?: boolean | undefined;
7048
7048
  /**
7049
7049
  * <p>The time when the pool was created, in <a href="https://www.epochconverter.com/">UNIX epoch time</a> format.</p>
7050
7050
  * @public
7051
7051
  */
7052
- CreatedTimestamp?: Date;
7052
+ CreatedTimestamp?: Date | undefined;
7053
7053
  }
7054
7054
  /**
7055
7055
  * @public
@@ -7065,7 +7065,7 @@ export interface UpdateProtectConfigurationRequest {
7065
7065
  * </p>
7066
7066
  * @public
7067
7067
  */
7068
- DeletionProtectionEnabled?: boolean;
7068
+ DeletionProtectionEnabled?: boolean | undefined;
7069
7069
  }
7070
7070
  /**
7071
7071
  * @public
@@ -7162,7 +7162,7 @@ export interface UpdateSenderIdRequest {
7162
7162
  * <p>By default this is set to false. When set to true the sender ID can't be deleted.</p>
7163
7163
  * @public
7164
7164
  */
7165
- DeletionProtectionEnabled?: boolean;
7165
+ DeletionProtectionEnabled?: boolean | undefined;
7166
7166
  }
7167
7167
  /**
7168
7168
  * @public
@@ -7209,7 +7209,7 @@ export interface UpdateSenderIdResult {
7209
7209
  * <p>The unique identifier for the registration.</p>
7210
7210
  * @public
7211
7211
  */
7212
- RegistrationId?: string;
7212
+ RegistrationId?: string | undefined;
7213
7213
  }
7214
7214
  /**
7215
7215
  * @public