aws-sdk 2.1357.0 → 2.1359.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.
- package/CHANGELOG.md +9 -1
- package/README.md +1 -1
- package/apis/chime-sdk-voice-2022-08-03.min.json +93 -86
- package/apis/mediaconnect-2018-11-14.min.json +1604 -287
- package/apis/mediaconnect-2018-11-14.paginators.json +18 -0
- package/apis/rds-2014-10-31.min.json +5 -1
- package/clients/chimesdkvoice.d.ts +15 -3
- package/clients/ecs.d.ts +1 -1
- package/clients/lambda.d.ts +4 -4
- package/clients/mediaconnect.d.ts +1008 -19
- package/clients/migrationhubrefactorspaces.d.ts +9 -9
- package/clients/rds.d.ts +9 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +8 -4
- package/dist/aws-sdk.min.js +21 -21
- package/lib/core.js +1 -1
- package/package.json +1 -1
| @@ -1,5 +1,11 @@ | |
| 1 1 | 
             
            {
         | 
| 2 2 | 
             
              "pagination" : {
         | 
| 3 | 
            +
                "ListBridges" : {
         | 
| 4 | 
            +
                  "input_token" : "NextToken",
         | 
| 5 | 
            +
                  "output_token" : "NextToken",
         | 
| 6 | 
            +
                  "limit_key" : "MaxResults",
         | 
| 7 | 
            +
                  "result_key" : "Bridges"
         | 
| 8 | 
            +
                },
         | 
| 3 9 | 
             
                "ListEntitlements" : {
         | 
| 4 10 | 
             
                  "input_token" : "NextToken",
         | 
| 5 11 | 
             
                  "output_token" : "NextToken",
         | 
| @@ -12,6 +18,18 @@ | |
| 12 18 | 
             
                  "limit_key" : "MaxResults",
         | 
| 13 19 | 
             
                  "result_key" : "Flows"
         | 
| 14 20 | 
             
                },
         | 
| 21 | 
            +
                "ListGatewayInstances" : {
         | 
| 22 | 
            +
                  "input_token" : "NextToken",
         | 
| 23 | 
            +
                  "output_token" : "NextToken",
         | 
| 24 | 
            +
                  "limit_key" : "MaxResults",
         | 
| 25 | 
            +
                  "result_key" : "Instances"
         | 
| 26 | 
            +
                },
         | 
| 27 | 
            +
                "ListGateways" : {
         | 
| 28 | 
            +
                  "input_token" : "NextToken",
         | 
| 29 | 
            +
                  "output_token" : "NextToken",
         | 
| 30 | 
            +
                  "limit_key" : "MaxResults",
         | 
| 31 | 
            +
                  "result_key" : "Gateways"
         | 
| 32 | 
            +
                },
         | 
| 15 33 | 
             
                "ListOfferings" : {
         | 
| 16 34 | 
             
                  "input_token" : "NextToken",
         | 
| 17 35 | 
             
                  "output_token" : "NextToken",
         | 
| @@ -3140,7 +3140,11 @@ | |
| 3140 3140 | 
             
                      "RotateMasterUserPassword": {
         | 
| 3141 3141 | 
             
                        "type": "boolean"
         | 
| 3142 3142 | 
             
                      },
         | 
| 3143 | 
            -
                      "MasterUserSecretKmsKeyId": {}
         | 
| 3143 | 
            +
                      "MasterUserSecretKmsKeyId": {},
         | 
| 3144 | 
            +
                      "EngineMode": {},
         | 
| 3145 | 
            +
                      "AllowEngineModeChange": {
         | 
| 3146 | 
            +
                        "type": "boolean"
         | 
| 3147 | 
            +
                      }
         | 
| 3144 3148 | 
             
                    }
         | 
| 3145 3149 | 
             
                  },
         | 
| 3146 3150 | 
             
                  "output": {
         | 
| @@ -1011,6 +1011,10 @@ declare namespace ChimeSDKVoice { | |
| 1011 1011 | 
             
                 * List of endpoints (Lambda ARNs) specified for the SIP media application.
         | 
| 1012 1012 | 
             
                 */
         | 
| 1013 1013 | 
             
                Endpoints: SipMediaApplicationEndpointList;
         | 
| 1014 | 
            +
                /**
         | 
| 1015 | 
            +
                 * The tags assigned to the SIP media application.
         | 
| 1016 | 
            +
                 */
         | 
| 1017 | 
            +
                Tags?: TagList;
         | 
| 1014 1018 | 
             
              }
         | 
| 1015 1019 | 
             
              export interface CreateSipMediaApplicationResponse {
         | 
| 1016 1020 | 
             
                /**
         | 
| @@ -1075,6 +1079,10 @@ declare namespace ChimeSDKVoice { | |
| 1075 1079 | 
             
                 * Enables or disables encryption for the Voice Connector.
         | 
| 1076 1080 | 
             
                 */
         | 
| 1077 1081 | 
             
                RequireEncryption: Boolean;
         | 
| 1082 | 
            +
                /**
         | 
| 1083 | 
            +
                 * The tags assigned to the Voice Connector.
         | 
| 1084 | 
            +
                 */
         | 
| 1085 | 
            +
                Tags?: TagList;
         | 
| 1078 1086 | 
             
              }
         | 
| 1079 1087 | 
             
              export interface CreateVoiceConnectorResponse {
         | 
| 1080 1088 | 
             
                /**
         | 
| @@ -1286,7 +1294,7 @@ declare namespace ChimeSDKVoice { | |
| 1286 1294 | 
             
              export type GeoMatchLevel = "Country"|"AreaCode"|string;
         | 
| 1287 1295 | 
             
              export interface GeoMatchParams {
         | 
| 1288 1296 | 
             
                /**
         | 
| 1289 | 
            -
                 * The country. | 
| 1297 | 
            +
                 * The country.
         | 
| 1290 1298 | 
             
                 */
         | 
| 1291 1299 | 
             
                Country: Country;
         | 
| 1292 1300 | 
             
                /**
         | 
| @@ -1826,7 +1834,7 @@ declare namespace ChimeSDKVoice { | |
| 1826 1834 | 
             
              }
         | 
| 1827 1835 | 
             
              export interface LoggingConfiguration {
         | 
| 1828 1836 | 
             
                /**
         | 
| 1829 | 
            -
                 * Boolean that enables sending SIP message logs to Amazon CloudWatch | 
| 1837 | 
            +
                 * Boolean that enables sending SIP message logs to Amazon CloudWatch.
         | 
| 1830 1838 | 
             
                 */
         | 
| 1831 1839 | 
             
                EnableSIPLogs?: Boolean;
         | 
| 1832 1840 | 
             
                /**
         | 
| @@ -2388,7 +2396,7 @@ declare namespace ChimeSDKVoice { | |
| 2388 2396 | 
             
                 */
         | 
| 2389 2397 | 
             
                Name?: SipMediaApplicationName;
         | 
| 2390 2398 | 
             
                /**
         | 
| 2391 | 
            -
                 * List of endpoints for SIP media application. Currently, only one endpoint per SIP media application is permitted.
         | 
| 2399 | 
            +
                 * List of endpoints for a SIP media application. Currently, only one endpoint per SIP media application is permitted.
         | 
| 2392 2400 | 
             
                 */
         | 
| 2393 2401 | 
             
                Endpoints?: SipMediaApplicationEndpointList;
         | 
| 2394 2402 | 
             
                /**
         | 
| @@ -2399,6 +2407,10 @@ declare namespace ChimeSDKVoice { | |
| 2399 2407 | 
             
                 * The time at which the SIP media application was updated.
         | 
| 2400 2408 | 
             
                 */
         | 
| 2401 2409 | 
             
                UpdatedTimestamp?: Iso8601Timestamp;
         | 
| 2410 | 
            +
                /**
         | 
| 2411 | 
            +
                 * The ARN of the SIP media application.
         | 
| 2412 | 
            +
                 */
         | 
| 2413 | 
            +
                SipMediaApplicationArn?: NonEmptyString;
         | 
| 2402 2414 | 
             
              }
         | 
| 2403 2415 | 
             
              export interface SipMediaApplicationAlexaSkillConfiguration {
         | 
| 2404 2416 | 
             
                /**
         | 
    
        package/clients/ecs.d.ts
    CHANGED
    
    | @@ -932,7 +932,7 @@ declare namespace ECS { | |
| 932 932 | 
             
                 */
         | 
| 933 933 | 
             
                extraHosts?: HostEntryList;
         | 
| 934 934 | 
             
                /**
         | 
| 935 | 
            -
                 * A list of strings to provide custom  | 
| 935 | 
            +
                 * A list of strings to provide custom configuration for multiple security systems. For more information about valid values, see Docker Run Security Configuration. This field isn't valid for containers in tasks using the Fargate launch type. For Linux tasks on EC2, this parameter can be used to reference custom labels for SELinux and AppArmor multi-level security systems. For any tasks on EC2, this parameter can be used to reference a credential spec file that configures a container for Active Directory authentication. For more information, see Using gMSAs for Windows Containers and Using gMSAs for Linux Containers in the Amazon Elastic Container Service Developer Guide. This parameter maps to SecurityOpt in the Create a container section of the Docker Remote API and the --security-opt option to docker run.  The Amazon ECS container agent running on a container instance must register with the ECS_SELINUX_CAPABLE=true or ECS_APPARMOR_CAPABLE=true environment variables before containers placed on that instance can use these security options. For more information, see Amazon ECS Container Agent Configuration in the Amazon Elastic Container Service Developer Guide.  For more information about valid values, see Docker Run Security Configuration.  Valid values: "no-new-privileges" | "apparmor:PROFILE" | "label:value" | "credentialspec:CredentialSpecFilePath"
         | 
| 936 936 | 
             
                 */
         | 
| 937 937 | 
             
                dockerSecurityOptions?: StringList;
         | 
| 938 938 | 
             
                /**
         | 
    
        package/clients/lambda.d.ts
    CHANGED
    
    | @@ -295,11 +295,11 @@ declare class Lambda extends Service { | |
| 295 295 | 
             
               */
         | 
| 296 296 | 
             
              invokeAsync(callback?: (err: AWSError, data: Lambda.Types.InvokeAsyncResponse) => void): Request<Lambda.Types.InvokeAsyncResponse, AWSError>;
         | 
| 297 297 | 
             
              /**
         | 
| 298 | 
            -
               * Configure your Lambda functions to stream response payloads back to clients. For more information, see Configuring a Lambda function to stream responses.
         | 
| 298 | 
            +
               * Configure your Lambda functions to stream response payloads back to clients. For more information, see Configuring a Lambda function to stream responses. This operation requires permission for the lambda:InvokeFunction action. For details on how to set up permissions for cross-account invocations, see Granting function access to other accounts.
         | 
| 299 299 | 
             
               */
         | 
| 300 300 | 
             
              invokeWithResponseStream(params: Lambda.Types.InvokeWithResponseStreamRequest, callback?: (err: AWSError, data: Lambda.Types.InvokeWithResponseStreamResponse) => void): Request<Lambda.Types.InvokeWithResponseStreamResponse, AWSError>;
         | 
| 301 301 | 
             
              /**
         | 
| 302 | 
            -
               * Configure your Lambda functions to stream response payloads back to clients. For more information, see Configuring a Lambda function to stream responses.
         | 
| 302 | 
            +
               * Configure your Lambda functions to stream response payloads back to clients. For more information, see Configuring a Lambda function to stream responses. This operation requires permission for the lambda:InvokeFunction action. For details on how to set up permissions for cross-account invocations, see Granting function access to other accounts.
         | 
| 303 303 | 
             
               */
         | 
| 304 304 | 
             
              invokeWithResponseStream(callback?: (err: AWSError, data: Lambda.Types.InvokeWithResponseStreamResponse) => void): Request<Lambda.Types.InvokeWithResponseStreamResponse, AWSError>;
         | 
| 305 305 | 
             
              /**
         | 
| @@ -1360,7 +1360,7 @@ declare namespace Lambda { | |
| 1360 1360 | 
             
                 */
         | 
| 1361 1361 | 
             
                SelfManagedEventSource?: SelfManagedEventSource;
         | 
| 1362 1362 | 
             
                /**
         | 
| 1363 | 
            -
                 * (Kinesis and DynamoDB Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite. When the value is set to infinite, Lambda never discards old records. 
         | 
| 1363 | 
            +
                 * (Kinesis and DynamoDB Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite. When the value is set to infinite, Lambda never discards old records.  The minimum value that can be set is 60 seconds. 
         | 
| 1364 1364 | 
             
                 */
         | 
| 1365 1365 | 
             
                MaximumRecordAgeInSeconds?: MaximumRecordAgeInSeconds;
         | 
| 1366 1366 | 
             
                /**
         | 
| @@ -1477,7 +1477,7 @@ declare namespace Lambda { | |
| 1477 1477 | 
             
                 */
         | 
| 1478 1478 | 
             
                FunctionArn?: NameSpacedFunctionArn;
         | 
| 1479 1479 | 
             
                /**
         | 
| 1480 | 
            -
                 * The runtime  | 
| 1480 | 
            +
                 * The identifier of the function's runtime. Runtime is required if the deployment package is a .zip file archive. The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
         | 
| 1481 1481 | 
             
                 */
         | 
| 1482 1482 | 
             
                Runtime?: Runtime;
         | 
| 1483 1483 | 
             
                /**
         |