aws-sdk 2.1594.0 → 2.1596.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/README.md +1 -1
- package/apis/controlcatalog-2018-05-10.examples.json +5 -0
- package/apis/controlcatalog-2018-05-10.min.json +228 -0
- package/apis/controlcatalog-2018-05-10.paginators.json +22 -0
- package/apis/mediaconvert-2017-08-29.min.json +107 -80
- package/apis/metadata.json +3 -0
- package/apis/pinpoint-2016-12-01.min.json +3 -1
- package/apis/rds-2014-10-31.min.json +7 -3
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/codebuild.d.ts +3 -3
- package/clients/controlcatalog.d.ts +260 -0
- package/clients/controlcatalog.js +18 -0
- package/clients/mediaconvert.d.ts +46 -4
- package/clients/mgn.d.ts +4 -4
- package/clients/networkmonitor.d.ts +16 -16
- package/clients/pinpoint.d.ts +10 -2
- package/clients/rds.d.ts +17 -1
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +44 -7
- package/dist/aws-sdk.js +13 -6
- package/dist/aws-sdk.min.js +39 -39
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
| @@ -4725,7 +4725,8 @@ | |
| 4725 4725 | 
             
                          },
         | 
| 4726 4726 | 
             
                          "FromAddress": {},
         | 
| 4727 4727 | 
             
                          "Identity": {},
         | 
| 4728 | 
            -
                          "RoleArn": {}
         | 
| 4728 | 
            +
                          "RoleArn": {},
         | 
| 4729 | 
            +
                          "OrchestrationSendingRoleArn": {}
         | 
| 4729 4730 | 
             
                        },
         | 
| 4730 4731 | 
             
                        "required": [
         | 
| 4731 4732 | 
             
                          "FromAddress",
         | 
| @@ -7186,6 +7187,7 @@ | |
| 7186 7187 | 
             
                    },
         | 
| 7187 7188 | 
             
                    "Platform": {},
         | 
| 7188 7189 | 
             
                    "RoleArn": {},
         | 
| 7190 | 
            +
                    "OrchestrationSendingRoleArn": {},
         | 
| 7189 7191 | 
             
                    "Version": {
         | 
| 7190 7192 | 
             
                      "type": "integer"
         | 
| 7191 7193 | 
             
                    }
         | 
| @@ -816,6 +816,7 @@ | |
| 816 816 | 
             
                      "UpgradeStorageConfig": {
         | 
| 817 817 | 
             
                        "type": "boolean"
         | 
| 818 818 | 
             
                      },
         | 
| 819 | 
            +
                      "CACertificateIdentifier": {},
         | 
| 819 820 | 
             
                      "SourceRegion": {}
         | 
| 820 821 | 
             
                    }
         | 
| 821 822 | 
             
                  },
         | 
| @@ -4859,7 +4860,8 @@ | |
| 4859 4860 | 
             
                      },
         | 
| 4860 4861 | 
             
                      "DedicatedLogVolume": {
         | 
| 4861 4862 | 
             
                        "type": "boolean"
         | 
| 4862 | 
            -
                      }
         | 
| 4863 | 
            +
                      },
         | 
| 4864 | 
            +
                      "CACertificateIdentifier": {}
         | 
| 4863 4865 | 
             
                    }
         | 
| 4864 4866 | 
             
                  },
         | 
| 4865 4867 | 
             
                  "output": {
         | 
| @@ -4981,7 +4983,8 @@ | |
| 4981 4983 | 
             
                      "MasterUserSecretKmsKeyId": {},
         | 
| 4982 4984 | 
             
                      "DedicatedLogVolume": {
         | 
| 4983 4985 | 
             
                        "type": "boolean"
         | 
| 4984 | 
            -
                      }
         | 
| 4986 | 
            +
                      },
         | 
| 4987 | 
            +
                      "CACertificateIdentifier": {}
         | 
| 4985 4988 | 
             
                    }
         | 
| 4986 4989 | 
             
                  },
         | 
| 4987 4990 | 
             
                  "output": {
         | 
| @@ -5086,7 +5089,8 @@ | |
| 5086 5089 | 
             
                      },
         | 
| 5087 5090 | 
             
                      "DedicatedLogVolume": {
         | 
| 5088 5091 | 
             
                        "type": "boolean"
         | 
| 5089 | 
            -
                      }
         | 
| 5092 | 
            +
                      },
         | 
| 5093 | 
            +
                      "CACertificateIdentifier": {}
         | 
| 5090 5094 | 
             
                    }
         | 
| 5091 5095 | 
             
                  },
         | 
| 5092 5096 | 
             
                  "output": {
         | 
    
        package/clients/all.d.ts
    CHANGED
    
    | @@ -378,3 +378,4 @@ export import Chatbot = require('./chatbot'); | |
| 378 378 | 
             
            export import TimestreamInfluxDB = require('./timestreaminfluxdb');
         | 
| 379 379 | 
             
            export import CodeConnections = require('./codeconnections');
         | 
| 380 380 | 
             
            export import Deadline = require('./deadline');
         | 
| 381 | 
            +
            export import ControlCatalog = require('./controlcatalog');
         | 
    
        package/clients/all.js
    CHANGED
    
    | @@ -379,5 +379,6 @@ module.exports = { | |
| 379 379 | 
             
              Chatbot: require('./chatbot'),
         | 
| 380 380 | 
             
              TimestreamInfluxDB: require('./timestreaminfluxdb'),
         | 
| 381 381 | 
             
              CodeConnections: require('./codeconnections'),
         | 
| 382 | 
            -
              Deadline: require('./deadline')
         | 
| 382 | 
            +
              Deadline: require('./deadline'),
         | 
| 383 | 
            +
              ControlCatalog: require('./controlcatalog')
         | 
| 383 384 | 
             
            };
         | 
    
        package/clients/codebuild.d.ts
    CHANGED
    
    | @@ -2255,7 +2255,7 @@ declare namespace CodeBuild { | |
| 2255 2255 | 
             
                 */
         | 
| 2256 2256 | 
             
                type: SourceType;
         | 
| 2257 2257 | 
             
                /**
         | 
| 2258 | 
            -
                 * Information about the location of the source code to be built. Valid values include:   For source code settings that are specified in the source action of a pipeline in CodePipeline, location should not be specified. If it is specified, CodePipeline ignores it. This is because CodePipeline uses the settings in a pipeline's source action instead of this value.   For source code in an CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.<region-ID>.amazonaws.com/v1/repos/<repo-name>).   For source code in an Amazon S3 input bucket, one of the following.    The path to the ZIP file that contains the source code (for example, <bucket-name>/<path>/<object-name>.zip).    The path to the folder that contains the source code (for example, <bucket-name>/<path-to-source-code>/<folder>/).      For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your Amazon Web Services account to your GitHub account. Use the CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access, choose Request access next to each repository you want to allow CodeBuild to have access to, and then choose Authorize application. (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the CodeBuild console.) To instruct CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH.   For source code in an GitLab or self-managed GitLab repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your Amazon Web Services account to your GitLab account. Use the CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitLab, on the Connections Authorize application page, choose Authorize. Then on the  | 
| 2258 | 
            +
                 * Information about the location of the source code to be built. Valid values include:   For source code settings that are specified in the source action of a pipeline in CodePipeline, location should not be specified. If it is specified, CodePipeline ignores it. This is because CodePipeline uses the settings in a pipeline's source action instead of this value.   For source code in an CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the buildspec file (for example, https://git-codecommit.<region-ID>.amazonaws.com/v1/repos/<repo-name>).   For source code in an Amazon S3 input bucket, one of the following.    The path to the ZIP file that contains the source code (for example, <bucket-name>/<path>/<object-name>.zip).    The path to the folder that contains the source code (for example, <bucket-name>/<path-to-source-code>/<folder>/).      For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your Amazon Web Services account to your GitHub account. Use the CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub Authorize application page, for Organization access, choose Request access next to each repository you want to allow CodeBuild to have access to, and then choose Authorize application. (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the CodeBuild console.) To instruct CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH.   For source code in an GitLab or self-managed GitLab repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your Amazon Web Services account to your GitLab account. Use the CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitLab, on the Connections Authorize application page, choose Authorize. Then on the CodeConnections Create GitLab connection page, choose Connect to GitLab. (After you have connected to your GitLab account, you do not need to finish creating the build project. You can leave the CodeBuild console.) To instruct CodeBuild to override the default connection and use this connection instead, set the auth object's type value to CODECONNECTIONS in the source object.   For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the buildspec file. You must connect your Amazon Web Services account to your Bitbucket account. Use the CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket Confirm access to your account page, choose Grant access. (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the CodeBuild console.) To instruct CodeBuild to use this connection, in the source object, set the auth object's type value to OAUTH.    If you specify CODEPIPELINE for the Type property, don't specify this property. For all of the other types, you must specify Location. 
         | 
| 2259 2259 | 
             
                 */
         | 
| 2260 2260 | 
             
                location?: String;
         | 
| 2261 2261 | 
             
                /**
         | 
| @@ -3243,7 +3243,7 @@ declare namespace CodeBuild { | |
| 3243 3243 | 
             
              export type WebhookBuildType = "BUILD"|"BUILD_BATCH"|string;
         | 
| 3244 3244 | 
             
              export interface WebhookFilter {
         | 
| 3245 3245 | 
             
                /**
         | 
| 3246 | 
            -
                 *  The type of webhook filter. There are  | 
| 3246 | 
            +
                 *  The type of webhook filter. There are nine webhook filter types: EVENT, ACTOR_ACCOUNT_ID, HEAD_REF, BASE_REF, FILE_PATH, COMMIT_MESSAGE, TAG_NAME, RELEASE_NAME, and WORKFLOW_NAME.     EVENT     A webhook event triggers a build when the provided pattern matches one of nine event types: PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED, PULL_REQUEST_CLOSED, PULL_REQUEST_REOPENED, PULL_REQUEST_MERGED, RELEASED, PRERELEASED, and WORKFLOW_JOB_QUEUED. The EVENT patterns are specified as a comma-separated string. For example, PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED filters all push, pull request created, and pull request updated events.    The PULL_REQUEST_REOPENED works with GitHub and GitHub Enterprise only. The RELEASED, PRERELEASED, and WORKFLOW_JOB_QUEUED work with GitHub only.      ACTOR_ACCOUNT_ID    A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression pattern.      HEAD_REF    A webhook event triggers a build when the head reference matches the regular expression pattern. For example, refs/heads/branch-name and refs/tags/tag-name.    Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events.      BASE_REF    A webhook event triggers a build when the base reference matches the regular expression pattern. For example, refs/heads/branch-name.    Works with pull request events only.       FILE_PATH    A webhook triggers a build when the path of a changed file matches the regular expression pattern.    Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.       COMMIT_MESSAGE   A webhook triggers a build when the head commit message matches the regular expression pattern.   Works with GitHub and Bitbucket events push and pull requests events. Also works with GitHub Enterprise push events, but does not work with GitHub Enterprise pull request events.       TAG_NAME   A webhook triggers a build when the tag name of the release matches the regular expression pattern.   Works with RELEASED and PRERELEASED events only.       RELEASE_NAME   A webhook triggers a build when the release name matches the regular expression pattern.   Works with RELEASED and PRERELEASED events only.       WORKFLOW_NAME   A webhook triggers a build when the workflow name matches the regular expression pattern.   Works with WORKFLOW_JOB_QUEUED events only.      
         | 
| 3247 3247 | 
             
                 */
         | 
| 3248 3248 | 
             
                type: WebhookFilterType;
         | 
| 3249 3249 | 
             
                /**
         | 
| @@ -3255,7 +3255,7 @@ declare namespace CodeBuild { | |
| 3255 3255 | 
             
                 */
         | 
| 3256 3256 | 
             
                excludeMatchedPattern?: WrapperBoolean;
         | 
| 3257 3257 | 
             
              }
         | 
| 3258 | 
            -
              export type WebhookFilterType = "EVENT"|"BASE_REF"|"HEAD_REF"|"ACTOR_ACCOUNT_ID"|"FILE_PATH"|"COMMIT_MESSAGE"|string;
         | 
| 3258 | 
            +
              export type WebhookFilterType = "EVENT"|"BASE_REF"|"HEAD_REF"|"ACTOR_ACCOUNT_ID"|"FILE_PATH"|"COMMIT_MESSAGE"|"WORKFLOW_NAME"|"TAG_NAME"|"RELEASE_NAME"|string;
         | 
| 3259 3259 | 
             
              export type WrapperBoolean = boolean;
         | 
| 3260 3260 | 
             
              export type WrapperDouble = number;
         | 
| 3261 3261 | 
             
              export type WrapperInt = number;
         | 
| @@ -0,0 +1,260 @@ | |
| 1 | 
            +
            import {Request} from '../lib/request';
         | 
| 2 | 
            +
            import {Response} from '../lib/response';
         | 
| 3 | 
            +
            import {AWSError} from '../lib/error';
         | 
| 4 | 
            +
            import {Service} from '../lib/service';
         | 
| 5 | 
            +
            import {ServiceConfigurationOptions} from '../lib/service';
         | 
| 6 | 
            +
            import {ConfigBase as Config} from '../lib/config-base';
         | 
| 7 | 
            +
            interface Blob {}
         | 
| 8 | 
            +
            declare class ControlCatalog extends Service {
         | 
| 9 | 
            +
              /**
         | 
| 10 | 
            +
               * Constructs a service object. This object has one method for each API operation.
         | 
| 11 | 
            +
               */
         | 
| 12 | 
            +
              constructor(options?: ControlCatalog.Types.ClientConfiguration)
         | 
| 13 | 
            +
              config: Config & ControlCatalog.Types.ClientConfiguration;
         | 
| 14 | 
            +
              /**
         | 
| 15 | 
            +
               * Returns a paginated list of common controls from the Amazon Web Services Control Catalog. You can apply an optional filter to see common controls that have a specific objective. If you don’t provide a filter, the operation returns all common controls. 
         | 
| 16 | 
            +
               */
         | 
| 17 | 
            +
              listCommonControls(params: ControlCatalog.Types.ListCommonControlsRequest, callback?: (err: AWSError, data: ControlCatalog.Types.ListCommonControlsResponse) => void): Request<ControlCatalog.Types.ListCommonControlsResponse, AWSError>;
         | 
| 18 | 
            +
              /**
         | 
| 19 | 
            +
               * Returns a paginated list of common controls from the Amazon Web Services Control Catalog. You can apply an optional filter to see common controls that have a specific objective. If you don’t provide a filter, the operation returns all common controls. 
         | 
| 20 | 
            +
               */
         | 
| 21 | 
            +
              listCommonControls(callback?: (err: AWSError, data: ControlCatalog.Types.ListCommonControlsResponse) => void): Request<ControlCatalog.Types.ListCommonControlsResponse, AWSError>;
         | 
| 22 | 
            +
              /**
         | 
| 23 | 
            +
               * Returns a paginated list of domains from the Amazon Web Services Control Catalog.
         | 
| 24 | 
            +
               */
         | 
| 25 | 
            +
              listDomains(params: ControlCatalog.Types.ListDomainsRequest, callback?: (err: AWSError, data: ControlCatalog.Types.ListDomainsResponse) => void): Request<ControlCatalog.Types.ListDomainsResponse, AWSError>;
         | 
| 26 | 
            +
              /**
         | 
| 27 | 
            +
               * Returns a paginated list of domains from the Amazon Web Services Control Catalog.
         | 
| 28 | 
            +
               */
         | 
| 29 | 
            +
              listDomains(callback?: (err: AWSError, data: ControlCatalog.Types.ListDomainsResponse) => void): Request<ControlCatalog.Types.ListDomainsResponse, AWSError>;
         | 
| 30 | 
            +
              /**
         | 
| 31 | 
            +
               * Returns a paginated list of objectives from the Amazon Web Services Control Catalog. You can apply an optional filter to see the objectives that belong to a specific domain. If you don’t provide a filter, the operation returns all objectives. 
         | 
| 32 | 
            +
               */
         | 
| 33 | 
            +
              listObjectives(params: ControlCatalog.Types.ListObjectivesRequest, callback?: (err: AWSError, data: ControlCatalog.Types.ListObjectivesResponse) => void): Request<ControlCatalog.Types.ListObjectivesResponse, AWSError>;
         | 
| 34 | 
            +
              /**
         | 
| 35 | 
            +
               * Returns a paginated list of objectives from the Amazon Web Services Control Catalog. You can apply an optional filter to see the objectives that belong to a specific domain. If you don’t provide a filter, the operation returns all objectives. 
         | 
| 36 | 
            +
               */
         | 
| 37 | 
            +
              listObjectives(callback?: (err: AWSError, data: ControlCatalog.Types.ListObjectivesResponse) => void): Request<ControlCatalog.Types.ListObjectivesResponse, AWSError>;
         | 
| 38 | 
            +
            }
         | 
| 39 | 
            +
            declare namespace ControlCatalog {
         | 
| 40 | 
            +
              export interface AssociatedDomainSummary {
         | 
| 41 | 
            +
                /**
         | 
| 42 | 
            +
                 * The Amazon Resource Name (ARN) of the related domain.
         | 
| 43 | 
            +
                 */
         | 
| 44 | 
            +
                Arn?: DomainArn;
         | 
| 45 | 
            +
                /**
         | 
| 46 | 
            +
                 * The name of the related domain.
         | 
| 47 | 
            +
                 */
         | 
| 48 | 
            +
                Name?: String;
         | 
| 49 | 
            +
              }
         | 
| 50 | 
            +
              export interface AssociatedObjectiveSummary {
         | 
| 51 | 
            +
                /**
         | 
| 52 | 
            +
                 * The Amazon Resource Name (ARN) of the related objective.
         | 
| 53 | 
            +
                 */
         | 
| 54 | 
            +
                Arn?: ObjectiveArn;
         | 
| 55 | 
            +
                /**
         | 
| 56 | 
            +
                 * The name of the related objective.
         | 
| 57 | 
            +
                 */
         | 
| 58 | 
            +
                Name?: String;
         | 
| 59 | 
            +
              }
         | 
| 60 | 
            +
              export type CommonControlArn = string;
         | 
| 61 | 
            +
              export interface CommonControlFilter {
         | 
| 62 | 
            +
                /**
         | 
| 63 | 
            +
                 * The objective that's used as filter criteria. You can use this parameter to specify one objective ARN at a time. Passing multiple ARNs in the CommonControlFilter isn’t currently supported.
         | 
| 64 | 
            +
                 */
         | 
| 65 | 
            +
                Objectives?: ObjectiveResourceFilterList;
         | 
| 66 | 
            +
              }
         | 
| 67 | 
            +
              export interface CommonControlSummary {
         | 
| 68 | 
            +
                /**
         | 
| 69 | 
            +
                 * The Amazon Resource Name (ARN) that identifies the common control.
         | 
| 70 | 
            +
                 */
         | 
| 71 | 
            +
                Arn: CommonControlArn;
         | 
| 72 | 
            +
                /**
         | 
| 73 | 
            +
                 * The time when the common control was created.
         | 
| 74 | 
            +
                 */
         | 
| 75 | 
            +
                CreateTime: Timestamp;
         | 
| 76 | 
            +
                /**
         | 
| 77 | 
            +
                 * The description of the common control.
         | 
| 78 | 
            +
                 */
         | 
| 79 | 
            +
                Description: String;
         | 
| 80 | 
            +
                /**
         | 
| 81 | 
            +
                 * The domain that the common control belongs to.
         | 
| 82 | 
            +
                 */
         | 
| 83 | 
            +
                Domain: AssociatedDomainSummary;
         | 
| 84 | 
            +
                /**
         | 
| 85 | 
            +
                 * The time when the common control was most recently updated.
         | 
| 86 | 
            +
                 */
         | 
| 87 | 
            +
                LastUpdateTime: Timestamp;
         | 
| 88 | 
            +
                /**
         | 
| 89 | 
            +
                 * The name of the common control.
         | 
| 90 | 
            +
                 */
         | 
| 91 | 
            +
                Name: String;
         | 
| 92 | 
            +
                /**
         | 
| 93 | 
            +
                 * The objective that the common control belongs to.
         | 
| 94 | 
            +
                 */
         | 
| 95 | 
            +
                Objective: AssociatedObjectiveSummary;
         | 
| 96 | 
            +
              }
         | 
| 97 | 
            +
              export type CommonControlSummaryList = CommonControlSummary[];
         | 
| 98 | 
            +
              export type DomainArn = string;
         | 
| 99 | 
            +
              export interface DomainResourceFilter {
         | 
| 100 | 
            +
                /**
         | 
| 101 | 
            +
                 * The Amazon Resource Name (ARN) of the domain.
         | 
| 102 | 
            +
                 */
         | 
| 103 | 
            +
                Arn?: DomainArn;
         | 
| 104 | 
            +
              }
         | 
| 105 | 
            +
              export type DomainResourceFilterList = DomainResourceFilter[];
         | 
| 106 | 
            +
              export interface DomainSummary {
         | 
| 107 | 
            +
                /**
         | 
| 108 | 
            +
                 * The Amazon Resource Name (ARN) that identifies the domain.
         | 
| 109 | 
            +
                 */
         | 
| 110 | 
            +
                Arn: DomainArn;
         | 
| 111 | 
            +
                /**
         | 
| 112 | 
            +
                 * The time when the domain was created.
         | 
| 113 | 
            +
                 */
         | 
| 114 | 
            +
                CreateTime: Timestamp;
         | 
| 115 | 
            +
                /**
         | 
| 116 | 
            +
                 * The description of the domain.
         | 
| 117 | 
            +
                 */
         | 
| 118 | 
            +
                Description: String;
         | 
| 119 | 
            +
                /**
         | 
| 120 | 
            +
                 * The time when the domain was most recently updated.
         | 
| 121 | 
            +
                 */
         | 
| 122 | 
            +
                LastUpdateTime: Timestamp;
         | 
| 123 | 
            +
                /**
         | 
| 124 | 
            +
                 * The name of the domain.
         | 
| 125 | 
            +
                 */
         | 
| 126 | 
            +
                Name: String;
         | 
| 127 | 
            +
              }
         | 
| 128 | 
            +
              export type DomainSummaryList = DomainSummary[];
         | 
| 129 | 
            +
              export interface ListCommonControlsRequest {
         | 
| 130 | 
            +
                /**
         | 
| 131 | 
            +
                 * An optional filter that narrows the results to a specific objective. This filter allows you to specify one objective ARN at a time. Passing multiple ARNs in the CommonControlFilter isn’t currently supported.
         | 
| 132 | 
            +
                 */
         | 
| 133 | 
            +
                CommonControlFilter?: CommonControlFilter;
         | 
| 134 | 
            +
                /**
         | 
| 135 | 
            +
                 * The maximum number of results on a page or for an API request call.
         | 
| 136 | 
            +
                 */
         | 
| 137 | 
            +
                MaxResults?: MaxListCommonControlsResults;
         | 
| 138 | 
            +
                /**
         | 
| 139 | 
            +
                 * The pagination token that's used to fetch the next set of results.
         | 
| 140 | 
            +
                 */
         | 
| 141 | 
            +
                NextToken?: PaginationToken;
         | 
| 142 | 
            +
              }
         | 
| 143 | 
            +
              export interface ListCommonControlsResponse {
         | 
| 144 | 
            +
                /**
         | 
| 145 | 
            +
                 * The list of common controls that the ListCommonControls API returns.
         | 
| 146 | 
            +
                 */
         | 
| 147 | 
            +
                CommonControls: CommonControlSummaryList;
         | 
| 148 | 
            +
                /**
         | 
| 149 | 
            +
                 * The pagination token that's used to fetch the next set of results.
         | 
| 150 | 
            +
                 */
         | 
| 151 | 
            +
                NextToken?: PaginationToken;
         | 
| 152 | 
            +
              }
         | 
| 153 | 
            +
              export interface ListDomainsRequest {
         | 
| 154 | 
            +
                /**
         | 
| 155 | 
            +
                 * The maximum number of results on a page or for an API request call.
         | 
| 156 | 
            +
                 */
         | 
| 157 | 
            +
                MaxResults?: MaxListDomainsResults;
         | 
| 158 | 
            +
                /**
         | 
| 159 | 
            +
                 * The pagination token that's used to fetch the next set of results.
         | 
| 160 | 
            +
                 */
         | 
| 161 | 
            +
                NextToken?: PaginationToken;
         | 
| 162 | 
            +
              }
         | 
| 163 | 
            +
              export interface ListDomainsResponse {
         | 
| 164 | 
            +
                /**
         | 
| 165 | 
            +
                 * The list of domains that the ListDomains API returns.
         | 
| 166 | 
            +
                 */
         | 
| 167 | 
            +
                Domains: DomainSummaryList;
         | 
| 168 | 
            +
                /**
         | 
| 169 | 
            +
                 * The pagination token that's used to fetch the next set of results.
         | 
| 170 | 
            +
                 */
         | 
| 171 | 
            +
                NextToken?: PaginationToken;
         | 
| 172 | 
            +
              }
         | 
| 173 | 
            +
              export interface ListObjectivesRequest {
         | 
| 174 | 
            +
                /**
         | 
| 175 | 
            +
                 * The maximum number of results on a page or for an API request call.
         | 
| 176 | 
            +
                 */
         | 
| 177 | 
            +
                MaxResults?: MaxListObjectivesResults;
         | 
| 178 | 
            +
                /**
         | 
| 179 | 
            +
                 * The pagination token that's used to fetch the next set of results.
         | 
| 180 | 
            +
                 */
         | 
| 181 | 
            +
                NextToken?: PaginationToken;
         | 
| 182 | 
            +
                /**
         | 
| 183 | 
            +
                 * An optional filter that narrows the results to a specific domain. This filter allows you to specify one domain ARN at a time. Passing multiple ARNs in the ObjectiveFilter isn’t currently supported.
         | 
| 184 | 
            +
                 */
         | 
| 185 | 
            +
                ObjectiveFilter?: ObjectiveFilter;
         | 
| 186 | 
            +
              }
         | 
| 187 | 
            +
              export interface ListObjectivesResponse {
         | 
| 188 | 
            +
                /**
         | 
| 189 | 
            +
                 * The pagination token that's used to fetch the next set of results.
         | 
| 190 | 
            +
                 */
         | 
| 191 | 
            +
                NextToken?: PaginationToken;
         | 
| 192 | 
            +
                /**
         | 
| 193 | 
            +
                 * The list of objectives that the ListObjectives API returns.
         | 
| 194 | 
            +
                 */
         | 
| 195 | 
            +
                Objectives: ObjectiveSummaryList;
         | 
| 196 | 
            +
              }
         | 
| 197 | 
            +
              export type MaxListCommonControlsResults = number;
         | 
| 198 | 
            +
              export type MaxListDomainsResults = number;
         | 
| 199 | 
            +
              export type MaxListObjectivesResults = number;
         | 
| 200 | 
            +
              export type ObjectiveArn = string;
         | 
| 201 | 
            +
              export interface ObjectiveFilter {
         | 
| 202 | 
            +
                /**
         | 
| 203 | 
            +
                 * The domain that's used as filter criteria. You can use this parameter to specify one domain ARN at a time. Passing multiple ARNs in the ObjectiveFilter isn’t currently supported.
         | 
| 204 | 
            +
                 */
         | 
| 205 | 
            +
                Domains?: DomainResourceFilterList;
         | 
| 206 | 
            +
              }
         | 
| 207 | 
            +
              export interface ObjectiveResourceFilter {
         | 
| 208 | 
            +
                /**
         | 
| 209 | 
            +
                 * The Amazon Resource Name (ARN) of the objective.
         | 
| 210 | 
            +
                 */
         | 
| 211 | 
            +
                Arn?: ObjectiveArn;
         | 
| 212 | 
            +
              }
         | 
| 213 | 
            +
              export type ObjectiveResourceFilterList = ObjectiveResourceFilter[];
         | 
| 214 | 
            +
              export interface ObjectiveSummary {
         | 
| 215 | 
            +
                /**
         | 
| 216 | 
            +
                 * The Amazon Resource Name (ARN) that identifies the objective.
         | 
| 217 | 
            +
                 */
         | 
| 218 | 
            +
                Arn: ObjectiveArn;
         | 
| 219 | 
            +
                /**
         | 
| 220 | 
            +
                 * The time when the objective was created.
         | 
| 221 | 
            +
                 */
         | 
| 222 | 
            +
                CreateTime: Timestamp;
         | 
| 223 | 
            +
                /**
         | 
| 224 | 
            +
                 * The description of the objective.
         | 
| 225 | 
            +
                 */
         | 
| 226 | 
            +
                Description: String;
         | 
| 227 | 
            +
                /**
         | 
| 228 | 
            +
                 * The domain that the objective belongs to.
         | 
| 229 | 
            +
                 */
         | 
| 230 | 
            +
                Domain: AssociatedDomainSummary;
         | 
| 231 | 
            +
                /**
         | 
| 232 | 
            +
                 * The time when the objective was most recently updated.
         | 
| 233 | 
            +
                 */
         | 
| 234 | 
            +
                LastUpdateTime: Timestamp;
         | 
| 235 | 
            +
                /**
         | 
| 236 | 
            +
                 * The name of the objective.
         | 
| 237 | 
            +
                 */
         | 
| 238 | 
            +
                Name: String;
         | 
| 239 | 
            +
              }
         | 
| 240 | 
            +
              export type ObjectiveSummaryList = ObjectiveSummary[];
         | 
| 241 | 
            +
              export type PaginationToken = string;
         | 
| 242 | 
            +
              export type String = string;
         | 
| 243 | 
            +
              export type Timestamp = Date;
         | 
| 244 | 
            +
              /**
         | 
| 245 | 
            +
               * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
         | 
| 246 | 
            +
               */
         | 
| 247 | 
            +
              export type apiVersion = "2018-05-10"|"latest"|string;
         | 
| 248 | 
            +
              export interface ClientApiVersions {
         | 
| 249 | 
            +
                /**
         | 
| 250 | 
            +
                 * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
         | 
| 251 | 
            +
                 */
         | 
| 252 | 
            +
                apiVersion?: apiVersion;
         | 
| 253 | 
            +
              }
         | 
| 254 | 
            +
              export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
         | 
| 255 | 
            +
              /**
         | 
| 256 | 
            +
               * Contains interfaces for use with the ControlCatalog client.
         | 
| 257 | 
            +
               */
         | 
| 258 | 
            +
              export import Types = ControlCatalog;
         | 
| 259 | 
            +
            }
         | 
| 260 | 
            +
            export = ControlCatalog;
         | 
| @@ -0,0 +1,18 @@ | |
| 1 | 
            +
            require('../lib/node_loader');
         | 
| 2 | 
            +
            var AWS = require('../lib/core');
         | 
| 3 | 
            +
            var Service = AWS.Service;
         | 
| 4 | 
            +
            var apiLoader = AWS.apiLoader;
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            apiLoader.services['controlcatalog'] = {};
         | 
| 7 | 
            +
            AWS.ControlCatalog = Service.defineService('controlcatalog', ['2018-05-10']);
         | 
| 8 | 
            +
            Object.defineProperty(apiLoader.services['controlcatalog'], '2018-05-10', {
         | 
| 9 | 
            +
              get: function get() {
         | 
| 10 | 
            +
                var model = require('../apis/controlcatalog-2018-05-10.min.json');
         | 
| 11 | 
            +
                model.paginators = require('../apis/controlcatalog-2018-05-10.paginators.json').pagination;
         | 
| 12 | 
            +
                return model;
         | 
| 13 | 
            +
              },
         | 
| 14 | 
            +
              enumerable: true,
         | 
| 15 | 
            +
              configurable: true
         | 
| 16 | 
            +
            });
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            module.exports = AWS.ControlCatalog;
         | 
| @@ -832,6 +832,24 @@ declare namespace MediaConvert { | |
| 832 832 | 
             
                 * Specify the color of the burned-in captions text. Leave Font color blank and set Style passthrough to enabled to use the font color data from your input captions, if present.
         | 
| 833 833 | 
             
                 */
         | 
| 834 834 | 
             
                FontColor?: BurninSubtitleFontColor;
         | 
| 835 | 
            +
                /**
         | 
| 836 | 
            +
                 * Specify a bold TrueType font file to use when rendering your output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you must also separately specify a regular, an italic, and a bold italic font file.
         | 
| 837 | 
            +
                 */
         | 
| 838 | 
            +
                FontFileBold?: __stringPatternS3TtfHttpsTtf;
         | 
| 839 | 
            +
                /**
         | 
| 840 | 
            +
                 * Specify a bold italic TrueType font file to use when rendering your output captions.
         | 
| 841 | 
            +
            Enter an S3, HTTP, or HTTPS URL.
         | 
| 842 | 
            +
            When you do, you must also separately specify a regular, a bold, and an italic font file.
         | 
| 843 | 
            +
                 */
         | 
| 844 | 
            +
                FontFileBoldItalic?: __string;
         | 
| 845 | 
            +
                /**
         | 
| 846 | 
            +
                 * Specify an italic TrueType font file to use when rendering your output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you must also separately specify a regular, a bold, and a bold italic font file.
         | 
| 847 | 
            +
                 */
         | 
| 848 | 
            +
                FontFileItalic?: __stringPatternS3TtfHttpsTtf;
         | 
| 849 | 
            +
                /**
         | 
| 850 | 
            +
                 * Specify a regular TrueType font file to use when rendering your output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you must also separately specify a bold, an italic, and a bold italic font file.
         | 
| 851 | 
            +
                 */
         | 
| 852 | 
            +
                FontFileRegular?: __stringPatternS3TtfHttpsTtf;
         | 
| 835 853 | 
             
                /**
         | 
| 836 854 | 
             
                 * Specify the opacity of the burned-in captions. 255 is opaque; 0 is transparent.
         | 
| 837 855 | 
             
                 */
         | 
| @@ -877,7 +895,7 @@ declare namespace MediaConvert { | |
| 877 895 | 
             
                 */
         | 
| 878 896 | 
             
                ShadowYOffset?: __integerMinNegative2147483648Max2147483647;
         | 
| 879 897 | 
             
                /**
         | 
| 880 | 
            -
                 *  | 
| 898 | 
            +
                 * To use the available style, color, and position information from your input captions: Set Style passthrough to Enabled. Note that MediaConvert uses default settings for any missing style or position information in your input captions To ignore the style and position information from your input captions and use default settings: Leave blank or keep the default value, Disabled. Default settings include white text with black outlining, bottom-center positioning, and automatic sizing. Whether you set Style passthrough to enabled or not, you can also choose to manually override any of the individual style and position settings. You can also override any fonts by manually specifying custom font files.
         | 
| 881 899 | 
             
                 */
         | 
| 882 900 | 
             
                StylePassthrough?: BurnInSubtitleStylePassthrough;
         | 
| 883 901 | 
             
                /**
         | 
| @@ -1959,6 +1977,24 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough. | |
| 1959 1977 | 
             
                 * Specify the color of the captions text. Leave Font color blank and set Style passthrough to enabled to use the font color data from your input captions, if present. Within your job settings, all of your DVB-Sub settings must be identical.
         | 
| 1960 1978 | 
             
                 */
         | 
| 1961 1979 | 
             
                FontColor?: DvbSubtitleFontColor;
         | 
| 1980 | 
            +
                /**
         | 
| 1981 | 
            +
                 * Specify a bold TrueType font file to use when rendering your output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you must also separately specify a regular, an italic, and a bold italic font file.
         | 
| 1982 | 
            +
                 */
         | 
| 1983 | 
            +
                FontFileBold?: __stringPatternS3TtfHttpsTtf;
         | 
| 1984 | 
            +
                /**
         | 
| 1985 | 
            +
                 * Specify a bold italic TrueType font file to use when rendering your output captions.
         | 
| 1986 | 
            +
            Enter an S3, HTTP, or HTTPS URL.
         | 
| 1987 | 
            +
            When you do, you must also separately specify a regular, a bold, and an italic font file.
         | 
| 1988 | 
            +
                 */
         | 
| 1989 | 
            +
                FontFileBoldItalic?: __stringPatternS3TtfHttpsTtf;
         | 
| 1990 | 
            +
                /**
         | 
| 1991 | 
            +
                 * Specify an italic TrueType font file to use when rendering your output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you must also separately specify a regular, a bold, and a bold italic font file.
         | 
| 1992 | 
            +
                 */
         | 
| 1993 | 
            +
                FontFileItalic?: __stringPatternS3TtfHttpsTtf;
         | 
| 1994 | 
            +
                /**
         | 
| 1995 | 
            +
                 * Specify a regular TrueType font file to use when rendering your output captions. Enter an S3, HTTP, or HTTPS URL. When you do, you must also separately specify a bold, an italic, and a bold italic font file.
         | 
| 1996 | 
            +
                 */
         | 
| 1997 | 
            +
                FontFileRegular?: __stringPatternS3TtfHttpsTtf;
         | 
| 1962 1998 | 
             
                /**
         | 
| 1963 1999 | 
             
                 * Specify the opacity of the burned-in captions. 255 is opaque; 0 is transparent.
         | 
| 1964 2000 | 
             
            Within your job settings, all of your DVB-Sub settings must be identical.
         | 
| @@ -2010,7 +2046,7 @@ Within your job settings, all of your DVB-Sub settings must be identical. | |
| 2010 2046 | 
             
                 */
         | 
| 2011 2047 | 
             
                ShadowYOffset?: __integerMinNegative2147483648Max2147483647;
         | 
| 2012 2048 | 
             
                /**
         | 
| 2013 | 
            -
                 *  | 
| 2049 | 
            +
                 * To use the available style, color, and position information from your input captions: Set Style passthrough to Enabled. Note that MediaConvert uses default settings for any missing style or position information in your input captions To ignore the style and position information from your input captions and use default settings: Leave blank or keep the default value, Disabled. Default settings include white text with black outlining, bottom-center positioning, and automatic sizing. Whether you set Style passthrough to enabled or not, you can also choose to manually override any of the individual style and position settings. You can also override any fonts by manually specifying custom font files.
         | 
| 2014 2050 | 
             
                 */
         | 
| 2015 2051 | 
             
                StylePassthrough?: DvbSubtitleStylePassthrough;
         | 
| 2016 2052 | 
             
                /**
         | 
| @@ -3685,7 +3721,7 @@ Within your job settings, all of your DVB-Sub settings must be identical. | |
| 3685 3721 | 
             
                 */
         | 
| 3686 3722 | 
             
                AvailBlanking?: AvailBlanking;
         | 
| 3687 3723 | 
             
                /**
         | 
| 3688 | 
            -
                 * Use 3D LUTs to specify custom color mapping behavior when you convert from one color space into another. You can include up to 8 different 3D LUTs.
         | 
| 3724 | 
            +
                 * Use 3D LUTs to specify custom color mapping behavior when you convert from one color space into another. You can include up to 8 different 3D LUTs. For more information, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/3d-luts.html
         | 
| 3689 3725 | 
             
                 */
         | 
| 3690 3726 | 
             
                ColorConversion3DLUTSettings?: __listOfColorConversion3DLUTSetting;
         | 
| 3691 3727 | 
             
                /**
         | 
| @@ -3799,7 +3835,7 @@ Within your job settings, all of your DVB-Sub settings must be identical. | |
| 3799 3835 | 
             
                 */
         | 
| 3800 3836 | 
             
                AvailBlanking?: AvailBlanking;
         | 
| 3801 3837 | 
             
                /**
         | 
| 3802 | 
            -
                 * Use 3D LUTs to specify custom color mapping behavior when you convert from one color space into another. You can include up to 8 different 3D LUTs.
         | 
| 3838 | 
            +
                 * Use 3D LUTs to specify custom color mapping behavior when you convert from one color space into another. You can include up to 8 different 3D LUTs. For more information, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/3d-luts.html
         | 
| 3803 3839 | 
             
                 */
         | 
| 3804 3840 | 
             
                ColorConversion3DLUTSettings?: __listOfColorConversion3DLUTSetting;
         | 
| 3805 3841 | 
             
                /**
         | 
| @@ -4049,6 +4085,7 @@ Within your job settings, all of your DVB-Sub settings must be identical. | |
| 4049 4085 | 
             
              export type M2tsKlvMetadata = "PASSTHROUGH"|"NONE"|string;
         | 
| 4050 4086 | 
             
              export type M2tsNielsenId3 = "INSERT"|"NONE"|string;
         | 
| 4051 4087 | 
             
              export type M2tsPcrControl = "PCR_EVERY_PES_PACKET"|"CONFIGURED_PCR_PERIOD"|string;
         | 
| 4088 | 
            +
              export type M2tsPreventBufferUnderflow = "DISABLED"|"ENABLED"|string;
         | 
| 4052 4089 | 
             
              export type M2tsRateMode = "VBR"|"CBR"|string;
         | 
| 4053 4090 | 
             
              export interface M2tsScte35Esam {
         | 
| 4054 4091 | 
             
                /**
         | 
| @@ -4168,6 +4205,10 @@ Within your job settings, all of your DVB-Sub settings must be identical. | |
| 4168 4205 | 
             
                 * Specify the packet identifier (PID) for the program map table (PMT) itself. Default is 480.
         | 
| 4169 4206 | 
             
                 */
         | 
| 4170 4207 | 
             
                PmtPid?: __integerMin32Max8182;
         | 
| 4208 | 
            +
                /**
         | 
| 4209 | 
            +
                 * Specify whether MediaConvert automatically attempts to prevent decoder buffer underflows in your transport stream output. Use if you are seeing decoder buffer underflows in your output and are unable to increase your transport stream's bitrate. For most workflows: We recommend that you keep the default value, Disabled. To prevent decoder buffer underflows in your output, when possible: Choose Enabled. Note that if MediaConvert prevents a decoder buffer underflow in your output, output video quality is reduced and your job will take longer to complete.
         | 
| 4210 | 
            +
                 */
         | 
| 4211 | 
            +
                PreventBufferUnderflow?: M2tsPreventBufferUnderflow;
         | 
| 4171 4212 | 
             
                /**
         | 
| 4172 4213 | 
             
                 * Specify the packet identifier (PID) of the private metadata stream. Default is 503.
         | 
| 4173 4214 | 
             
                 */
         | 
| @@ -6576,6 +6617,7 @@ When you specify Version 1, you must also set ID3 metadata to Passthrough. | |
| 6576 6617 | 
             
              export type __stringPatternS3 = string;
         | 
| 6577 6618 | 
             
              export type __stringPatternS3ASSETMAPXml = string;
         | 
| 6578 6619 | 
             
              export type __stringPatternS3Https = string;
         | 
| 6620 | 
            +
              export type __stringPatternS3TtfHttpsTtf = string;
         | 
| 6579 6621 | 
             
              export type __stringPatternSNManifestConfirmConditionNotificationNS = string;
         | 
| 6580 6622 | 
             
              export type __stringPatternSNSignalProcessingNotificationNS = string;
         | 
| 6581 6623 | 
             
              export type __stringPatternW = string;
         | 
    
        package/clients/mgn.d.ts
    CHANGED
    
    | @@ -516,11 +516,11 @@ declare class Mgn extends Service { | |
| 516 516 | 
             
               */
         | 
| 517 517 | 
             
              updateConnector(callback?: (err: AWSError, data: Mgn.Types.Connector) => void): Request<Mgn.Types.Connector, AWSError>;
         | 
| 518 518 | 
             
              /**
         | 
| 519 | 
            -
               * Updates multiple LaunchConfigurations by Source Server ID.
         | 
| 519 | 
            +
               * Updates multiple LaunchConfigurations by Source Server ID.  bootMode valid values are LEGACY_BIOS | UEFI  
         | 
| 520 520 | 
             
               */
         | 
| 521 521 | 
             
              updateLaunchConfiguration(params: Mgn.Types.UpdateLaunchConfigurationRequest, callback?: (err: AWSError, data: Mgn.Types.LaunchConfiguration) => void): Request<Mgn.Types.LaunchConfiguration, AWSError>;
         | 
| 522 522 | 
             
              /**
         | 
| 523 | 
            -
               * Updates multiple LaunchConfigurations by Source Server ID.
         | 
| 523 | 
            +
               * Updates multiple LaunchConfigurations by Source Server ID.  bootMode valid values are LEGACY_BIOS | UEFI  
         | 
| 524 524 | 
             
               */
         | 
| 525 525 | 
             
              updateLaunchConfiguration(callback?: (err: AWSError, data: Mgn.Types.LaunchConfiguration) => void): Request<Mgn.Types.LaunchConfiguration, AWSError>;
         | 
| 526 526 | 
             
              /**
         | 
| @@ -575,7 +575,7 @@ declare class Mgn extends Service { | |
| 575 575 | 
             
            declare namespace Mgn {
         | 
| 576 576 | 
             
              export type ARN = string;
         | 
| 577 577 | 
             
              export type AccountID = string;
         | 
| 578 | 
            -
              export type ActionCategory = "DISASTER_RECOVERY"|"OPERATING_SYSTEM"|"LICENSE_AND_SUBSCRIPTION"|"VALIDATION"|"OBSERVABILITY"|"SECURITY"|"NETWORKING"|"CONFIGURATION"|"BACKUP"|"OTHER"|string;
         | 
| 578 | 
            +
              export type ActionCategory = "DISASTER_RECOVERY"|"OPERATING_SYSTEM"|"LICENSE_AND_SUBSCRIPTION"|"VALIDATION"|"OBSERVABILITY"|"REFACTORING"|"SECURITY"|"NETWORKING"|"CONFIGURATION"|"BACKUP"|"OTHER"|string;
         | 
| 579 579 | 
             
              export type ActionDescription = string;
         | 
| 580 580 | 
             
              export type ActionID = string;
         | 
| 581 581 | 
             
              export type ActionIDs = ActionID[];
         | 
| @@ -703,7 +703,7 @@ declare namespace Mgn { | |
| 703 703 | 
             
              }
         | 
| 704 704 | 
             
              export type BandwidthThrottling = number;
         | 
| 705 705 | 
             
              export type Boolean = boolean;
         | 
| 706 | 
            -
              export type BootMode = "LEGACY_BIOS"|"UEFI"|string;
         | 
| 706 | 
            +
              export type BootMode = "LEGACY_BIOS"|"UEFI"|"USE_SOURCE"|string;
         | 
| 707 707 | 
             
              export type BoundedString = string;
         | 
| 708 708 | 
             
              export interface CPU {
         | 
| 709 709 | 
             
                /**
         |