cdk-lambda-subminute 2.0.377 → 2.0.379

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.
@@ -287,11 +287,11 @@ declare class Lambda extends Service {
287
287
  */
288
288
  invoke(callback?: (err: AWSError, data: Lambda.Types.InvocationResponse) => void): Request<Lambda.Types.InvocationResponse, AWSError>;
289
289
  /**
290
- * For asynchronous function invocation, use Invoke. Invokes a function asynchronously.
290
+ * For asynchronous function invocation, use Invoke. Invokes a function asynchronously. If you do use the InvokeAsync action, note that it doesn't support the use of X-Ray active tracing. Trace ID is not propagated to the function, even if X-Ray active tracing is turned on.
291
291
  */
292
292
  invokeAsync(params: Lambda.Types.InvokeAsyncRequest, callback?: (err: AWSError, data: Lambda.Types.InvokeAsyncResponse) => void): Request<Lambda.Types.InvokeAsyncResponse, AWSError>;
293
293
  /**
294
- * For asynchronous function invocation, use Invoke. Invokes a function asynchronously.
294
+ * For asynchronous function invocation, use Invoke. Invokes a function asynchronously. If you do use the InvokeAsync action, note that it doesn't support the use of X-Ray active tracing. Trace ID is not propagated to the function, even if X-Ray active tracing is turned on.
295
295
  */
296
296
  invokeAsync(callback?: (err: AWSError, data: Lambda.Types.InvokeAsyncResponse) => void): Request<Lambda.Types.InvokeAsyncResponse, AWSError>;
297
297
  /**
@@ -892,7 +892,7 @@ declare namespace Lambda {
892
892
  }
893
893
  export interface CreateEventSourceMappingRequest {
894
894
  /**
895
- * The Amazon Resource Name (ARN) of the event source. Amazon Kinesis – The ARN of the data stream or a stream consumer. Amazon DynamoDB Streams – The ARN of the stream. Amazon Simple Queue Service – The ARN of the queue. Amazon Managed Streaming for Apache Kafka – The ARN of the cluster. Amazon MQ – The ARN of the broker. Amazon DocumentDB – The ARN of the DocumentDB change stream.
895
+ * The Amazon Resource Name (ARN) of the event source. Amazon Kinesis – The ARN of the data stream or a stream consumer. Amazon DynamoDB Streams – The ARN of the stream. Amazon Simple Queue Service – The ARN of the queue. Amazon Managed Streaming for Apache Kafka – The ARN of the cluster or the ARN of the VPC connection (for cross-account event source mappings). Amazon MQ – The ARN of the broker. Amazon DocumentDB – The ARN of the DocumentDB change stream.
896
896
  */
897
897
  EventSourceArn?: Arn;
898
898
  /**
@@ -928,7 +928,7 @@ declare namespace Lambda {
928
928
  */
929
929
  StartingPositionTimestamp?: _Date;
930
930
  /**
931
- * (Kinesis and DynamoDB Streams only) A standard Amazon SQS queue or standard Amazon SNS topic destination for discarded records.
931
+ * (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Kafka only) A configuration object that specifies the destination of an event after Lambda processes it.
932
932
  */
933
933
  DestinationConfig?: DestinationConfig;
934
934
  /**
@@ -1070,7 +1070,7 @@ declare namespace Lambda {
1070
1070
  */
1071
1071
  Architectures?: ArchitecturesList;
1072
1072
  /**
1073
- * The size of the function's /tmp directory in MB. The default value is 512, but can be any whole number between 512 and 10,240 MB.
1073
+ * The size of the function's /tmp directory in MB. The default value is 512, but can be any whole number between 512 and 10,240 MB. For more information, see Configuring ephemeral storage (console).
1074
1074
  */
1075
1075
  EphemeralStorage?: EphemeralStorage;
1076
1076
  /**
@@ -1602,7 +1602,7 @@ declare namespace Lambda {
1602
1602
  */
1603
1603
  Architectures?: ArchitecturesList;
1604
1604
  /**
1605
- * The size of the functions /tmp directory in MB. The default value is 512, but it can be any whole number between 512 and 10,240 MB.
1605
+ * The size of the function's /tmp directory in MB. The default value is 512, but can be any whole number between 512 and 10,240 MB. For more information, see Configuring ephemeral storage (console).
1606
1606
  */
1607
1607
  EphemeralStorage?: EphemeralStorage;
1608
1608
  /**
@@ -2043,7 +2043,7 @@ declare namespace Lambda {
2043
2043
  */
2044
2044
  LogType?: LogType;
2045
2045
  /**
2046
- * Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the function in the context object.
2046
+ * Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the function in the context object. Lambda passes the ClientContext object to your function for synchronous invocations only.
2047
2047
  */
2048
2048
  ClientContext?: String;
2049
2049
  /**
@@ -2327,7 +2327,7 @@ declare namespace Lambda {
2327
2327
  }
2328
2328
  export interface ListEventSourceMappingsRequest {
2329
2329
  /**
2330
- * The Amazon Resource Name (ARN) of the event source. Amazon Kinesis – The ARN of the data stream or a stream consumer. Amazon DynamoDB Streams – The ARN of the stream. Amazon Simple Queue Service – The ARN of the queue. Amazon Managed Streaming for Apache Kafka – The ARN of the cluster. Amazon MQ – The ARN of the broker. Amazon DocumentDB – The ARN of the DocumentDB change stream.
2330
+ * The Amazon Resource Name (ARN) of the event source. Amazon Kinesis – The ARN of the data stream or a stream consumer. Amazon DynamoDB Streams – The ARN of the stream. Amazon Simple Queue Service – The ARN of the queue. Amazon Managed Streaming for Apache Kafka – The ARN of the cluster or the ARN of the VPC connection (for cross-account event source mappings). Amazon MQ – The ARN of the broker. Amazon DocumentDB – The ARN of the DocumentDB change stream.
2331
2331
  */
2332
2332
  EventSourceArn?: Arn;
2333
2333
  /**
@@ -2455,7 +2455,7 @@ declare namespace Lambda {
2455
2455
  }
2456
2456
  export interface ListLayerVersionsRequest {
2457
2457
  /**
2458
- * A runtime identifier. For example, go1.x. The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
2458
+ * A runtime identifier. For example, java21. The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
2459
2459
  */
2460
2460
  CompatibleRuntime?: Runtime;
2461
2461
  /**
@@ -2487,7 +2487,7 @@ declare namespace Lambda {
2487
2487
  }
2488
2488
  export interface ListLayersRequest {
2489
2489
  /**
2490
- * A runtime identifier. For example, go1.x. The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
2490
+ * A runtime identifier. For example, java21. The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
2491
2491
  */
2492
2492
  CompatibleRuntime?: Runtime;
2493
2493
  /**
@@ -2583,11 +2583,11 @@ declare namespace Lambda {
2583
2583
  */
2584
2584
  LogFormat?: LogFormat;
2585
2585
  /**
2586
- * Set this property to filter the application logs for your function that Lambda sends to CloudWatch. Lambda only sends application logs at the selected level and lower.
2586
+ * Set this property to filter the application logs for your function that Lambda sends to CloudWatch. Lambda only sends application logs at the selected level of detail and lower, where TRACE is the highest level and FATAL is the lowest.
2587
2587
  */
2588
2588
  ApplicationLogLevel?: ApplicationLogLevel;
2589
2589
  /**
2590
- * Set this property to filter the system logs for your function that Lambda sends to CloudWatch. Lambda only sends system logs at the selected level and lower.
2590
+ * Set this property to filter the system logs for your function that Lambda sends to CloudWatch. Lambda only sends system logs at the selected level of detail and lower, where DEBUG is the highest level and WARN is the lowest.
2591
2591
  */
2592
2592
  SystemLogLevel?: SystemLogLevel;
2593
2593
  /**
@@ -2618,7 +2618,7 @@ declare namespace Lambda {
2618
2618
  export type NullableBoolean = boolean;
2619
2619
  export interface OnFailure {
2620
2620
  /**
2621
- * The Amazon Resource Name (ARN) of the destination resource.
2621
+ * The Amazon Resource Name (ARN) of the destination resource. To retain records of asynchronous invocations, you can configure an Amazon SNS topic, Amazon SQS queue, Lambda function, or Amazon EventBridge event bus as the destination. To retain records of failed invocations from Kinesis and DynamoDB event sources, you can configure an Amazon SNS topic or Amazon SQS queue as the destination. To retain records of failed invocations from self-managed Kafka or Amazon MSK, you can configure an Amazon SNS topic or Amazon SQS queue as the destination.
2622
2622
  */
2623
2623
  Destination?: DestinationArn;
2624
2624
  }
@@ -3124,7 +3124,7 @@ declare namespace Lambda {
3124
3124
  */
3125
3125
  MaximumBatchingWindowInSeconds?: MaximumBatchingWindowInSeconds;
3126
3126
  /**
3127
- * (Kinesis and DynamoDB Streams only) A standard Amazon SQS queue or standard Amazon SNS topic destination for discarded records.
3127
+ * (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Kafka only) A configuration object that specifies the destination of an event after Lambda processes it.
3128
3128
  */
3129
3129
  DestinationConfig?: DestinationConfig;
3130
3130
  /**
@@ -3272,7 +3272,7 @@ declare namespace Lambda {
3272
3272
  */
3273
3273
  ImageConfig?: ImageConfig;
3274
3274
  /**
3275
- * The size of the function's /tmp directory in MB. The default value is 512, but can be any whole number between 512 and 10,240 MB.
3275
+ * The size of the function's /tmp directory in MB. The default value is 512, but can be any whole number between 512 and 10,240 MB. For more information, see Configuring ephemeral storage (console).
3276
3276
  */
3277
3277
  EphemeralStorage?: EphemeralStorage;
3278
3278
  /**
@@ -2047,7 +2047,7 @@ declare namespace RDS {
2047
2047
  */
2048
2048
  DatabaseName?: String;
2049
2049
  /**
2050
- * The identifier for this DB cluster. This parameter is stored as a lowercase string. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Constraints: Must contain from 1 to 63 letters, numbers, or hyphens. First character must be a letter. Can't end with a hyphen or contain two consecutive hyphens. Example: my-cluster1
2050
+ * The identifier for this DB cluster. This parameter is stored as a lowercase string. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Constraints: Must contain from 1 to 63 (for Aurora DB clusters) or 1 to 52 (for Multi-AZ DB clusters) letters, numbers, or hyphens. First character must be a letter. Can't end with a hyphen or contain two consecutive hyphens. Example: my-cluster1
2051
2051
  */
2052
2052
  DBClusterIdentifier: String;
2053
2053
  /**
@@ -2246,7 +2246,7 @@ declare namespace RDS {
2246
2246
  */
2247
2247
  DBClusterParameterGroupName: String;
2248
2248
  /**
2249
- * The DB cluster parameter group family name. A DB cluster parameter group can be associated with one and only one DB cluster parameter group family, and can be applied only to a DB cluster running a database engine and engine version compatible with that DB cluster parameter group family. Aurora MySQL Example: aurora-mysql5.7, aurora-mysql8.0 Aurora PostgreSQL Example: aurora-postgresql14 RDS for MySQL Example: mysql8.0 RDS for PostgreSQL Example: postgres12 To list all of the available parameter group families for a DB engine, use the following command: aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine &lt;engine&gt; For example, to list all of the available parameter group families for the Aurora PostgreSQL DB engine, use the following command: aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine aurora-postgresql The output contains duplicates. The following are the valid DB engine values: aurora-mysql aurora-postgresql mysql postgres
2249
+ * The DB cluster parameter group family name. A DB cluster parameter group can be associated with one and only one DB cluster parameter group family, and can be applied only to a DB cluster running a database engine and engine version compatible with that DB cluster parameter group family. Aurora MySQL Example: aurora-mysql5.7, aurora-mysql8.0 Aurora PostgreSQL Example: aurora-postgresql14 RDS for MySQL Example: mysql8.0 RDS for PostgreSQL Example: postgres13 To list all of the available parameter group families for a DB engine, use the following command: aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine &lt;engine&gt; For example, to list all of the available parameter group families for the Aurora PostgreSQL DB engine, use the following command: aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine aurora-postgresql The output contains duplicates. The following are the valid DB engine values: aurora-mysql aurora-postgresql mysql postgres
2250
2250
  */
2251
2251
  DBParameterGroupFamily: String;
2252
2252
  /**
@@ -36,11 +36,11 @@ declare class SNS extends Service {
36
36
  */
37
37
  confirmSubscription(callback?: (err: AWSError, data: SNS.Types.ConfirmSubscriptionResponse) => void): Request<SNS.Types.ConfirmSubscriptionResponse, AWSError>;
38
38
  /**
39
- * Creates a platform application object for one of the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging), to which devices and mobile apps may register. You must specify PlatformPrincipal and PlatformCredential attributes when using the CreatePlatformApplication action. PlatformPrincipal and PlatformCredential are received from the notification service. For ADM, PlatformPrincipal is client id and PlatformCredential is client secret. For Baidu, PlatformPrincipal is API key and PlatformCredential is secret key. For APNS and APNS_SANDBOX using certificate credentials, PlatformPrincipal is SSL certificate and PlatformCredential is private key. For APNS and APNS_SANDBOX using token credentials, PlatformPrincipal is signing key ID and PlatformCredential is signing key. For GCM (Firebase Cloud Messaging), there is no PlatformPrincipal and the PlatformCredential is API key. For MPNS, PlatformPrincipal is TLS certificate and PlatformCredential is private key. For WNS, PlatformPrincipal is Package Security Identifier and PlatformCredential is secret key. You can use the returned PlatformApplicationArn as an attribute for the CreatePlatformEndpoint action.
39
+ * Creates a platform application object for one of the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging), to which devices and mobile apps may register. You must specify PlatformPrincipal and PlatformCredential attributes when using the CreatePlatformApplication action. PlatformPrincipal and PlatformCredential are received from the notification service. For ADM, PlatformPrincipal is client id and PlatformCredential is client secret. For Baidu, PlatformPrincipal is API key and PlatformCredential is secret key. For APNS and APNS_SANDBOX using certificate credentials, PlatformPrincipal is SSL certificate and PlatformCredential is private key. For APNS and APNS_SANDBOX using token credentials, PlatformPrincipal is signing key ID and PlatformCredential is signing key. For GCM (Firebase Cloud Messaging) using key credentials, there is no PlatformPrincipal. The PlatformCredential is API key. For GCM (Firebase Cloud Messaging) using token credentials, there is no PlatformPrincipal. The PlatformCredential is a JSON formatted private key file. When using the Amazon Web Services CLI, the file must be in string format and special characters must be ignored. To format the file correctly, Amazon SNS recommends using the following command: SERVICE_JSON=`jq @json &lt;&lt;&lt; cat service.json`. For MPNS, PlatformPrincipal is TLS certificate and PlatformCredential is private key. For WNS, PlatformPrincipal is Package Security Identifier and PlatformCredential is secret key. You can use the returned PlatformApplicationArn as an attribute for the CreatePlatformEndpoint action.
40
40
  */
41
41
  createPlatformApplication(params: SNS.Types.CreatePlatformApplicationInput, callback?: (err: AWSError, data: SNS.Types.CreatePlatformApplicationResponse) => void): Request<SNS.Types.CreatePlatformApplicationResponse, AWSError>;
42
42
  /**
43
- * Creates a platform application object for one of the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging), to which devices and mobile apps may register. You must specify PlatformPrincipal and PlatformCredential attributes when using the CreatePlatformApplication action. PlatformPrincipal and PlatformCredential are received from the notification service. For ADM, PlatformPrincipal is client id and PlatformCredential is client secret. For Baidu, PlatformPrincipal is API key and PlatformCredential is secret key. For APNS and APNS_SANDBOX using certificate credentials, PlatformPrincipal is SSL certificate and PlatformCredential is private key. For APNS and APNS_SANDBOX using token credentials, PlatformPrincipal is signing key ID and PlatformCredential is signing key. For GCM (Firebase Cloud Messaging), there is no PlatformPrincipal and the PlatformCredential is API key. For MPNS, PlatformPrincipal is TLS certificate and PlatformCredential is private key. For WNS, PlatformPrincipal is Package Security Identifier and PlatformCredential is secret key. You can use the returned PlatformApplicationArn as an attribute for the CreatePlatformEndpoint action.
43
+ * Creates a platform application object for one of the supported push notification services, such as APNS and GCM (Firebase Cloud Messaging), to which devices and mobile apps may register. You must specify PlatformPrincipal and PlatformCredential attributes when using the CreatePlatformApplication action. PlatformPrincipal and PlatformCredential are received from the notification service. For ADM, PlatformPrincipal is client id and PlatformCredential is client secret. For Baidu, PlatformPrincipal is API key and PlatformCredential is secret key. For APNS and APNS_SANDBOX using certificate credentials, PlatformPrincipal is SSL certificate and PlatformCredential is private key. For APNS and APNS_SANDBOX using token credentials, PlatformPrincipal is signing key ID and PlatformCredential is signing key. For GCM (Firebase Cloud Messaging) using key credentials, there is no PlatformPrincipal. The PlatformCredential is API key. For GCM (Firebase Cloud Messaging) using token credentials, there is no PlatformPrincipal. The PlatformCredential is a JSON formatted private key file. When using the Amazon Web Services CLI, the file must be in string format and special characters must be ignored. To format the file correctly, Amazon SNS recommends using the following command: SERVICE_JSON=`jq @json &lt;&lt;&lt; cat service.json`. For MPNS, PlatformPrincipal is TLS certificate and PlatformCredential is private key. For WNS, PlatformPrincipal is Package Security Identifier and PlatformCredential is secret key. You can use the returned PlatformApplicationArn as an attribute for the CreatePlatformEndpoint action.
44
44
  */
45
45
  createPlatformApplication(callback?: (err: AWSError, data: SNS.Types.CreatePlatformApplicationResponse) => void): Request<SNS.Types.CreatePlatformApplicationResponse, AWSError>;
46
46
  /**
@@ -437,19 +437,19 @@ declare namespace SNS {
437
437
  */
438
438
  Platform: String;
439
439
  /**
440
- * For a list of attributes, see SetPlatformApplicationAttributes.
440
+ * For a list of attributes, see SetPlatformApplicationAttributes .
441
441
  */
442
442
  Attributes: MapStringToString;
443
443
  }
444
444
  export interface CreatePlatformApplicationResponse {
445
445
  /**
446
- * PlatformApplicationArn is returned.
446
+ * PlatformApplicationArn is returned.
447
447
  */
448
448
  PlatformApplicationArn?: String;
449
449
  }
450
450
  export interface CreatePlatformEndpointInput {
451
451
  /**
452
- * PlatformApplicationArn returned from CreatePlatformApplication is used to create a an endpoint.
452
+ * PlatformApplicationArn returned from CreatePlatformApplication is used to create a an endpoint.
453
453
  */
454
454
  PlatformApplicationArn: String;
455
455
  /**
@@ -461,7 +461,7 @@ declare namespace SNS {
461
461
  */
462
462
  CustomUserData?: String;
463
463
  /**
464
- * For a list of attributes, see SetEndpointAttributes.
464
+ * For a list of attributes, see SetEndpointAttributes .
465
465
  */
466
466
  Attributes?: MapStringToString;
467
467
  }
@@ -504,13 +504,13 @@ declare namespace SNS {
504
504
  export type DelegatesList = delegate[];
505
505
  export interface DeleteEndpointInput {
506
506
  /**
507
- * EndpointArn of endpoint to delete.
507
+ * EndpointArn of endpoint to delete.
508
508
  */
509
509
  EndpointArn: String;
510
510
  }
511
511
  export interface DeletePlatformApplicationInput {
512
512
  /**
513
- * PlatformApplicationArn of platform application object to delete.
513
+ * PlatformApplicationArn of platform application object to delete.
514
514
  */
515
515
  PlatformApplicationArn: String;
516
516
  }
@@ -552,7 +552,7 @@ declare namespace SNS {
552
552
  }
553
553
  export interface GetEndpointAttributesInput {
554
554
  /**
555
- * EndpointArn for GetEndpointAttributes input.
555
+ * EndpointArn for GetEndpointAttributes input.
556
556
  */
557
557
  EndpointArn: String;
558
558
  }
@@ -564,13 +564,13 @@ declare namespace SNS {
564
564
  }
565
565
  export interface GetPlatformApplicationAttributesInput {
566
566
  /**
567
- * PlatformApplicationArn for GetPlatformApplicationAttributesInput.
567
+ * PlatformApplicationArn for GetPlatformApplicationAttributesInput.
568
568
  */
569
569
  PlatformApplicationArn: String;
570
570
  }
571
571
  export interface GetPlatformApplicationAttributesResponse {
572
572
  /**
573
- * Attributes include the following: AppleCertificateExpiryDate – The expiry date of the SSL certificate used to configure certificate-based authentication. ApplePlatformTeamID – The Apple developer account ID used to configure token-based authentication. ApplePlatformBundleID – The app identifier used to configure token-based authentication. EventEndpointCreated – Topic ARN to which EndpointCreated event notifications should be sent. EventEndpointDeleted – Topic ARN to which EndpointDeleted event notifications should be sent. EventEndpointUpdated – Topic ARN to which EndpointUpdate event notifications should be sent. EventDeliveryFailure – Topic ARN to which DeliveryFailure event notifications should be sent upon Direct Publish delivery failure (permanent) to one of the application's endpoints.
573
+ * Attributes include the following: AppleCertificateExpiryDate – The expiry date of the SSL certificate used to configure certificate-based authentication. ApplePlatformTeamID – The Apple developer account ID used to configure token-based authentication. ApplePlatformBundleID – The app identifier used to configure token-based authentication. AuthenticationMethod – Returns the credential type used when sending push notifications from application to APNS/APNS_Sandbox, or application to GCM. APNS – Returns the token or certificate. GCM – Returns the token or key. EventEndpointCreated – Topic ARN to which EndpointCreated event notifications should be sent. EventEndpointDeleted – Topic ARN to which EndpointDeleted event notifications should be sent. EventEndpointUpdated – Topic ARN to which EndpointUpdate event notifications should be sent. EventDeliveryFailure – Topic ARN to which DeliveryFailure event notifications should be sent upon Direct Publish delivery failure (permanent) to one of the application's endpoints.
574
574
  */
575
575
  Attributes?: MapStringToString;
576
576
  }
@@ -622,11 +622,11 @@ declare namespace SNS {
622
622
  export type LanguageCodeString = "en-US"|"en-GB"|"es-419"|"es-ES"|"de-DE"|"fr-CA"|"fr-FR"|"it-IT"|"ja-JP"|"pt-BR"|"kr-KR"|"zh-CN"|"zh-TW"|string;
623
623
  export interface ListEndpointsByPlatformApplicationInput {
624
624
  /**
625
- * PlatformApplicationArn for ListEndpointsByPlatformApplicationInput action.
625
+ * PlatformApplicationArn for ListEndpointsByPlatformApplicationInput action.
626
626
  */
627
627
  PlatformApplicationArn: String;
628
628
  /**
629
- * NextToken string is used when calling ListEndpointsByPlatformApplication action to retrieve additional records that are available after the first page results.
629
+ * NextToken string is used when calling ListEndpointsByPlatformApplication action to retrieve additional records that are available after the first page results.
630
630
  */
631
631
  NextToken?: String;
632
632
  }
@@ -636,7 +636,7 @@ declare namespace SNS {
636
636
  */
637
637
  Endpoints?: ListOfEndpoints;
638
638
  /**
639
- * NextToken string is returned when calling ListEndpointsByPlatformApplication action if additional records are available after the first page results.
639
+ * NextToken string is returned when calling ListEndpointsByPlatformApplication action if additional records are available after the first page results.
640
640
  */
641
641
  NextToken?: String;
642
642
  }
@@ -680,7 +680,7 @@ declare namespace SNS {
680
680
  }
681
681
  export interface ListPlatformApplicationsInput {
682
682
  /**
683
- * NextToken string is used when calling ListPlatformApplications action to retrieve additional records that are available after the first page results.
683
+ * NextToken string is used when calling ListPlatformApplications action to retrieve additional records that are available after the first page results.
684
684
  */
685
685
  NextToken?: String;
686
686
  }
@@ -690,7 +690,7 @@ declare namespace SNS {
690
690
  */
691
691
  PlatformApplications?: ListOfPlatformApplications;
692
692
  /**
693
- * NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.
693
+ * NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.
694
694
  */
695
695
  NextToken?: String;
696
696
  }
@@ -817,7 +817,7 @@ declare namespace SNS {
817
817
  /**
818
818
  * The phone number.
819
819
  */
820
- PhoneNumber?: String;
820
+ PhoneNumber?: PhoneNumber;
821
821
  /**
822
822
  * The status of the phone number.
823
823
  */
@@ -926,7 +926,7 @@ declare namespace SNS {
926
926
  /**
927
927
  * The phone number to which you want to deliver an SMS message. Use E.164 format. If you don't specify a value for the PhoneNumber parameter, you must specify a value for the TargetArn or TopicArn parameters.
928
928
  */
929
- PhoneNumber?: String;
929
+ PhoneNumber?: PhoneNumber;
930
930
  /**
931
931
  * The message you want to send. If you are publishing to a topic and you want to send the same message to all transport protocols, include the text of the message as a String value. If you want to send different messages for each transport protocol, set the value of the MessageStructure parameter to json and use a JSON object for the Message parameter. Constraints: With the exception of SMS, messages must be UTF-8 encoded strings and at most 256 KB in size (262,144 bytes, not 262,144 characters). For SMS, each message can contain up to 140 characters. This character limit depends on the encoding schema. For example, an SMS message can contain 160 GSM characters, 140 ASCII characters, or 70 UCS-2 characters. If you publish a message that exceeds this size limit, Amazon SNS sends the message as multiple messages, each fitting within the size limit. Messages aren't truncated mid-word but are cut off at whole-word boundaries. The total size limit for a single SMS Publish action is 1,600 characters. JSON-specific constraints: Keys in the JSON object that correspond to supported transport protocols must have simple JSON string values. The values will be parsed (unescaped) before they are used in outgoing messages. Outbound notifications are JSON encoded (meaning that the characters will be reescaped for sending). Values have a minimum length of 0 (the empty string, "", is allowed). Values have a maximum length bounded by the overall message size (so, including multiple protocols may limit message sizes). Non-string values will cause the key to be ignored. Keys that do not correspond to supported transport protocols are ignored. Duplicate keys are not allowed. Failure to parse or validate any key or value in the message will cause the Publish call to return an error (no partial delivery).
932
932
  */
@@ -1007,11 +1007,11 @@ declare namespace SNS {
1007
1007
  }
1008
1008
  export interface SetPlatformApplicationAttributesInput {
1009
1009
  /**
1010
- * PlatformApplicationArn for SetPlatformApplicationAttributes action.
1010
+ * PlatformApplicationArn for SetPlatformApplicationAttributes action.
1011
1011
  */
1012
1012
  PlatformApplicationArn: String;
1013
1013
  /**
1014
- * A map of the platform application attributes. Attributes in this map include the following: PlatformCredential – The credential received from the notification service. For ADM, PlatformCredentialis client secret. For Apple Services using certificate credentials, PlatformCredential is private key. For Apple Services using token credentials, PlatformCredential is signing key. For GCM (Firebase Cloud Messaging), PlatformCredential is API key. PlatformPrincipal – The principal received from the notification service. For ADM, PlatformPrincipalis client id. For Apple Services using certificate credentials, PlatformPrincipal is SSL certificate. For Apple Services using token credentials, PlatformPrincipal is signing key ID. For GCM (Firebase Cloud Messaging), there is no PlatformPrincipal. EventEndpointCreated – Topic ARN to which EndpointCreated event notifications are sent. EventEndpointDeleted – Topic ARN to which EndpointDeleted event notifications are sent. EventEndpointUpdated – Topic ARN to which EndpointUpdate event notifications are sent. EventDeliveryFailure – Topic ARN to which DeliveryFailure event notifications are sent upon Direct Publish delivery failure (permanent) to one of the application's endpoints. SuccessFeedbackRoleArn – IAM role ARN used to give Amazon SNS write access to use CloudWatch Logs on your behalf. FailureFeedbackRoleArn – IAM role ARN used to give Amazon SNS write access to use CloudWatch Logs on your behalf. SuccessFeedbackSampleRate – Sample rate percentage (0-100) of successfully delivered messages. The following attributes only apply to APNs token-based authentication: ApplePlatformTeamID – The identifier that's assigned to your Apple developer account team. ApplePlatformBundleID – The bundle identifier that's assigned to your iOS app.
1014
+ * A map of the platform application attributes. Attributes in this map include the following: PlatformCredential – The credential received from the notification service. For ADM, PlatformCredentialis client secret. For Apple Services using certificate credentials, PlatformCredential is private key. For Apple Services using token credentials, PlatformCredential is signing key. For GCM (Firebase Cloud Messaging) using key credentials, there is no PlatformPrincipal. The PlatformCredential is API key. For GCM (Firebase Cloud Messaging) using token credentials, there is no PlatformPrincipal. The PlatformCredential is a JSON formatted private key file. When using the Amazon Web Services CLI, the file must be in string format and special characters must be ignored. To format the file correctly, Amazon SNS recommends using the following command: SERVICE_JSON=`jq @json &lt;&lt;&lt; cat service.json`. PlatformPrincipal – The principal received from the notification service. For ADM, PlatformPrincipalis client id. For Apple Services using certificate credentials, PlatformPrincipal is SSL certificate. For Apple Services using token credentials, PlatformPrincipal is signing key ID. For GCM (Firebase Cloud Messaging), there is no PlatformPrincipal. EventEndpointCreated – Topic ARN to which EndpointCreated event notifications are sent. EventEndpointDeleted – Topic ARN to which EndpointDeleted event notifications are sent. EventEndpointUpdated – Topic ARN to which EndpointUpdate event notifications are sent. EventDeliveryFailure – Topic ARN to which DeliveryFailure event notifications are sent upon Direct Publish delivery failure (permanent) to one of the application's endpoints. SuccessFeedbackRoleArn – IAM role ARN used to give Amazon SNS write access to use CloudWatch Logs on your behalf. FailureFeedbackRoleArn – IAM role ARN used to give Amazon SNS write access to use CloudWatch Logs on your behalf. SuccessFeedbackSampleRate – Sample rate percentage (0-100) of successfully delivered messages. The following attributes only apply to APNs token-based authentication: ApplePlatformTeamID – The identifier that's assigned to your Apple developer account team. ApplePlatformBundleID – The bundle identifier that's assigned to your iOS app.
1015
1015
  */
1016
1016
  Attributes: MapStringToString;
1017
1017
  }
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1559.0',
86
+ VERSION: '2.1560.0',
87
87
 
88
88
  /**
89
89
  * @api private