aws-sdk 2.1363.0 → 2.1365.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 +14 -1
- package/README.md +3 -1
- package/apis/chime-sdk-messaging-2021-05-15.min.json +4 -9
- package/apis/connect-2017-08-08.min.json +1279 -275
- package/apis/connect-2017-08-08.paginators.json +17 -0
- package/apis/datasync-2018-11-09.min.json +782 -113
- package/apis/datasync-2018-11-09.paginators.json +23 -0
- package/apis/ds-2015-04-16.min.json +8 -7
- package/apis/ec2-2016-11-15.min.json +1234 -1215
- package/apis/mediaconvert-2017-08-29.min.json +183 -155
- package/apis/pinpoint-2016-12-01.examples.json +98 -0
- package/apis/pinpoint-2016-12-01.min.json +233 -23
- package/clients/chimesdkmessaging.d.ts +0 -12
- package/clients/codecatalyst.d.ts +11 -11
- package/clients/connect.d.ts +1119 -89
- package/clients/datasync.d.ts +857 -10
- package/clients/directoryservice.d.ts +7 -2
- package/clients/ec2.d.ts +140 -115
- package/clients/mediaconvert.d.ts +67 -33
- package/clients/pinpoint.d.ts +208 -23
- package/clients/rekognition.d.ts +4 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +10 -10
- package/dist/aws-sdk.js +2542 -1502
- package/dist/aws-sdk.min.js +79 -79
- package/lib/core.js +1 -1
- package/package.json +1 -1
| @@ -1406,6 +1406,7 @@ declare namespace DirectoryService { | |
| 1406 1406 | 
             
              export type Description = string;
         | 
| 1407 1407 | 
             
              export type DesiredNumberOfDomainControllers = number;
         | 
| 1408 1408 | 
             
              export type DirectoryConfigurationSettingAllowedValues = string;
         | 
| 1409 | 
            +
              export type DirectoryConfigurationSettingDataType = string;
         | 
| 1409 1410 | 
             
              export type DirectoryConfigurationSettingLastRequestedDateTime = Date;
         | 
| 1410 1411 | 
             
              export type DirectoryConfigurationSettingLastUpdatedDateTime = Date;
         | 
| 1411 1412 | 
             
              export type DirectoryConfigurationSettingName = string;
         | 
| @@ -2322,7 +2323,7 @@ declare namespace DirectoryService { | |
| 2322 2323 | 
             
              export type SettingEntries = SettingEntry[];
         | 
| 2323 2324 | 
             
              export interface SettingEntry {
         | 
| 2324 2325 | 
             
                /**
         | 
| 2325 | 
            -
                 * The type of directory setting. For example, Protocol or  | 
| 2326 | 
            +
                 * The type, or category, of a directory setting. Similar settings have the same type. For example, Protocol, Cipher, or Certificate-Based Authentication.
         | 
| 2326 2327 | 
             
                 */
         | 
| 2327 2328 | 
             
                Type?: DirectoryConfigurationSettingType;
         | 
| 2328 2329 | 
             
                /**
         | 
| @@ -2330,7 +2331,7 @@ declare namespace DirectoryService { | |
| 2330 2331 | 
             
                 */
         | 
| 2331 2332 | 
             
                Name?: DirectoryConfigurationSettingName;
         | 
| 2332 2333 | 
             
                /**
         | 
| 2333 | 
            -
                 * The valid range of values for the directory setting.
         | 
| 2334 | 
            +
                 * The valid range of values for the directory setting. These values depend on the DataType of your directory.
         | 
| 2334 2335 | 
             
                 */
         | 
| 2335 2336 | 
             
                AllowedValues?: DirectoryConfigurationSettingAllowedValues;
         | 
| 2336 2337 | 
             
                /**
         | 
| @@ -2361,6 +2362,10 @@ declare namespace DirectoryService { | |
| 2361 2362 | 
             
                 * The date and time when the request to update a directory setting was last submitted.
         | 
| 2362 2363 | 
             
                 */
         | 
| 2363 2364 | 
             
                LastRequestedDateTime?: DirectoryConfigurationSettingLastRequestedDateTime;
         | 
| 2365 | 
            +
                /**
         | 
| 2366 | 
            +
                 * The data type of a directory setting. This is used to define the AllowedValues of a setting. For example a data type can be Boolean, DurationInSeconds, or Enum.
         | 
| 2367 | 
            +
                 */
         | 
| 2368 | 
            +
                DataType?: DirectoryConfigurationSettingDataType;
         | 
| 2364 2369 | 
             
              }
         | 
| 2365 2370 | 
             
              export type Settings = Setting[];
         | 
| 2366 2371 | 
             
              export interface ShareDirectoryRequest {
         |