├── LICENSE ├── README.md ├── amazon-aws-sms.php └── vendor ├── autoload.php ├── aws └── aws-sdk-php │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE.md │ ├── NOTICE.md │ ├── composer.json │ └── src │ ├── ACMPCA │ ├── ACMPCAClient.php │ └── Exception │ │ └── ACMPCAException.php │ ├── AbstractConfigurationProvider.php │ ├── AccessAnalyzer │ ├── AccessAnalyzerClient.php │ └── Exception │ │ └── AccessAnalyzerException.php │ ├── Acm │ ├── AcmClient.php │ └── Exception │ │ └── AcmException.php │ ├── AlexaForBusiness │ ├── AlexaForBusinessClient.php │ └── Exception │ │ └── AlexaForBusinessException.php │ ├── Amplify │ ├── AmplifyClient.php │ └── Exception │ │ └── AmplifyException.php │ ├── Api │ ├── AbstractModel.php │ ├── ApiProvider.php │ ├── DateTimeResult.php │ ├── DocModel.php │ ├── ErrorParser │ │ ├── AbstractErrorParser.php │ │ ├── JsonParserTrait.php │ │ ├── JsonRpcErrorParser.php │ │ ├── RestJsonErrorParser.php │ │ └── XmlErrorParser.php │ ├── ListShape.php │ ├── MapShape.php │ ├── Operation.php │ ├── Parser │ │ ├── AbstractParser.php │ │ ├── AbstractRestParser.php │ │ ├── Crc32ValidatingParser.php │ │ ├── DecodingEventStreamIterator.php │ │ ├── EventParsingIterator.php │ │ ├── Exception │ │ │ └── ParserException.php │ │ ├── JsonParser.php │ │ ├── JsonRpcParser.php │ │ ├── MetadataParserTrait.php │ │ ├── PayloadParserTrait.php │ │ ├── QueryParser.php │ │ ├── RestJsonParser.php │ │ ├── RestXmlParser.php │ │ └── XmlParser.php │ ├── Serializer │ │ ├── Ec2ParamBuilder.php │ │ ├── JsonBody.php │ │ ├── JsonRpcSerializer.php │ │ ├── QueryParamBuilder.php │ │ ├── QuerySerializer.php │ │ ├── RestJsonSerializer.php │ │ ├── RestSerializer.php │ │ ├── RestXmlSerializer.php │ │ └── XmlBody.php │ ├── Service.php │ ├── Shape.php │ ├── ShapeMap.php │ ├── StructureShape.php │ ├── TimestampShape.php │ └── Validator.php │ ├── ApiGateway │ ├── ApiGatewayClient.php │ └── Exception │ │ └── ApiGatewayException.php │ ├── ApiGatewayManagementApi │ ├── ApiGatewayManagementApiClient.php │ └── Exception │ │ └── ApiGatewayManagementApiException.php │ ├── ApiGatewayV2 │ ├── ApiGatewayV2Client.php │ └── Exception │ │ └── ApiGatewayV2Exception.php │ ├── AppConfig │ ├── AppConfigClient.php │ └── Exception │ │ └── AppConfigException.php │ ├── AppMesh │ ├── AppMeshClient.php │ └── Exception │ │ └── AppMeshException.php │ ├── AppSync │ ├── AppSyncClient.php │ └── Exception │ │ └── AppSyncException.php │ ├── Appflow │ ├── AppflowClient.php │ └── Exception │ │ └── AppflowException.php │ ├── ApplicationAutoScaling │ ├── ApplicationAutoScalingClient.php │ └── Exception │ │ └── ApplicationAutoScalingException.php │ ├── ApplicationDiscoveryService │ ├── ApplicationDiscoveryServiceClient.php │ └── Exception │ │ └── ApplicationDiscoveryServiceException.php │ ├── ApplicationInsights │ ├── ApplicationInsightsClient.php │ └── Exception │ │ └── ApplicationInsightsException.php │ ├── Appstream │ ├── AppstreamClient.php │ └── Exception │ │ └── AppstreamException.php │ ├── Arn │ ├── AccessPointArn.php │ ├── Arn.php │ ├── ArnInterface.php │ ├── ArnParser.php │ ├── Exception │ │ └── InvalidArnException.php │ ├── ResourceTypeAndIdTrait.php │ └── S3 │ │ └── AccessPointArn.php │ ├── Athena │ ├── AthenaClient.php │ └── Exception │ │ └── AthenaException.php │ ├── AugmentedAIRuntime │ ├── AugmentedAIRuntimeClient.php │ └── Exception │ │ └── AugmentedAIRuntimeException.php │ ├── AutoScaling │ ├── AutoScalingClient.php │ └── Exception │ │ └── AutoScalingException.php │ ├── AutoScalingPlans │ ├── AutoScalingPlansClient.php │ └── Exception │ │ └── AutoScalingPlansException.php │ ├── AwsClient.php │ ├── AwsClientInterface.php │ ├── AwsClientTrait.php │ ├── Backup │ ├── BackupClient.php │ └── Exception │ │ └── BackupException.php │ ├── Batch │ ├── BatchClient.php │ └── Exception │ │ └── BatchException.php │ ├── Braket │ ├── BraketClient.php │ └── Exception │ │ └── BraketException.php │ ├── Budgets │ ├── BudgetsClient.php │ └── Exception │ │ └── BudgetsException.php │ ├── CacheInterface.php │ ├── Chime │ ├── ChimeClient.php │ └── Exception │ │ └── ChimeException.php │ ├── ClientResolver.php │ ├── ClientSideMonitoring │ ├── AbstractMonitoringMiddleware.php │ ├── ApiCallAttemptMonitoringMiddleware.php │ ├── ApiCallMonitoringMiddleware.php │ ├── Configuration.php │ ├── ConfigurationInterface.php │ ├── ConfigurationProvider.php │ ├── Exception │ │ └── ConfigurationException.php │ └── MonitoringMiddlewareInterface.php │ ├── Cloud9 │ ├── Cloud9Client.php │ └── Exception │ │ └── Cloud9Exception.php │ ├── CloudDirectory │ ├── CloudDirectoryClient.php │ └── Exception │ │ └── CloudDirectoryException.php │ ├── CloudFormation │ ├── CloudFormationClient.php │ └── Exception │ │ └── CloudFormationException.php │ ├── CloudFront │ ├── CloudFrontClient.php │ ├── CookieSigner.php │ ├── Exception │ │ └── CloudFrontException.php │ ├── Signer.php │ └── UrlSigner.php │ ├── CloudHSMV2 │ ├── CloudHSMV2Client.php │ └── Exception │ │ └── CloudHSMV2Exception.php │ ├── CloudHsm │ ├── CloudHsmClient.php │ └── Exception │ │ └── CloudHsmException.php │ ├── CloudSearch │ ├── CloudSearchClient.php │ └── Exception │ │ └── CloudSearchException.php │ ├── CloudSearchDomain │ ├── CloudSearchDomainClient.php │ └── Exception │ │ └── CloudSearchDomainException.php │ ├── CloudTrail │ ├── CloudTrailClient.php │ ├── Exception │ │ └── CloudTrailException.php │ ├── LogFileIterator.php │ ├── LogFileReader.php │ └── LogRecordIterator.php │ ├── CloudWatch │ ├── CloudWatchClient.php │ └── Exception │ │ └── CloudWatchException.php │ ├── CloudWatchEvents │ ├── CloudWatchEventsClient.php │ └── Exception │ │ └── CloudWatchEventsException.php │ ├── CloudWatchLogs │ ├── CloudWatchLogsClient.php │ └── Exception │ │ └── CloudWatchLogsException.php │ ├── CodeArtifact │ ├── CodeArtifactClient.php │ └── Exception │ │ └── CodeArtifactException.php │ ├── CodeBuild │ ├── CodeBuildClient.php │ └── Exception │ │ └── CodeBuildException.php │ ├── CodeCommit │ ├── CodeCommitClient.php │ └── Exception │ │ └── CodeCommitException.php │ ├── CodeDeploy │ ├── CodeDeployClient.php │ └── Exception │ │ └── CodeDeployException.php │ ├── CodeGuruProfiler │ ├── CodeGuruProfilerClient.php │ └── Exception │ │ └── CodeGuruProfilerException.php │ ├── CodeGuruReviewer │ ├── CodeGuruReviewerClient.php │ └── Exception │ │ └── CodeGuruReviewerException.php │ ├── CodePipeline │ ├── CodePipelineClient.php │ └── Exception │ │ └── CodePipelineException.php │ ├── CodeStar │ ├── CodeStarClient.php │ └── Exception │ │ └── CodeStarException.php │ ├── CodeStarNotifications │ ├── CodeStarNotificationsClient.php │ └── Exception │ │ └── CodeStarNotificationsException.php │ ├── CodeStarconnections │ ├── CodeStarconnectionsClient.php │ └── Exception │ │ └── CodeStarconnectionsException.php │ ├── CognitoIdentity │ ├── CognitoIdentityClient.php │ ├── CognitoIdentityProvider.php │ └── Exception │ │ └── CognitoIdentityException.php │ ├── CognitoIdentityProvider │ ├── CognitoIdentityProviderClient.php │ └── Exception │ │ └── CognitoIdentityProviderException.php │ ├── CognitoSync │ ├── CognitoSyncClient.php │ └── Exception │ │ └── CognitoSyncException.php │ ├── Command.php │ ├── CommandInterface.php │ ├── CommandPool.php │ ├── Comprehend │ ├── ComprehendClient.php │ └── Exception │ │ └── ComprehendException.php │ ├── ComprehendMedical │ ├── ComprehendMedicalClient.php │ └── Exception │ │ └── ComprehendMedicalException.php │ ├── ComputeOptimizer │ ├── ComputeOptimizerClient.php │ └── Exception │ │ └── ComputeOptimizerException.php │ ├── ConfigService │ ├── ConfigServiceClient.php │ └── Exception │ │ └── ConfigServiceException.php │ ├── ConfigurationProviderInterface.php │ ├── Connect │ ├── ConnectClient.php │ └── Exception │ │ └── ConnectException.php │ ├── ConnectParticipant │ ├── ConnectParticipantClient.php │ └── Exception │ │ └── ConnectParticipantException.php │ ├── CostExplorer │ ├── CostExplorerClient.php │ └── Exception │ │ └── CostExplorerException.php │ ├── CostandUsageReportService │ ├── CostandUsageReportServiceClient.php │ └── Exception │ │ └── CostandUsageReportServiceException.php │ ├── Credentials │ ├── AssumeRoleCredentialProvider.php │ ├── AssumeRoleWithWebIdentityCredentialProvider.php │ ├── CredentialProvider.php │ ├── Credentials.php │ ├── CredentialsInterface.php │ ├── EcsCredentialProvider.php │ └── InstanceProfileProvider.php │ ├── Crypto │ ├── AbstractCryptoClient.php │ ├── AbstractCryptoClientV2.php │ ├── AesDecryptingStream.php │ ├── AesEncryptingStream.php │ ├── AesGcmDecryptingStream.php │ ├── AesGcmEncryptingStream.php │ ├── AesStreamInterface.php │ ├── AesStreamInterfaceV2.php │ ├── Cipher │ │ ├── Cbc.php │ │ ├── CipherBuilderTrait.php │ │ └── CipherMethod.php │ ├── DecryptionTrait.php │ ├── DecryptionTraitV2.php │ ├── EncryptionTrait.php │ ├── EncryptionTraitV2.php │ ├── KmsMaterialsProvider.php │ ├── KmsMaterialsProviderV2.php │ ├── MaterialsProvider.php │ ├── MaterialsProviderInterface.php │ ├── MaterialsProviderInterfaceV2.php │ ├── MaterialsProviderV2.php │ ├── MetadataEnvelope.php │ ├── MetadataStrategyInterface.php │ └── Polyfill │ │ ├── AesGcm.php │ │ ├── ByteArray.php │ │ ├── Gmac.php │ │ ├── Key.php │ │ └── NeedsTrait.php │ ├── DAX │ ├── DAXClient.php │ └── Exception │ │ └── DAXException.php │ ├── DLM │ ├── DLMClient.php │ └── Exception │ │ └── DLMException.php │ ├── DataExchange │ ├── DataExchangeClient.php │ └── Exception │ │ └── DataExchangeException.php │ ├── DataPipeline │ ├── DataPipelineClient.php │ └── Exception │ │ └── DataPipelineException.php │ ├── DataSync │ ├── DataSyncClient.php │ └── Exception │ │ └── DataSyncException.php │ ├── DatabaseMigrationService │ ├── DatabaseMigrationServiceClient.php │ └── Exception │ │ └── DatabaseMigrationServiceException.php │ ├── Detective │ ├── DetectiveClient.php │ └── Exception │ │ └── DetectiveException.php │ ├── DeviceFarm │ ├── DeviceFarmClient.php │ └── Exception │ │ └── DeviceFarmException.php │ ├── DirectConnect │ ├── DirectConnectClient.php │ └── Exception │ │ └── DirectConnectException.php │ ├── DirectoryService │ ├── DirectoryServiceClient.php │ └── Exception │ │ └── DirectoryServiceException.php │ ├── DocDB │ ├── DocDBClient.php │ └── Exception │ │ └── DocDBException.php │ ├── DoctrineCacheAdapter.php │ ├── DynamoDb │ ├── BinaryValue.php │ ├── DynamoDbClient.php │ ├── Exception │ │ └── DynamoDbException.php │ ├── LockingSessionConnection.php │ ├── Marshaler.php │ ├── NumberValue.php │ ├── SessionConnectionConfigTrait.php │ ├── SessionConnectionInterface.php │ ├── SessionHandler.php │ ├── SetValue.php │ ├── StandardSessionConnection.php │ └── WriteRequestBatch.php │ ├── DynamoDbStreams │ ├── DynamoDbStreamsClient.php │ └── Exception │ │ └── DynamoDbStreamsException.php │ ├── EBS │ ├── EBSClient.php │ └── Exception │ │ └── EBSException.php │ ├── EC2InstanceConnect │ ├── EC2InstanceConnectClient.php │ └── Exception │ │ └── EC2InstanceConnectException.php │ ├── EKS │ ├── EKSClient.php │ └── Exception │ │ └── EKSException.php │ ├── Ec2 │ ├── Ec2Client.php │ └── Exception │ │ └── Ec2Exception.php │ ├── Ecr │ ├── EcrClient.php │ └── Exception │ │ └── EcrException.php │ ├── Ecs │ ├── EcsClient.php │ └── Exception │ │ └── EcsException.php │ ├── Efs │ ├── EfsClient.php │ └── Exception │ │ └── EfsException.php │ ├── ElastiCache │ ├── ElastiCacheClient.php │ └── Exception │ │ └── ElastiCacheException.php │ ├── ElasticBeanstalk │ ├── ElasticBeanstalkClient.php │ └── Exception │ │ └── ElasticBeanstalkException.php │ ├── ElasticInference │ ├── ElasticInferenceClient.php │ └── Exception │ │ └── ElasticInferenceException.php │ ├── ElasticLoadBalancing │ ├── ElasticLoadBalancingClient.php │ └── Exception │ │ └── ElasticLoadBalancingException.php │ ├── ElasticLoadBalancingV2 │ ├── ElasticLoadBalancingV2Client.php │ └── Exception │ │ └── ElasticLoadBalancingV2Exception.php │ ├── ElasticTranscoder │ ├── ElasticTranscoderClient.php │ └── Exception │ │ └── ElasticTranscoderException.php │ ├── ElasticsearchService │ ├── ElasticsearchServiceClient.php │ └── Exception │ │ └── ElasticsearchServiceException.php │ ├── Emr │ ├── EmrClient.php │ └── Exception │ │ └── EmrException.php │ ├── Endpoint │ ├── EndpointProvider.php │ ├── Partition.php │ ├── PartitionEndpointProvider.php │ ├── PartitionInterface.php │ └── PatternEndpointProvider.php │ ├── EndpointDiscovery │ ├── Configuration.php │ ├── ConfigurationInterface.php │ ├── ConfigurationProvider.php │ ├── EndpointDiscoveryMiddleware.php │ ├── EndpointList.php │ └── Exception │ │ └── ConfigurationException.php │ ├── EndpointParameterMiddleware.php │ ├── EventBridge │ ├── EventBridgeClient.php │ └── Exception │ │ └── EventBridgeException.php │ ├── Exception │ ├── AwsException.php │ ├── CouldNotCreateChecksumException.php │ ├── CredentialsException.php │ ├── CryptoException.php │ ├── CryptoPolyfillException.php │ ├── EventStreamDataException.php │ ├── IncalculablePayloadException.php │ ├── InvalidJsonException.php │ ├── InvalidRegionException.php │ ├── MultipartUploadException.php │ ├── UnresolvedApiException.php │ ├── UnresolvedEndpointException.php │ └── UnresolvedSignatureException.php │ ├── FMS │ ├── Exception │ │ └── FMSException.php │ └── FMSClient.php │ ├── FSx │ ├── Exception │ │ └── FSxException.php │ └── FSxClient.php │ ├── Firehose │ ├── Exception │ │ └── FirehoseException.php │ └── FirehoseClient.php │ ├── ForecastQueryService │ ├── Exception │ │ └── ForecastQueryServiceException.php │ └── ForecastQueryServiceClient.php │ ├── ForecastService │ ├── Exception │ │ └── ForecastServiceException.php │ └── ForecastServiceClient.php │ ├── FraudDetector │ ├── Exception │ │ └── FraudDetectorException.php │ └── FraudDetectorClient.php │ ├── GameLift │ ├── Exception │ │ └── GameLiftException.php │ └── GameLiftClient.php │ ├── Glacier │ ├── Exception │ │ └── GlacierException.php │ ├── GlacierClient.php │ ├── MultipartUploader.php │ └── TreeHash.php │ ├── GlobalAccelerator │ ├── Exception │ │ └── GlobalAcceleratorException.php │ └── GlobalAcceleratorClient.php │ ├── Glue │ ├── Exception │ │ └── GlueException.php │ └── GlueClient.php │ ├── Greengrass │ ├── Exception │ │ └── GreengrassException.php │ └── GreengrassClient.php │ ├── GroundStation │ ├── Exception │ │ └── GroundStationException.php │ └── GroundStationClient.php │ ├── GuardDuty │ ├── Exception │ │ └── GuardDutyException.php │ └── GuardDutyClient.php │ ├── Handler │ ├── GuzzleV5 │ │ ├── GuzzleHandler.php │ │ ├── GuzzleStream.php │ │ └── PsrStream.php │ └── GuzzleV6 │ │ └── GuzzleHandler.php │ ├── HandlerList.php │ ├── HasDataTrait.php │ ├── HasMonitoringEventsTrait.php │ ├── HashInterface.php │ ├── HashingStream.php │ ├── Health │ ├── Exception │ │ └── HealthException.php │ └── HealthClient.php │ ├── History.php │ ├── Honeycode │ ├── Exception │ │ └── HoneycodeException.php │ └── HoneycodeClient.php │ ├── IVS │ ├── Exception │ │ └── IVSException.php │ └── IVSClient.php │ ├── Iam │ ├── Exception │ │ └── IamException.php │ └── IamClient.php │ ├── IdempotencyTokenMiddleware.php │ ├── IdentityStore │ ├── Exception │ │ └── IdentityStoreException.php │ └── IdentityStoreClient.php │ ├── ImportExport │ ├── Exception │ │ └── ImportExportException.php │ └── ImportExportClient.php │ ├── Inspector │ ├── Exception │ │ └── InspectorException.php │ └── InspectorClient.php │ ├── IoT1ClickDevicesService │ ├── Exception │ │ └── IoT1ClickDevicesServiceException.php │ └── IoT1ClickDevicesServiceClient.php │ ├── IoT1ClickProjects │ ├── Exception │ │ └── IoT1ClickProjectsException.php │ └── IoT1ClickProjectsClient.php │ ├── IoTAnalytics │ ├── Exception │ │ └── IoTAnalyticsException.php │ └── IoTAnalyticsClient.php │ ├── IoTEvents │ ├── Exception │ │ └── IoTEventsException.php │ └── IoTEventsClient.php │ ├── IoTEventsData │ ├── Exception │ │ └── IoTEventsDataException.php │ └── IoTEventsDataClient.php │ ├── IoTJobsDataPlane │ ├── Exception │ │ └── IoTJobsDataPlaneException.php │ └── IoTJobsDataPlaneClient.php │ ├── IoTSecureTunneling │ ├── Exception │ │ └── IoTSecureTunnelingException.php │ └── IoTSecureTunnelingClient.php │ ├── IoTSiteWise │ ├── Exception │ │ └── IoTSiteWiseException.php │ └── IoTSiteWiseClient.php │ ├── IoTThingsGraph │ ├── Exception │ │ └── IoTThingsGraphException.php │ └── IoTThingsGraphClient.php │ ├── Iot │ ├── Exception │ │ └── IotException.php │ └── IotClient.php │ ├── IotDataPlane │ ├── Exception │ │ └── IotDataPlaneException.php │ └── IotDataPlaneClient.php │ ├── JsonCompiler.php │ ├── Kafka │ ├── Exception │ │ └── KafkaException.php │ └── KafkaClient.php │ ├── Kinesis │ ├── Exception │ │ └── KinesisException.php │ └── KinesisClient.php │ ├── KinesisAnalytics │ ├── Exception │ │ └── KinesisAnalyticsException.php │ └── KinesisAnalyticsClient.php │ ├── KinesisAnalyticsV2 │ ├── Exception │ │ └── KinesisAnalyticsV2Exception.php │ └── KinesisAnalyticsV2Client.php │ ├── KinesisVideo │ ├── Exception │ │ └── KinesisVideoException.php │ └── KinesisVideoClient.php │ ├── KinesisVideoArchivedMedia │ ├── Exception │ │ └── KinesisVideoArchivedMediaException.php │ └── KinesisVideoArchivedMediaClient.php │ ├── KinesisVideoMedia │ ├── Exception │ │ └── KinesisVideoMediaException.php │ └── KinesisVideoMediaClient.php │ ├── KinesisVideoSignalingChannels │ ├── Exception │ │ └── KinesisVideoSignalingChannelsException.php │ └── KinesisVideoSignalingChannelsClient.php │ ├── Kms │ ├── Exception │ │ └── KmsException.php │ └── KmsClient.php │ ├── LakeFormation │ ├── Exception │ │ └── LakeFormationException.php │ └── LakeFormationClient.php │ ├── Lambda │ ├── Exception │ │ └── LambdaException.php │ └── LambdaClient.php │ ├── LexModelBuildingService │ ├── Exception │ │ └── LexModelBuildingServiceException.php │ └── LexModelBuildingServiceClient.php │ ├── LexRuntimeService │ ├── Exception │ │ └── LexRuntimeServiceException.php │ └── LexRuntimeServiceClient.php │ ├── LicenseManager │ ├── Exception │ │ └── LicenseManagerException.php │ └── LicenseManagerClient.php │ ├── Lightsail │ ├── Exception │ │ └── LightsailException.php │ └── LightsailClient.php │ ├── LruArrayCache.php │ ├── MQ │ ├── Exception │ │ └── MQException.php │ └── MQClient.php │ ├── MTurk │ ├── Exception │ │ └── MTurkException.php │ └── MTurkClient.php │ ├── MachineLearning │ ├── Exception │ │ └── MachineLearningException.php │ └── MachineLearningClient.php │ ├── Macie │ ├── Exception │ │ └── MacieException.php │ └── MacieClient.php │ ├── Macie2 │ ├── Exception │ │ └── Macie2Exception.php │ └── Macie2Client.php │ ├── ManagedBlockchain │ ├── Exception │ │ └── ManagedBlockchainException.php │ └── ManagedBlockchainClient.php │ ├── MarketplaceCatalog │ ├── Exception │ │ └── MarketplaceCatalogException.php │ └── MarketplaceCatalogClient.php │ ├── MarketplaceCommerceAnalytics │ ├── Exception │ │ └── MarketplaceCommerceAnalyticsException.php │ └── MarketplaceCommerceAnalyticsClient.php │ ├── MarketplaceEntitlementService │ ├── Exception │ │ └── MarketplaceEntitlementServiceException.php │ └── MarketplaceEntitlementServiceClient.php │ ├── MarketplaceMetering │ ├── Exception │ │ └── MarketplaceMeteringException.php │ └── MarketplaceMeteringClient.php │ ├── MediaConnect │ ├── Exception │ │ └── MediaConnectException.php │ └── MediaConnectClient.php │ ├── MediaConvert │ ├── Exception │ │ └── MediaConvertException.php │ └── MediaConvertClient.php │ ├── MediaLive │ ├── Exception │ │ └── MediaLiveException.php │ └── MediaLiveClient.php │ ├── MediaPackage │ ├── Exception │ │ └── MediaPackageException.php │ └── MediaPackageClient.php │ ├── MediaPackageVod │ ├── Exception │ │ └── MediaPackageVodException.php │ └── MediaPackageVodClient.php │ ├── MediaStore │ ├── Exception │ │ └── MediaStoreException.php │ └── MediaStoreClient.php │ ├── MediaStoreData │ ├── Exception │ │ └── MediaStoreDataException.php │ └── MediaStoreDataClient.php │ ├── MediaTailor │ ├── Exception │ │ └── MediaTailorException.php │ └── MediaTailorClient.php │ ├── Middleware.php │ ├── MigrationHub │ ├── Exception │ │ └── MigrationHubException.php │ └── MigrationHubClient.php │ ├── MigrationHubConfig │ ├── Exception │ │ └── MigrationHubConfigException.php │ └── MigrationHubConfigClient.php │ ├── Mobile │ ├── Exception │ │ └── MobileException.php │ └── MobileClient.php │ ├── MockHandler.php │ ├── MonitoringEventsInterface.php │ ├── MultiRegionClient.php │ ├── Multipart │ ├── AbstractUploadManager.php │ ├── AbstractUploader.php │ └── UploadState.php │ ├── Neptune │ ├── Exception │ │ └── NeptuneException.php │ └── NeptuneClient.php │ ├── NetworkManager │ ├── Exception │ │ └── NetworkManagerException.php │ └── NetworkManagerClient.php │ ├── OpsWorks │ ├── Exception │ │ └── OpsWorksException.php │ └── OpsWorksClient.php │ ├── OpsWorksCM │ ├── Exception │ │ └── OpsWorksCMException.php │ └── OpsWorksCMClient.php │ ├── Organizations │ ├── Exception │ │ └── OrganizationsException.php │ └── OrganizationsClient.php │ ├── Outposts │ ├── Exception │ │ └── OutpostsException.php │ └── OutpostsClient.php │ ├── PI │ ├── Exception │ │ └── PIException.php │ └── PIClient.php │ ├── Personalize │ ├── Exception │ │ └── PersonalizeException.php │ └── PersonalizeClient.php │ ├── PersonalizeEvents │ ├── Exception │ │ └── PersonalizeEventsException.php │ └── PersonalizeEventsClient.php │ ├── PersonalizeRuntime │ ├── Exception │ │ └── PersonalizeRuntimeException.php │ └── PersonalizeRuntimeClient.php │ ├── PhpHash.php │ ├── Pinpoint │ ├── Exception │ │ └── PinpointException.php │ └── PinpointClient.php │ ├── PinpointEmail │ ├── Exception │ │ └── PinpointEmailException.php │ └── PinpointEmailClient.php │ ├── PinpointSMSVoice │ ├── Exception │ │ └── PinpointSMSVoiceException.php │ └── PinpointSMSVoiceClient.php │ ├── Polly │ ├── Exception │ │ └── PollyException.php │ └── PollyClient.php │ ├── PresignUrlMiddleware.php │ ├── Pricing │ ├── Exception │ │ └── PricingException.php │ └── PricingClient.php │ ├── Psr16CacheAdapter.php │ ├── PsrCacheAdapter.php │ ├── QLDB │ ├── Exception │ │ └── QLDBException.php │ └── QLDBClient.php │ ├── QLDBSession │ ├── Exception │ │ └── QLDBSessionException.php │ └── QLDBSessionClient.php │ ├── QuickSight │ ├── Exception │ │ └── QuickSightException.php │ └── QuickSightClient.php │ ├── RAM │ ├── Exception │ │ └── RAMException.php │ └── RAMClient.php │ ├── RDSDataService │ ├── Exception │ │ └── RDSDataServiceException.php │ └── RDSDataServiceClient.php │ ├── Rds │ ├── AuthTokenGenerator.php │ ├── Exception │ │ └── RdsException.php │ └── RdsClient.php │ ├── Redshift │ ├── Exception │ │ └── RedshiftException.php │ └── RedshiftClient.php │ ├── RedshiftDataAPIService │ ├── Exception │ │ └── RedshiftDataAPIServiceException.php │ └── RedshiftDataAPIServiceClient.php │ ├── Rekognition │ ├── Exception │ │ └── RekognitionException.php │ └── RekognitionClient.php │ ├── ResourceGroups │ ├── Exception │ │ └── ResourceGroupsException.php │ └── ResourceGroupsClient.php │ ├── ResourceGroupsTaggingAPI │ ├── Exception │ │ └── ResourceGroupsTaggingAPIException.php │ └── ResourceGroupsTaggingAPIClient.php │ ├── ResponseContainerInterface.php │ ├── Result.php │ ├── ResultInterface.php │ ├── ResultPaginator.php │ ├── Retry │ ├── Configuration.php │ ├── ConfigurationInterface.php │ ├── ConfigurationProvider.php │ ├── Exception │ │ └── ConfigurationException.php │ ├── QuotaManager.php │ ├── RateLimiter.php │ └── RetryHelperTrait.php │ ├── RetryMiddleware.php │ ├── RetryMiddlewareV2.php │ ├── RoboMaker │ ├── Exception │ │ └── RoboMakerException.php │ └── RoboMakerClient.php │ ├── Route53 │ ├── Exception │ │ └── Route53Exception.php │ └── Route53Client.php │ ├── Route53Domains │ ├── Exception │ │ └── Route53DomainsException.php │ └── Route53DomainsClient.php │ ├── Route53Resolver │ ├── Exception │ │ └── Route53ResolverException.php │ └── Route53ResolverClient.php │ ├── S3 │ ├── AmbiguousSuccessParser.php │ ├── ApplyChecksumMiddleware.php │ ├── BatchDelete.php │ ├── BucketEndpointArnMiddleware.php │ ├── BucketEndpointMiddleware.php │ ├── Crypto │ │ ├── CryptoParamsTrait.php │ │ ├── CryptoParamsTraitV2.php │ │ ├── HeadersMetadataStrategy.php │ │ ├── InstructionFileMetadataStrategy.php │ │ ├── S3EncryptionClient.php │ │ ├── S3EncryptionClientV2.php │ │ ├── S3EncryptionMultipartUploader.php │ │ ├── S3EncryptionMultipartUploaderV2.php │ │ └── UserAgentTrait.php │ ├── Exception │ │ ├── DeleteMultipleObjectsException.php │ │ ├── PermanentRedirectException.php │ │ ├── S3Exception.php │ │ └── S3MultipartUploadException.php │ ├── GetBucketLocationParser.php │ ├── MultipartCopy.php │ ├── MultipartUploader.php │ ├── MultipartUploadingTrait.php │ ├── ObjectCopier.php │ ├── ObjectUploader.php │ ├── PermanentRedirectMiddleware.php │ ├── PostObject.php │ ├── PostObjectV4.php │ ├── PutObjectUrlMiddleware.php │ ├── RegionalEndpoint │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ └── Exception │ │ │ └── ConfigurationException.php │ ├── RetryableMalformedResponseParser.php │ ├── S3Client.php │ ├── S3ClientInterface.php │ ├── S3ClientTrait.php │ ├── S3EndpointMiddleware.php │ ├── S3MultiRegionClient.php │ ├── S3UriParser.php │ ├── SSECMiddleware.php │ ├── StreamWrapper.php │ ├── Transfer.php │ └── UseArnRegion │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ └── Exception │ │ └── ConfigurationException.php │ ├── S3Control │ ├── Exception │ │ └── S3ControlException.php │ ├── S3ControlClient.php │ └── S3ControlEndpointMiddleware.php │ ├── SSO │ ├── Exception │ │ └── SSOException.php │ └── SSOClient.php │ ├── SSOAdmin │ ├── Exception │ │ └── SSOAdminException.php │ └── SSOAdminClient.php │ ├── SSOOIDC │ ├── Exception │ │ └── SSOOIDCException.php │ └── SSOOIDCClient.php │ ├── SageMaker │ ├── Exception │ │ └── SageMakerException.php │ └── SageMakerClient.php │ ├── SageMakerRuntime │ ├── Exception │ │ └── SageMakerRuntimeException.php │ └── SageMakerRuntimeClient.php │ ├── SavingsPlans │ ├── Exception │ │ └── SavingsPlansException.php │ └── SavingsPlansClient.php │ ├── Schemas │ ├── Exception │ │ └── SchemasException.php │ └── SchemasClient.php │ ├── Sdk.php │ ├── SecretsManager │ ├── Exception │ │ └── SecretsManagerException.php │ └── SecretsManagerClient.php │ ├── SecurityHub │ ├── Exception │ │ └── SecurityHubException.php │ └── SecurityHubClient.php │ ├── ServerlessApplicationRepository │ ├── Exception │ │ └── ServerlessApplicationRepositoryException.php │ └── ServerlessApplicationRepositoryClient.php │ ├── ServiceCatalog │ ├── Exception │ │ └── ServiceCatalogException.php │ └── ServiceCatalogClient.php │ ├── ServiceDiscovery │ ├── Exception │ │ └── ServiceDiscoveryException.php │ └── ServiceDiscoveryClient.php │ ├── ServiceQuotas │ ├── Exception │ │ └── ServiceQuotasException.php │ └── ServiceQuotasClient.php │ ├── Ses │ ├── Exception │ │ └── SesException.php │ └── SesClient.php │ ├── SesV2 │ ├── Exception │ │ └── SesV2Exception.php │ └── SesV2Client.php │ ├── Sfn │ ├── Exception │ │ └── SfnException.php │ └── SfnClient.php │ ├── Shield │ ├── Exception │ │ └── ShieldException.php │ └── ShieldClient.php │ ├── Signature │ ├── AnonymousSignature.php │ ├── S3SignatureV4.php │ ├── SignatureInterface.php │ ├── SignatureProvider.php │ ├── SignatureTrait.php │ └── SignatureV4.php │ ├── Sms │ ├── Exception │ │ └── SmsException.php │ └── SmsClient.php │ ├── SnowBall │ ├── Exception │ │ └── SnowBallException.php │ └── SnowBallClient.php │ ├── Sns │ ├── Exception │ │ └── SnsException.php │ └── SnsClient.php │ ├── Sqs │ ├── Exception │ │ └── SqsException.php │ └── SqsClient.php │ ├── Ssm │ ├── Exception │ │ └── SsmException.php │ └── SsmClient.php │ ├── StorageGateway │ ├── Exception │ │ └── StorageGatewayException.php │ └── StorageGatewayClient.php │ ├── StreamRequestPayloadMiddleware.php │ ├── Sts │ ├── Exception │ │ └── StsException.php │ ├── RegionalEndpoints │ │ ├── Configuration.php │ │ ├── ConfigurationInterface.php │ │ ├── ConfigurationProvider.php │ │ └── Exception │ │ │ └── ConfigurationException.php │ └── StsClient.php │ ├── Support │ ├── Exception │ │ └── SupportException.php │ └── SupportClient.php │ ├── Swf │ ├── Exception │ │ └── SwfException.php │ └── SwfClient.php │ ├── Synthetics │ ├── Exception │ │ └── SyntheticsException.php │ └── SyntheticsClient.php │ ├── Textract │ ├── Exception │ │ └── TextractException.php │ └── TextractClient.php │ ├── TraceMiddleware.php │ ├── TranscribeService │ ├── Exception │ │ └── TranscribeServiceException.php │ └── TranscribeServiceClient.php │ ├── Transfer │ ├── Exception │ │ └── TransferException.php │ └── TransferClient.php │ ├── Translate │ ├── Exception │ │ └── TranslateException.php │ └── TranslateClient.php │ ├── WAFV2 │ ├── Exception │ │ └── WAFV2Exception.php │ └── WAFV2Client.php │ ├── Waf │ ├── Exception │ │ └── WafException.php │ └── WafClient.php │ ├── WafRegional │ ├── Exception │ │ └── WafRegionalException.php │ └── WafRegionalClient.php │ ├── Waiter.php │ ├── WorkDocs │ ├── Exception │ │ └── WorkDocsException.php │ └── WorkDocsClient.php │ ├── WorkLink │ ├── Exception │ │ └── WorkLinkException.php │ └── WorkLinkClient.php │ ├── WorkMail │ ├── Exception │ │ └── WorkMailException.php │ └── WorkMailClient.php │ ├── WorkMailMessageFlow │ ├── Exception │ │ └── WorkMailMessageFlowException.php │ └── WorkMailMessageFlowClient.php │ ├── WorkSpaces │ ├── Exception │ │ └── WorkSpacesException.php │ └── WorkSpacesClient.php │ ├── WrappedHttpHandler.php │ ├── XRay │ ├── Exception │ │ └── XRayException.php │ └── XRayClient.php │ ├── data │ ├── accessanalyzer │ │ └── 2019-11-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── acm-pca │ │ └── 2017-08-22 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── acm │ │ └── 2015-12-08 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── alexaforbusiness │ │ └── 2017-11-09 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── aliases.json.php │ ├── amplify │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── apigateway │ │ └── 2015-07-09 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── apigatewaymanagementapi │ │ └── 2018-11-29 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── apigatewayv2 │ │ └── 2018-11-29 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── appconfig │ │ └── 2019-10-09 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── appflow │ │ └── 2020-08-23 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── application-autoscaling │ │ └── 2016-02-06 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── application-insights │ │ └── 2018-11-25 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── appmesh │ │ ├── 2018-10-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ │ └── 2019-01-25 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── appstream │ │ └── 2016-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── appsync │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── athena │ │ └── 2017-05-18 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── autoscaling-plans │ │ └── 2018-01-06 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── autoscaling │ │ └── 2011-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── backup │ │ └── 2018-11-15 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── batch │ │ └── 2016-08-10 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── braket │ │ └── 2019-09-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── budgets │ │ └── 2016-10-20 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── ce │ │ └── 2017-10-25 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── chime │ │ └── 2018-05-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── cloud9 │ │ └── 2017-09-23 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── clouddirectory │ │ ├── 2016-05-10 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ │ └── 2017-01-11 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── cloudformation │ │ └── 2010-05-15 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── cloudfront │ │ ├── 2015-07-27 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-01-28 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-08-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-08-20 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-09-07 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-09-29 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-11-25 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2017-03-25 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2017-10-30 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2018-06-18 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2018-11-05 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2019-03-26 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ └── 2020-05-31 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── cloudhsm │ │ └── 2014-05-30 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── cloudhsmv2 │ │ └── 2017-04-28 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── cloudsearch │ │ └── 2013-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── cloudsearchdomain │ │ └── 2013-01-01 │ │ │ └── api-2.json.php │ ├── cloudtrail │ │ └── 2013-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── codeartifact │ │ └── 2018-09-22 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── codebuild │ │ └── 2016-10-06 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── codecommit │ │ └── 2015-04-13 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── codedeploy │ │ └── 2014-10-06 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── codeguru-reviewer │ │ └── 2019-09-19 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── codeguruprofiler │ │ └── 2019-07-18 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── codepipeline │ │ └── 2015-07-09 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── codestar-connections │ │ └── 2019-12-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── codestar-notifications │ │ └── 2019-10-15 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── codestar │ │ └── 2017-04-19 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── cognito-identity │ │ └── 2014-06-30 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── cognito-idp │ │ └── 2016-04-18 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── cognito-sync │ │ └── 2014-06-30 │ │ │ └── api-2.json.php │ ├── comprehend │ │ └── 2017-11-27 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── comprehendmedical │ │ └── 2018-10-30 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── compute-optimizer │ │ └── 2019-11-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── config │ │ └── 2014-11-12 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── connect │ │ └── 2017-08-08 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── connectparticipant │ │ └── 2018-09-07 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── cur │ │ └── 2017-01-06 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── data.iot │ │ └── 2015-05-28 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── dataexchange │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── datapipeline │ │ └── 2012-10-29 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── datasync │ │ └── 2018-11-09 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── dax │ │ └── 2017-04-19 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── detective │ │ └── 2018-10-26 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── devicefarm │ │ └── 2015-06-23 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── directconnect │ │ └── 2012-10-25 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── discovery │ │ └── 2015-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── dlm │ │ └── 2018-01-12 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── dms │ │ └── 2016-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── docdb │ │ └── 2014-10-31 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── ds │ │ └── 2015-04-16 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── dynamodb │ │ ├── 2011-12-05 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ └── 2012-08-10 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── ebs │ │ └── 2019-11-02 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── ec2-instance-connect │ │ └── 2018-04-02 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── ec2 │ │ ├── 2015-10-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-04-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ │ ├── 2016-09-15 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ │ └── 2016-11-15 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── ecr │ │ └── 2015-09-21 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── ecs │ │ └── 2014-11-13 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── eks │ │ └── 2017-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── elastic-inference │ │ └── 2017-07-25 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── elasticache │ │ └── 2015-02-02 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── elasticbeanstalk │ │ └── 2010-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── elasticfilesystem │ │ └── 2015-02-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── elasticloadbalancing │ │ └── 2012-06-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── elasticloadbalancingv2 │ │ └── 2015-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── elasticmapreduce │ │ └── 2009-03-31 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── elastictranscoder │ │ └── 2012-09-25 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── email │ │ └── 2010-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── endpoints.json.php │ ├── endpoints_prefix_history.json.php │ ├── entitlement.marketplace │ │ └── 2017-01-11 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── es │ │ └── 2015-01-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── eventbridge │ │ └── 2015-10-07 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── events │ │ └── 2015-10-07 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── firehose │ │ └── 2015-08-04 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── fms │ │ └── 2018-01-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── forecast │ │ └── 2018-06-26 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── forecastquery │ │ └── 2018-06-26 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── frauddetector │ │ └── 2019-11-15 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── fsx │ │ └── 2018-03-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── gamelift │ │ └── 2015-10-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── glacier │ │ └── 2012-06-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── globalaccelerator │ │ └── 2018-08-08 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── glue │ │ └── 2017-03-31 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── greengrass │ │ └── 2017-06-07 │ │ │ └── api-2.json.php │ ├── groundstation │ │ └── 2019-05-23 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── guardduty │ │ └── 2017-11-28 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── health │ │ └── 2016-08-04 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── honeycode │ │ └── 2020-03-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── iam │ │ └── 2010-05-08 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── identitystore │ │ └── 2020-06-15 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── imagebuilder │ │ └── 2019-12-02 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── importexport │ │ └── 2010-06-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── inspector │ │ └── 2016-02-16 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── iot-jobs-data │ │ └── 2017-09-29 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── iot │ │ └── 2015-05-28 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── iot1click-devices │ │ └── 2018-05-14 │ │ │ └── api-2.json.php │ ├── iot1click-projects │ │ └── 2018-05-14 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── iotanalytics │ │ └── 2017-11-27 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── iotevents-data │ │ └── 2018-10-23 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── iotevents │ │ └── 2018-07-27 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── iotsecuretunneling │ │ └── 2018-10-05 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── iotsitewise │ │ └── 2019-12-02 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── iotthingsgraph │ │ └── 2018-09-06 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── ivs │ │ └── 2020-07-14 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── kafka │ │ └── 2018-11-14 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── kendra │ │ └── 2019-02-03 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── kinesis-video-archived-media │ │ └── 2017-09-30 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── kinesis-video-media │ │ └── 2017-09-30 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── kinesis-video-signaling │ │ └── 2019-12-04 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── kinesis │ │ └── 2013-12-02 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── kinesisanalytics │ │ └── 2015-08-14 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── kinesisanalyticsv2 │ │ └── 2018-05-23 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── kinesisvideo │ │ └── 2017-09-30 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── kms │ │ └── 2014-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── lakeformation │ │ └── 2017-03-31 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── lambda │ │ └── 2015-03-31 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── lex-models │ │ └── 2017-04-19 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── license-manager │ │ └── 2018-08-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── lightsail │ │ └── 2016-11-28 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── logs │ │ └── 2014-03-28 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── machinelearning │ │ └── 2014-12-12 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── macie │ │ └── 2017-12-19 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── macie2 │ │ └── 2020-01-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── managedblockchain │ │ └── 2018-09-24 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── manifest.json.php │ ├── marketplace-catalog │ │ └── 2018-09-17 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── marketplacecommerceanalytics │ │ └── 2015-07-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── mediaconnect │ │ └── 2018-11-14 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── mediaconvert │ │ └── 2017-08-29 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── medialive │ │ └── 2017-10-14 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── mediapackage-vod │ │ └── 2018-11-07 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── mediapackage │ │ └── 2017-10-12 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── mediastore-data │ │ └── 2017-09-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── mediastore │ │ └── 2017-09-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── mediatailor │ │ └── 2018-04-23 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── metering.marketplace │ │ └── 2016-01-14 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── mgh │ │ └── 2017-05-31 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── migrationhub-config │ │ └── 2019-06-30 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── mobile │ │ └── 2017-07-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── monitoring │ │ └── 2010-08-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── mq │ │ └── 2017-11-27 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── mturk-requester │ │ └── 2017-01-17 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── neptune │ │ └── 2014-10-31 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── networkmanager │ │ └── 2019-07-05 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── opsworks │ │ └── 2013-02-18 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── opsworkscm │ │ └── 2016-11-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── organizations │ │ └── 2016-11-28 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── outposts │ │ └── 2019-12-03 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── personalize-events │ │ └── 2018-03-22 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── personalize-runtime │ │ └── 2018-05-22 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── personalize │ │ └── 2018-05-22 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── pi │ │ └── 2018-02-27 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── pinpoint-email │ │ └── 2018-07-26 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── pinpoint │ │ └── 2016-12-01 │ │ │ └── api-2.json.php │ ├── polly │ │ └── 2016-06-10 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── pricing │ │ └── 2017-10-15 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── qldb-session │ │ └── 2019-07-11 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── qldb │ │ └── 2019-01-02 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── quicksight │ │ └── 2018-04-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── ram │ │ └── 2018-01-04 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── rds-data │ │ └── 2018-08-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── rds │ │ ├── 2014-09-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ │ └── 2014-10-31 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── redshift-data │ │ └── 2019-12-20 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── redshift │ │ └── 2012-12-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── rekognition │ │ └── 2016-06-27 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── resource-groups │ │ └── 2017-11-27 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── resourcegroupstaggingapi │ │ └── 2017-01-26 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── robomaker │ │ └── 2018-06-29 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── route53 │ │ └── 2013-04-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── route53domains │ │ └── 2014-05-15 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── route53resolver │ │ └── 2018-04-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── runtime.lex │ │ └── 2016-11-28 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── runtime.sagemaker │ │ └── 2017-05-13 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── s3 │ │ └── 2006-03-01 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ ├── waiters-1.json.php │ │ │ └── waiters-2.json.php │ ├── s3control │ │ └── 2018-08-20 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── sagemaker-a2i-runtime │ │ └── 2019-11-07 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── sagemaker │ │ └── 2017-07-24 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── savingsplans │ │ └── 2019-06-28 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── schemas │ │ └── 2019-12-02 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── secretsmanager │ │ └── 2017-10-17 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── securityhub │ │ └── 2018-10-26 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── serverlessrepo │ │ └── 2017-09-08 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── service-quotas │ │ └── 2019-06-24 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── servicecatalog │ │ └── 2015-12-10 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── servicediscovery │ │ └── 2017-03-14 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── sesv2 │ │ └── 2019-09-27 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── shield │ │ └── 2016-06-02 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── signer │ │ └── 2017-08-25 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── waiters-2.json.php │ ├── sms-voice │ │ └── 2018-09-05 │ │ │ └── api-2.json.php │ ├── sms │ │ └── 2016-10-24 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── snowball │ │ └── 2016-06-30 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── sns │ │ └── 2010-03-31 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── sqs │ │ └── 2012-11-05 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── ssm │ │ └── 2014-11-06 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ ├── smoke.json.php │ │ │ └── waiters-2.json.php │ ├── sso-admin │ │ └── 2020-07-20 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── sso-oidc │ │ └── 2019-06-10 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── sso │ │ └── 2019-06-10 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── states │ │ └── 2016-11-23 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── storagegateway │ │ └── 2013-06-30 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── streams.dynamodb │ │ └── 2012-08-10 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── sts │ │ └── 2011-06-15 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── support │ │ └── 2013-04-15 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── swf │ │ └── 2012-01-25 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── synthetics │ │ └── 2017-10-11 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── textract │ │ └── 2018-06-27 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── transcribe │ │ └── 2017-10-26 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── transfer │ │ └── 2018-11-05 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── translate │ │ └── 2017-07-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── waf-regional │ │ └── 2016-11-28 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── waf │ │ └── 2015-08-24 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── wafv2 │ │ └── 2019-07-29 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ ├── workdocs │ │ └── 2016-05-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── worklink │ │ └── 2018-09-25 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── workmail │ │ └── 2017-10-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── workmailmessageflow │ │ └── 2019-05-01 │ │ │ ├── api-2.json.php │ │ │ └── paginators-1.json.php │ ├── workspaces │ │ └── 2015-04-08 │ │ │ ├── api-2.json.php │ │ │ ├── paginators-1.json.php │ │ │ └── smoke.json.php │ └── xray │ │ └── 2016-04-12 │ │ ├── api-2.json.php │ │ └── paginators-1.json.php │ ├── functions.php │ ├── imagebuilder │ ├── Exception │ │ └── imagebuilderException.php │ └── imagebuilderClient.php │ ├── kendra │ ├── Exception │ │ └── kendraException.php │ └── kendraClient.php │ └── signer │ ├── Exception │ └── signerException.php │ └── signerClient.php ├── bin ├── jp.php └── jp.php.bat ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json ├── guzzlehttp ├── guzzle │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADING.md │ ├── composer.json │ └── src │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── ClientTrait.php │ │ ├── Cookie │ │ ├── CookieJar.php │ │ ├── CookieJarInterface.php │ │ ├── FileCookieJar.php │ │ ├── SessionCookieJar.php │ │ └── SetCookie.php │ │ ├── Exception │ │ ├── BadResponseException.php │ │ ├── ClientException.php │ │ ├── ConnectException.php │ │ ├── GuzzleException.php │ │ ├── InvalidArgumentException.php │ │ ├── RequestException.php │ │ ├── ServerException.php │ │ ├── TooManyRedirectsException.php │ │ └── TransferException.php │ │ ├── Handler │ │ ├── CurlFactory.php │ │ ├── CurlFactoryInterface.php │ │ ├── CurlHandler.php │ │ ├── CurlMultiHandler.php │ │ ├── EasyHandle.php │ │ ├── MockHandler.php │ │ ├── Proxy.php │ │ └── StreamHandler.php │ │ ├── HandlerStack.php │ │ ├── MessageFormatter.php │ │ ├── Middleware.php │ │ ├── Pool.php │ │ ├── PrepareBodyMiddleware.php │ │ ├── RedirectMiddleware.php │ │ ├── RequestOptions.php │ │ ├── RetryMiddleware.php │ │ ├── TransferStats.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php ├── promises │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ └── src │ │ ├── AggregateException.php │ │ ├── CancellationException.php │ │ ├── Coroutine.php │ │ ├── EachPromise.php │ │ ├── FulfilledPromise.php │ │ ├── Promise.php │ │ ├── PromiseInterface.php │ │ ├── PromisorInterface.php │ │ ├── RejectedPromise.php │ │ ├── RejectionException.php │ │ ├── TaskQueue.php │ │ ├── TaskQueueInterface.php │ │ ├── functions.php │ │ └── functions_include.php └── psr7 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── AppendStream.php │ ├── BufferStream.php │ ├── CachingStream.php │ ├── DroppingStream.php │ ├── FnStream.php │ ├── InflateStream.php │ ├── LazyOpenStream.php │ ├── LimitStream.php │ ├── MessageTrait.php │ ├── MultipartStream.php │ ├── NoSeekStream.php │ ├── PumpStream.php │ ├── Request.php │ ├── Response.php │ ├── Rfc7230.php │ ├── ServerRequest.php │ ├── Stream.php │ ├── StreamDecoratorTrait.php │ ├── StreamWrapper.php │ ├── UploadedFile.php │ ├── Uri.php │ ├── UriNormalizer.php │ ├── UriResolver.php │ ├── functions.php │ └── functions_include.php ├── mtdowling └── jmespath.php │ ├── LICENSE │ ├── README.rst │ ├── bin │ ├── jp.php │ └── perf.php │ ├── composer.json │ └── src │ ├── AstRuntime.php │ ├── CompilerRuntime.php │ ├── DebugRuntime.php │ ├── Env.php │ ├── FnDispatcher.php │ ├── JmesPath.php │ ├── Lexer.php │ ├── Parser.php │ ├── SyntaxErrorException.php │ ├── TreeCompiler.php │ ├── TreeInterpreter.php │ └── Utils.php ├── psr ├── http-client │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ClientExceptionInterface.php │ │ ├── ClientInterface.php │ │ ├── NetworkExceptionInterface.php │ │ └── RequestExceptionInterface.php └── http-message │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── MessageInterface.php │ ├── RequestInterface.php │ ├── ResponseInterface.php │ ├── ServerRequestInterface.php │ ├── StreamInterface.php │ ├── UploadedFileInterface.php │ └── UriInterface.php ├── ralouphie └── getallheaders │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── getallheaders.php └── symfony └── polyfill-mbstring ├── LICENSE ├── Mbstring.php ├── README.md ├── Resources └── unidata │ ├── lowerCase.php │ ├── titleCaseRegexp.php │ └── upperCase.php ├── bootstrap.php └── composer.json /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | [ 'ListCertificates' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxItems', 'output_token' => 'NextToken', 'result_key' => 'CertificateSummaryList', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListCertificates', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetCertificate', 'input' => [ 'CertificateArn' => 'arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/aliases.json.php: -------------------------------------------------------------------------------- 1 | [ 'ApiGatewayV2' => [ '2018-11-29' => [ 'GetApi' => 'GetApiResource', ], ], 'CloudHSM' => [ '2014-05-30' => [ 'GetConfig' => 'GetConfigFiles', ], ], 'GroundStation' => [ '2019-05-23' => [ 'GetConfig' => 'GetMissionProfileConfig', ], ], 'Pinpoint' => [ '2016-12-01' => [ 'GetEndpoint' => 'GetUserEndpoint', 'UpdateEndpoint' => 'UpdateUserEndpoint', 'UpdateEndpointsBatch' => 'UpdateUserEndpointsBatch', ], ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/amplify/2017-07-25/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'GetDomainNames', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'CreateUsagePlanKey', 'input' => [ 'usagePlanId' => 'foo', 'keyId' => 'bar', 'keyType' => 'fixx', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/apigatewaymanagementapi/2018-11-29/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/apigatewayv2/2018-11-29/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/application-autoscaling/2016-02-06/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeScalableTargets', 'input' => [ 'ServiceNamespace' => 'ec2', ], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeImagePermissions' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'DescribeImages' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeStacks', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/appsync/2017-07-25/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/athena/2017-05-18/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListNamedQueries', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/autoscaling-plans/2018-01-06/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeScalingProcessTypes', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'CreateLaunchConfiguration', 'input' => [ 'LaunchConfigurationName' => 'hello, world', 'ImageId' => 'ami-12345678', 'InstanceType' => 'm1.small', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/batch/2016-08-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeComputeEnvironments', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/braket/2019-09-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'SearchDevices' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'devices', ], 'SearchQuantumTasks' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'quantumTasks', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloud9/2017-09-23/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeEnvironmentMemberships' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', ], 'ListEnvironments' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudformation/2010-05-15/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListStacks', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'CreateStack', 'input' => [ 'StackName' => 'fakestack', 'TemplateURL' => 'http://s3.amazonaws.com/foo/bar', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudfront/2017-10-30/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListCloudFrontOriginAccessIdentities', 'input' => [ 'MaxItems' => '1', ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetDistribution', 'input' => [ 'Id' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudfront/2018-06-18/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListCloudFrontOriginAccessIdentities', 'input' => [ 'MaxItems' => '1', ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetDistribution', 'input' => [ 'Id' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudfront/2018-11-05/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListCloudFrontOriginAccessIdentities', 'input' => [ 'MaxItems' => '1', ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetDistribution', 'input' => [ 'Id' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudfront/2019-03-26/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListCloudFrontOriginAccessIdentities', 'input' => [ 'MaxItems' => '1', ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetDistribution', 'input' => [ 'Id' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudfront/2020-05-31/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListCloudFrontOriginAccessIdentities', 'input' => [ 'MaxItems' => '1', ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetDistribution', 'input' => [ 'Id' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeBackups' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'DescribeClusters' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListTags' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeClusters', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'ListTags', 'input' => [ 'ResourceId' => 'bogus-arn', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeAnalysisSchemes' => [ 'result_key' => 'AnalysisSchemes', ], 'DescribeDomains' => [ 'result_key' => 'DomainStatusList', ], 'DescribeExpressions' => [ 'result_key' => 'Expressions', ], 'DescribeIndexFields' => [ 'result_key' => 'IndexFields', ], 'DescribeSuggesters' => [ 'result_key' => 'Suggesters', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeDomains', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeIndexFields', 'input' => [ 'DomainName' => 'fakedomain', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cloudtrail/2013-11-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeTrails', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DeleteTrail', 'input' => [ 'Name' => 'faketrail', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/codebuild/2016-10-06/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListBuilds', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/codecommit/2015-04-13/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListRepositories', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'ListBranches', 'input' => [ 'repositoryName' => 'fake-repo', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/codedeploy/2014-10-06/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListApplications', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetDeployment', 'input' => [ 'deploymentId' => 'd-USUAELQEX', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/codepipeline/2015-07-09/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListPipelines', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetPipeline', 'input' => [ 'name' => 'fake-pipeline', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/codestar-connections/2019-12-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListConnections' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListHosts' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/codestar/2017-04-19/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/codestar/2017-04-19/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListProjects', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListUserPools', 'input' => [ 'MaxResults' => 10, ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeUserPool', 'input' => [ 'UserPoolId' => 'us-east-1:aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/comprehendmedical/2018-10-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/compute-optimizer/2019-11-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/config/2014-11-12/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeConfigurationRecorders', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetResourceConfigHistory', 'input' => [ 'resourceType' => 'fake-type', 'resourceId' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/connectparticipant/2018-09-07/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'GetTranscript' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cur/2017-01-06/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeReportDefinitions' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/cur/2017-01-06/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'DescribeReportDefinitions', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/data.iot/2015-05-28/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/data.iot/2015-05-28/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'GetThingShadow', 'input' => [ 'thingName' => 'fake-thing', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/dax/2017-04-19/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/detective/2018-10-26/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListGraphs' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListInvitations' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListMembers' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/devicefarm/2015-06-23/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListDevices', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetDevice', 'input' => [ 'arn' => 'arn:aws:devicefarm:us-west-2::device:000000000000000000000000fake-arn', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/directconnect/2012-10-25/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeConnections', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeConnections', 'input' => [ 'connectionId' => 'fake-connection', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeContinuousExports' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', ], 'DescribeImportTasks' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeAgents', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/dlm/2018-01-12/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeEndpoints', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeTableStatistics', 'input' => [ 'ReplicationTaskArn' => 'arn:aws:acm:region:123456789012', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/docdb/2014-10-31/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeDBEngineVersions', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeDBInstances', 'input' => [ 'DBInstanceIdentifier' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeDomainControllers' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'Limit', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeDirectories', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'CreateDirectory', 'input' => [ 'Name' => '', 'Password' => '', 'Size' => '', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListTables', 'input' => [ 'Limit' => 1, ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeTable', 'input' => [ 'TableName' => 'fake-table', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/dynamodb/2012-08-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListTables', 'input' => [ 'Limit' => 1, ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeTable', 'input' => [ 'TableName' => 'fake-table', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/ebs/2019-11-02/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListChangedBlocks' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListSnapshotBlocks' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/ec2-instance-connect/2018-04-02/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/ec2/2016-11-15/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeRegions', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeInstances', 'input' => [ 'InstanceIds' => [ 'i-12345678', ], ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/ecr/2015-09-21/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeRepositories', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'ListImages', 'input' => [ 'repositoryName' => 'not-a-real-repository', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/ecs/2014-11-13/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListClusters', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'StopTask', 'input' => [ 'task' => 'xxxxxxxxxxx-xxxxxxxxxxxx-xxxxxxxxxxx', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/elastic-inference/2017-07-25/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeAccelerators' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'acceleratorSet', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/elasticache/2015-02-02/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeEvents', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeCacheClusters', 'input' => [ 'CacheClusterId' => 'fake_cluster', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/elasticbeanstalk/2010-12-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListAvailableSolutionStacks', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeEnvironmentResources', 'input' => [ 'EnvironmentId' => 'fake_environment', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/elasticfilesystem/2015-02-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeFileSystems', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DeleteFileSystem', 'input' => [ 'FileSystemId' => 'fs-c5a1446c', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/elasticloadbalancing/2012-06-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeLoadBalancers', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeLoadBalancers', 'input' => [ 'LoadBalancerNames' => [ 'fake_load_balancer', ], ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/elasticloadbalancingv2/2015-12-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeLoadBalancers', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeLoadBalancers', 'input' => [ 'LoadBalancerArns' => [ 'fake_load_balancer', ], ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/elasticmapreduce/2009-03-31/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListClusters', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeCluster', 'input' => [ 'ClusterId' => 'fake_cluster', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/elastictranscoder/2012-09-25/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListPresets', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'ReadJob', 'input' => [ 'Id' => 'fake_job', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/elastictranscoder/2012-09-25/waiters-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'JobComplete' => [ 'operation' => 'ReadJob', 'success_type' => 'output', 'success_path' => 'Job.Status', 'interval' => 30, 'max_attempts' => 120, 'success_value' => 'Complete', 'failure_value' => [ 'Canceled', 'Error', ], ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/email/2010-12-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListIdentities', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'VerifyEmailIdentity', 'input' => [ 'EmailAddress' => 'fake_email', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/email/2010-12-01/waiters-1.json.php: -------------------------------------------------------------------------------- 1 | [ '__default__' => [ 'interval' => 3, 'max_attempts' => 20, ], 'IdentityExists' => [ 'operation' => 'GetIdentityVerificationAttributes', 'success_type' => 'output', 'success_path' => 'VerificationAttributes[].VerificationStatus', 'success_value' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/email/2010-12-01/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [ 'IdentityExists' => [ 'delay' => 3, 'operation' => 'GetIdentityVerificationAttributes', 'maxAttempts' => 20, 'acceptors' => [ [ 'expected' => 'Success', 'matcher' => 'pathAll', 'state' => 'success', 'argument' => 'VerificationAttributes.*.VerificationStatus', ], ], ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/endpoints_prefix_history.json.php: -------------------------------------------------------------------------------- 1 | [ 'api.ecr' => [ 'ecr', ], 'api.elastic-inference' => [ 'elastic-inference', ], 'api.sagemaker' => [ 'sagemaker', ], 'ecr' => [ 'api.ecr', ], 'elastic-inference' => [ 'api.elastic-inference', ], 'sagemaker' => [ 'api.sagemaker', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/entitlement.marketplace/2017-01-11/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/es/2015-01-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListDomainNames', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeElasticsearchDomain', 'input' => [ 'DomainName' => 'not-a-domain', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/eventbridge/2015-10-07/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/eventbridge/2015-10-07/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListRules', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeRule', 'input' => [ 'Name' => 'fake-rule', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/events/2015-10-07/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/events/2015-10-07/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListRules', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeRule', 'input' => [ 'Name' => 'fake-rule', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/firehose/2015-08-04/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/firehose/2015-08-04/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListDeliveryStreams', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeDeliveryStream', 'input' => [ 'DeliveryStreamName' => 'bogus-stream-name', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/forecastquery/2018-06-26/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/gamelift/2015-10-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListBuilds', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribePlayerSessions', 'input' => [ 'PlayerSessionId' => 'psess-fakeSessionId', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListVaults', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'ListVaults', 'input' => [ 'accountId' => 'abcmnoxyz', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/globalaccelerator/2018-08-08/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/glue/2017-03-31/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'GetCatalogImportStatus', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/honeycode/2020-03-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListUsers', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetUser', 'input' => [ 'UserName' => 'fake_user', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/identitystore/2020-06-15/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListGroups' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListUsers' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/importexport/2010-06-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListJobs' => [ 'input_token' => 'Marker', 'output_token' => 'Jobs[-1].JobId', 'more_results' => 'IsTruncated', 'limit_key' => 'MaxJobs', 'result_key' => 'Jobs', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListAssessmentTemplates', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'ListTagsForResource', 'input' => [ 'resourceArn' => 'fake-arn', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/iot-jobs-data/2017-09-29/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListPolicies', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeThing', 'input' => [ 'thingName' => 'fake-thing', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/iot1click-projects/2018-05-14/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListPlacements' => [ 'input_token' => 'nextToken', 'limit_key' => 'maxResults', 'output_token' => 'nextToken', 'result_key' => 'placements', ], 'ListProjects' => [ 'input_token' => 'nextToken', 'limit_key' => 'maxResults', 'output_token' => 'nextToken', 'result_key' => 'projects', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/iotevents-data/2018-10-23/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/iotevents/2018-07-27/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/iotsecuretunneling/2018-10-05/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListTunnels' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/kendra/2019-02-03/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListDataSourceSyncJobs' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListDataSources' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListIndices' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/kinesis-video-archived-media/2017-09-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListFragments' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxResults', 'output_token' => 'NextToken', 'result_key' => 'Fragments', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/kinesis-video-media/2017-09-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/kinesis-video-signaling/2019-12-04/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListStreams', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeStream', 'input' => [ 'StreamName' => 'bogus-stream-name', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/kinesisanalyticsv2/2018-05-23/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/kinesisvideo/2017-09-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListSignalingChannels' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxResults', 'output_token' => 'NextToken', 'result_key' => 'ChannelInfoList', ], 'ListStreams' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxResults', 'output_token' => 'NextToken', 'result_key' => 'StreamInfoList', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListAliases', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetKeyPolicy', 'input' => [ 'KeyId' => '12345678-1234-1234-1234-123456789012', 'PolicyName' => 'fakePolicy', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListFunctions', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'Invoke', 'input' => [ 'FunctionName' => 'bogus-function', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/license-manager/2018-08-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'GetActiveNames', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/logs/2014-03-28/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeLogGroups', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetLogEvents', 'input' => [ 'logGroupName' => 'fakegroup', 'logStreamName' => 'fakestream', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/macie/2017-12-19/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListMemberAccounts' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', ], 'ListS3Resources' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/marketplace-catalog/2018-09-17/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListChangeSets' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListEntities' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/marketplacecommerceanalytics/2015-07-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'GenerateDataSet', 'input' => [ 'dataSetType' => 'fake-type', 'dataSetPublicationDate' => 0, 'roleNameArn' => 'fake-arn', 'destinationS3BucketName' => 'fake-bucket', 'snsTopicArn' => 'fake-arn', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/mediaconnect/2018-11-14/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListEntitlements' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Entitlements', ], 'ListFlows' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Flows', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/mediastore-data/2017-09-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListItems' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/mediastore/2017-09-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListContainers' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/mediatailor/2018-04-23/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/migrationhub-config/2019-06-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeHomeRegionControls' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/mobile/2017-07-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListBundles' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', ], 'ListProjects' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/monitoring/2010-08-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListMetrics', 'input' => [ 'Namespace' => 'AWS/EC2', ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'SetAlarmState', 'input' => [ 'AlarmName' => 'abc', 'StateValue' => 'mno', 'StateReason' => 'xyz', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/mq/2017-11-27/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListBrokers' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'BrokerSummaries', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/mturk-requester/2017-01-17/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'GetAccountBalance', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/neptune/2014-10-31/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeDBEngineVersions', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeDBInstances', 'input' => [ 'DBInstanceIdentifier' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/opsworks/2013-02-18/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeStacks', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeLayers', 'input' => [ 'StackId' => 'fake_stack', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/outposts/2019-12-03/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListOutposts' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListSites' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/personalize-events/2018-03-22/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/personalize-runtime/2018-05-22/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/pi/2018-02-27/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/polly/2016-06-10/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListSpeechSynthesisTasks' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/polly/2016-06-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeVoices', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/pricing/2017-10-15/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeServices' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'GetAttributeValues' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'GetProducts' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/qldb-session/2019-07-11/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/rds-data/2018-08-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/rds/2014-09-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/rds/2014-09-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeDBEngineVersions', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeDBInstances', 'input' => [ 'DBInstanceIdentifier' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/rds/2014-10-31/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeDBEngineVersions', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeDBInstances', 'input' => [ 'DBInstanceIdentifier' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/redshift/2012-12-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeClusterVersions', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeClusters', 'input' => [ 'ClusterIdentifier' => 'fake-cluster', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/rekognition/2016-06-27/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListCollections', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListHostedZones', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetHostedZone', 'input' => [ 'Id' => 'fake-zone', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/route53/2013-04-01/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [ 'ResourceRecordSetsChanged' => [ 'delay' => 30, 'maxAttempts' => 60, 'operation' => 'GetChange', 'acceptors' => [ [ 'matcher' => 'path', 'expected' => 'INSYNC', 'argument' => 'ChangeInfo.Status', 'state' => 'success', ], ], ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/route53domains/2014-05-15/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListDomains' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxItems', 'output_token' => 'NextPageMarker', 'result_key' => 'Domains', ], 'ListOperations' => [ 'input_token' => 'Marker', 'limit_key' => 'MaxItems', 'output_token' => 'NextPageMarker', 'result_key' => 'Operations', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/route53domains/2014-05-15/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListDomains', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetDomainDetail', 'input' => [ 'DomainName' => 'fake-domain-name', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/route53resolver/2018-04-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListResolverEndpoints', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetResolverRule', 'input' => [ 'ResolverRuleId' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/runtime.lex/2016-11-28/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/runtime.sagemaker/2017-05-13/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/s3/2006-03-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListBuckets', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/s3control/2018-08-20/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListAccessPoints' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListJobs' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/sagemaker-a2i-runtime/2019-11-07/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListHumanLoops' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'HumanLoopSummaries', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/savingsplans/2019-06-28/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListSecretVersionIds' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], 'ListSecrets' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/secretsmanager/2017-10-17/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListSecrets', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeSecret', 'input' => [ 'SecretId' => 'fake-secret-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/servicecatalog/2015-12-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListAcceptedPortfolioShares', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/shield/2016-06-02/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListAttacks' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxResults', 'output_token' => 'NextToken', 'result_key' => 'AttackSummaries', ], 'ListProtections' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxResults', 'output_token' => 'NextToken', 'result_key' => 'Protections', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/shield/2016-06-02/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListAttacks', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/sms/2016-10-24/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'GetConnectors', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DeleteReplicationJob', 'input' => [ 'replicationJobId' => 'invalidId', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/snowball/2016-06-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeAddresses' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxResults', 'output_token' => 'NextToken', 'result_key' => 'Addresses', ], 'ListJobs' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxResults', 'output_token' => 'NextToken', 'result_key' => 'JobListEntries', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/snowball/2016-06-30/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeAddresses', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/sns/2010-03-31/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListTopics', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'Publish', 'input' => [ 'Message' => 'hello', 'TopicArn' => 'fake_topic', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListDeadLetterSourceQueues' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxResults', 'output_token' => 'NextToken', 'result_key' => 'queueUrls', ], 'ListQueues' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxResults', 'output_token' => 'NextToken', 'result_key' => 'QueueUrls', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListQueues', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetQueueUrl', 'input' => [ 'QueueName' => 'fake_queue', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/sqs/2012-11-05/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [ 'QueueExists' => [ 'acceptors' => [ [ 'expected' => 200, 'matcher' => 'status', 'state' => 'success', ], [ 'expected' => 'QueueDoesNotExist', 'matcher' => 'error', 'state' => 'retry', ], ], 'delay' => 5, 'maxAttempts' => 40, 'operation' => 'GetQueueUrl', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/ssm/2014-11-06/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListDocuments', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetDocument', 'input' => [ 'Name' => '\'fake-name\'', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/sso-oidc/2019-06-10/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/sso/2019-06-10/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListAccountRoles' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'roleList', ], 'ListAccounts' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'accountList', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/states/2016-11-23/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListActivities', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/streams.dynamodb/2012-08-10/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'GetSessionToken', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'GetFederationToken', 'input' => [ 'Name' => 'temp', 'Policy' => '{\\"temp\\":true}', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/textract/2018-06-27/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/translate/2017-07-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListTerminologies' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxResults', 'output_token' => 'NextToken', ], 'ListTextTranslationJobs' => [ 'input_token' => 'NextToken', 'limit_key' => 'MaxResults', 'output_token' => 'NextToken', ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/waf-regional/2016-11-28/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/waf-regional/2016-11-28/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListRules', 'input' => [ 'Limit' => 20, ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'CreateSqlInjectionMatchSet', 'input' => [ 'Name' => 'fake_name', 'ChangeToken' => 'fake_token', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/waf/2015-08-24/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListRules', 'input' => [ 'Limit' => 20, ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'CreateSqlInjectionMatchSet', 'input' => [ 'Name' => 'fake_name', 'ChangeToken' => 'fake_token', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/wafv2/2019-07-29/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/wafv2/2019-07-29/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListWebACLs', 'input' => [ 'Scope' => 'REGIONAL', 'Limit' => 20, ], 'errorExpectedFromService' => false, ], [ 'operationName' => 'CreateRegexPatternSet', 'input' => [ 'Name' => 'fake_name', 'Scope' => 'fake_scope', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/workmailmessageflow/2019-05-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeWorkspaces', 'input' => [], 'errorExpectedFromService' => false, ], [ 'operationName' => 'DescribeWorkspaces', 'input' => [ 'DirectoryId' => 'fake-id', ], 'errorExpectedFromService' => true, ], ],]; 4 | -------------------------------------------------------------------------------- /vendor/aws/aws-sdk-php/src/imagebuilder/Exception/imagebuilderException.php: -------------------------------------------------------------------------------- 1 | /dev/null; cd "../mtdowling/jmespath.php/bin" && pwd) 4 | 5 | if [ -d /proc/cygdrive ]; then 6 | case $(which php) in 7 | $(readlink -n /proc/cygdrive)/*) 8 | # We are in Cygwin using Windows php, so the path must be translated 9 | dir=$(cygpath -m "$dir"); 10 | ;; 11 | esac 12 | fi 13 | 14 | "${dir}/jp.php" "$@" 15 | -------------------------------------------------------------------------------- /vendor/bin/jp.php.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | setlocal DISABLEDELAYEDEXPANSION 3 | SET BIN_TARGET=%~dp0/../mtdowling/jmespath.php/bin/jp.php 4 | php "%BIN_TARGET%" %* 5 | -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- 1 |