├── CODE_OF_CONDUCT.md ├── CRT_INSTRUCTIONS.md ├── LICENSE ├── NOTICE ├── THIRD-PARTY-LICENSES ├── composer.json └── src ├── ACMPCA ├── ACMPCAClient.php └── Exception │ └── ACMPCAException.php ├── ARCZonalShift ├── ARCZonalShiftClient.php └── Exception │ └── ARCZonalShiftException.php ├── AbstractConfigurationProvider.php ├── AccessAnalyzer ├── AccessAnalyzerClient.php └── Exception │ └── AccessAnalyzerException.php ├── Account ├── AccountClient.php └── Exception │ └── AccountException.php ├── Acm ├── AcmClient.php └── Exception │ └── AcmException.php ├── Amplify ├── AmplifyClient.php └── Exception │ └── AmplifyException.php ├── AmplifyBackend ├── AmplifyBackendClient.php └── Exception │ └── AmplifyBackendException.php ├── AmplifyUIBuilder ├── AmplifyUIBuilderClient.php └── Exception │ └── AmplifyUIBuilderException.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 │ ├── NonSeekableStreamDecodingEventStreamIterator.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 ├── SupportedProtocols.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 ├── AppConfigData ├── AppConfigDataClient.php └── Exception │ └── AppConfigDataException.php ├── AppFabric ├── AppFabricClient.php └── Exception │ └── AppFabricException.php ├── AppIntegrationsService ├── AppIntegrationsServiceClient.php └── Exception │ └── AppIntegrationsServiceException.php ├── AppMesh ├── AppMeshClient.php └── Exception │ └── AppMeshException.php ├── AppRegistry ├── AppRegistryClient.php └── Exception │ └── AppRegistryException.php ├── AppRunner ├── AppRunnerClient.php └── Exception │ └── AppRunnerException.php ├── AppSync ├── AppSyncClient.php └── Exception │ └── AppSyncException.php ├── AppTest ├── AppTestClient.php └── Exception │ └── AppTestException.php ├── Appflow ├── AppflowClient.php └── Exception │ └── AppflowException.php ├── ApplicationAutoScaling ├── ApplicationAutoScalingClient.php └── Exception │ └── ApplicationAutoScalingException.php ├── ApplicationCostProfiler ├── ApplicationCostProfilerClient.php └── Exception │ └── ApplicationCostProfilerException.php ├── ApplicationDiscoveryService ├── ApplicationDiscoveryServiceClient.php └── Exception │ └── ApplicationDiscoveryServiceException.php ├── ApplicationInsights ├── ApplicationInsightsClient.php └── Exception │ └── ApplicationInsightsException.php ├── ApplicationSignals ├── ApplicationSignalsClient.php └── Exception │ └── ApplicationSignalsException.php ├── Appstream ├── AppstreamClient.php └── Exception │ └── AppstreamException.php ├── Arn ├── AccessPointArn.php ├── AccessPointArnInterface.php ├── Arn.php ├── ArnInterface.php ├── ArnParser.php ├── Exception │ └── InvalidArnException.php ├── ObjectLambdaAccessPointArn.php ├── ResourceTypeAndIdTrait.php └── S3 │ ├── AccessPointArn.php │ ├── BucketArnInterface.php │ ├── MultiRegionAccessPointArn.php │ ├── OutpostsAccessPointArn.php │ ├── OutpostsArnInterface.php │ └── OutpostsBucketArn.php ├── Artifact ├── ArtifactClient.php └── Exception │ └── ArtifactException.php ├── Athena ├── AthenaClient.php └── Exception │ └── AthenaException.php ├── AuditManager ├── AuditManagerClient.php └── Exception │ └── AuditManagerException.php ├── AugmentedAIRuntime ├── AugmentedAIRuntimeClient.php └── Exception │ └── AugmentedAIRuntimeException.php ├── Auth ├── AuthSchemeResolver.php ├── AuthSchemeResolverInterface.php ├── AuthSelectionMiddleware.php └── Exception │ └── UnresolvedAuthSchemeException.php ├── AutoScaling ├── AutoScalingClient.php └── Exception │ └── AutoScalingException.php ├── AutoScalingPlans ├── AutoScalingPlansClient.php └── Exception │ └── AutoScalingPlansException.php ├── AwsClient.php ├── AwsClientInterface.php ├── AwsClientTrait.php ├── B2bi ├── B2biClient.php └── Exception │ └── B2biException.php ├── BCMDataExports ├── BCMDataExportsClient.php └── Exception │ └── BCMDataExportsException.php ├── BCMPricingCalculator ├── BCMPricingCalculatorClient.php └── Exception │ └── BCMPricingCalculatorException.php ├── Backup ├── BackupClient.php └── Exception │ └── BackupException.php ├── BackupGateway ├── BackupGatewayClient.php └── Exception │ └── BackupGatewayException.php ├── BackupSearch ├── BackupSearchClient.php └── Exception │ └── BackupSearchException.php ├── Batch ├── BatchClient.php └── Exception │ └── BatchException.php ├── Bedrock ├── BedrockClient.php └── Exception │ └── BedrockException.php ├── BedrockAgent ├── BedrockAgentClient.php └── Exception │ └── BedrockAgentException.php ├── BedrockAgentRuntime ├── BedrockAgentRuntimeClient.php └── Exception │ └── BedrockAgentRuntimeException.php ├── BedrockDataAutomation ├── BedrockDataAutomationClient.php └── Exception │ └── BedrockDataAutomationException.php ├── BedrockDataAutomationRuntime ├── BedrockDataAutomationRuntimeClient.php └── Exception │ └── BedrockDataAutomationRuntimeException.php ├── BedrockRuntime ├── BedrockRuntimeClient.php └── Exception │ └── BedrockRuntimeException.php ├── Billing ├── BillingClient.php └── Exception │ └── BillingException.php ├── BillingConductor ├── BillingConductorClient.php └── Exception │ └── BillingConductorException.php ├── Braket ├── BraketClient.php └── Exception │ └── BraketException.php ├── Budgets ├── BudgetsClient.php └── Exception │ └── BudgetsException.php ├── CacheInterface.php ├── Chatbot ├── ChatbotClient.php └── Exception │ └── ChatbotException.php ├── Chime ├── ChimeClient.php └── Exception │ └── ChimeException.php ├── ChimeSDKIdentity ├── ChimeSDKIdentityClient.php └── Exception │ └── ChimeSDKIdentityException.php ├── ChimeSDKMediaPipelines ├── ChimeSDKMediaPipelinesClient.php └── Exception │ └── ChimeSDKMediaPipelinesException.php ├── ChimeSDKMeetings ├── ChimeSDKMeetingsClient.php └── Exception │ └── ChimeSDKMeetingsException.php ├── ChimeSDKMessaging ├── ChimeSDKMessagingClient.php └── Exception │ └── ChimeSDKMessagingException.php ├── ChimeSDKVoice ├── ChimeSDKVoiceClient.php └── Exception │ └── ChimeSDKVoiceException.php ├── CleanRooms ├── CleanRoomsClient.php └── Exception │ └── CleanRoomsException.php ├── CleanRoomsML ├── CleanRoomsMLClient.php └── Exception │ └── CleanRoomsMLException.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 ├── CloudControlApi ├── CloudControlApiClient.php └── Exception │ └── CloudControlApiException.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 ├── CloudFrontKeyValueStore ├── CloudFrontKeyValueStoreClient.php └── Exception │ └── CloudFrontKeyValueStoreException.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 ├── CloudTrailData ├── CloudTrailDataClient.php └── Exception │ └── CloudTrailDataException.php ├── CloudWatch ├── CloudWatchClient.php └── Exception │ └── CloudWatchException.php ├── CloudWatchEvents ├── CloudWatchEventsClient.php └── Exception │ └── CloudWatchEventsException.php ├── CloudWatchEvidently ├── CloudWatchEvidentlyClient.php └── Exception │ └── CloudWatchEvidentlyException.php ├── CloudWatchLogs ├── CloudWatchLogsClient.php └── Exception │ └── CloudWatchLogsException.php ├── CloudWatchRUM ├── CloudWatchRUMClient.php └── Exception │ └── CloudWatchRUMException.php ├── CodeArtifact ├── CodeArtifactClient.php └── Exception │ └── CodeArtifactException.php ├── CodeBuild ├── CodeBuildClient.php └── Exception │ └── CodeBuildException.php ├── CodeCatalyst ├── CodeCatalystClient.php └── Exception │ └── CodeCatalystException.php ├── CodeCommit ├── CodeCommitClient.php └── Exception │ └── CodeCommitException.php ├── CodeConnections ├── CodeConnectionsClient.php └── Exception │ └── CodeConnectionsException.php ├── CodeDeploy ├── CodeDeployClient.php └── Exception │ └── CodeDeployException.php ├── CodeGuruProfiler ├── CodeGuruProfilerClient.php └── Exception │ └── CodeGuruProfilerException.php ├── CodeGuruReviewer ├── CodeGuruReviewerClient.php └── Exception │ └── CodeGuruReviewerException.php ├── CodeGuruSecurity ├── CodeGuruSecurityClient.php └── Exception │ └── CodeGuruSecurityException.php ├── CodePipeline ├── CodePipelineClient.php └── Exception │ └── CodePipelineException.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 ├── Configuration └── ConfigurationResolver.php ├── ConfigurationProviderInterface.php ├── Connect ├── ConnectClient.php └── Exception │ └── ConnectException.php ├── ConnectCampaignService ├── ConnectCampaignServiceClient.php └── Exception │ └── ConnectCampaignServiceException.php ├── ConnectCampaignsV2 ├── ConnectCampaignsV2Client.php └── Exception │ └── ConnectCampaignsV2Exception.php ├── ConnectCases ├── ConnectCasesClient.php └── Exception │ └── ConnectCasesException.php ├── ConnectContactLens ├── ConnectContactLensClient.php └── Exception │ └── ConnectContactLensException.php ├── ConnectParticipant ├── ConnectParticipantClient.php └── Exception │ └── ConnectParticipantException.php ├── ConnectWisdomService ├── ConnectWisdomServiceClient.php └── Exception │ └── ConnectWisdomServiceException.php ├── ControlCatalog ├── ControlCatalogClient.php └── Exception │ └── ControlCatalogException.php ├── ControlTower ├── ControlTowerClient.php └── Exception │ └── ControlTowerException.php ├── CostExplorer ├── CostExplorerClient.php └── Exception │ └── CostExplorerException.php ├── CostOptimizationHub ├── CostOptimizationHubClient.php └── Exception │ └── CostOptimizationHubException.php ├── CostandUsageReportService ├── CostandUsageReportServiceClient.php └── Exception │ └── CostandUsageReportServiceException.php ├── Credentials ├── AssumeRoleCredentialProvider.php ├── AssumeRoleWithWebIdentityCredentialProvider.php ├── CredentialProvider.php ├── CredentialSources.php ├── Credentials.php ├── CredentialsInterface.php ├── CredentialsUtils.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 ├── CustomerProfiles ├── CustomerProfilesClient.php └── Exception │ └── CustomerProfilesException.php ├── DAX ├── DAXClient.php └── Exception │ └── DAXException.php ├── DLM ├── DLMClient.php └── Exception │ └── DLMException.php ├── DSQL ├── AuthTokenGenerator.php ├── DSQLClient.php └── Exception │ └── DSQLException.php ├── DataExchange ├── DataExchangeClient.php └── Exception │ └── DataExchangeException.php ├── DataPipeline ├── DataPipelineClient.php └── Exception │ └── DataPipelineException.php ├── DataSync ├── DataSyncClient.php └── Exception │ └── DataSyncException.php ├── DataZone ├── DataZoneClient.php └── Exception │ └── DataZoneException.php ├── DatabaseMigrationService ├── DatabaseMigrationServiceClient.php └── Exception │ └── DatabaseMigrationServiceException.php ├── Deadline ├── DeadlineClient.php └── Exception │ └── DeadlineException.php ├── DefaultsMode ├── Configuration.php ├── ConfigurationInterface.php ├── ConfigurationProvider.php └── Exception │ └── ConfigurationException.php ├── Detective ├── DetectiveClient.php └── Exception │ └── DetectiveException.php ├── DevOpsGuru ├── DevOpsGuruClient.php └── Exception │ └── DevOpsGuruException.php ├── DeviceFarm ├── DeviceFarmClient.php └── Exception │ └── DeviceFarmException.php ├── DirectConnect ├── DirectConnectClient.php └── Exception │ └── DirectConnectException.php ├── DirectoryService ├── DirectoryServiceClient.php └── Exception │ └── DirectoryServiceException.php ├── DirectoryServiceData ├── DirectoryServiceDataClient.php └── Exception │ └── DirectoryServiceDataException.php ├── DocDB ├── DocDBClient.php └── Exception │ └── DocDBException.php ├── DocDBElastic ├── DocDBElasticClient.php └── Exception │ └── DocDBElasticException.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 ├── ECRPublic ├── ECRPublicClient.php └── Exception │ └── ECRPublicException.php ├── EKS ├── EKSClient.php └── Exception │ └── EKSException.php ├── EKSAuth ├── EKSAuthClient.php └── Exception │ └── EKSAuthException.php ├── EMRContainers ├── EMRContainersClient.php └── Exception │ └── EMRContainersException.php ├── EMRServerless ├── EMRServerlessClient.php └── Exception │ └── EMRServerlessException.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 ├── 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 ├── UseDualstackEndpoint │ ├── Configuration.php │ ├── ConfigurationInterface.php │ ├── ConfigurationProvider.php │ └── Exception │ │ └── ConfigurationException.php └── UseFipsEndpoint │ ├── Configuration.php │ ├── ConfigurationInterface.php │ ├── ConfigurationProvider.php │ └── Exception │ └── ConfigurationException.php ├── EndpointDiscovery ├── Configuration.php ├── ConfigurationInterface.php ├── ConfigurationProvider.php ├── EndpointDiscoveryMiddleware.php ├── EndpointList.php └── Exception │ └── ConfigurationException.php ├── EndpointParameterMiddleware.php ├── EndpointV2 ├── EndpointDefinitionProvider.php ├── EndpointProviderV2.php ├── EndpointV2Middleware.php ├── EndpointV2SerializerTrait.php ├── Rule │ ├── AbstractRule.php │ ├── EndpointRule.php │ ├── ErrorRule.php │ ├── RuleCreator.php │ └── TreeRule.php └── Ruleset │ ├── Ruleset.php │ ├── RulesetEndpoint.php │ ├── RulesetParameter.php │ └── RulesetStandardLibrary.php ├── EntityResolution ├── EntityResolutionClient.php └── Exception │ └── EntityResolutionException.php ├── EventBridge ├── EventBridgeClient.php ├── EventBridgeEndpointMiddleware.php └── Exception │ └── EventBridgeException.php ├── Exception ├── AwsException.php ├── CommonRuntimeException.php ├── CouldNotCreateChecksumException.php ├── CredentialsException.php ├── CryptoException.php ├── CryptoPolyfillException.php ├── EventStreamDataException.php ├── IncalculablePayloadException.php ├── InvalidJsonException.php ├── InvalidRegionException.php ├── MultipartUploadException.php ├── TokenException.php ├── UnresolvedApiException.php ├── UnresolvedEndpointException.php └── UnresolvedSignatureException.php ├── FIS ├── Exception │ └── FISException.php └── FISClient.php ├── FMS ├── Exception │ └── FMSException.php └── FMSClient.php ├── FSx ├── Exception │ └── FSxException.php └── FSxClient.php ├── FinSpaceData ├── Exception │ └── FinSpaceDataException.php └── FinSpaceDataClient.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 ├── FreeTier ├── Exception │ └── FreeTierException.php └── FreeTierClient.php ├── GameLift ├── Exception │ └── GameLiftException.php └── GameLiftClient.php ├── GameLiftStreams ├── Exception │ └── GameLiftStreamsException.php └── GameLiftStreamsClient.php ├── GeoMaps ├── Exception │ └── GeoMapsException.php └── GeoMapsClient.php ├── GeoPlaces ├── Exception │ └── GeoPlacesException.php └── GeoPlacesClient.php ├── GeoRoutes ├── Exception │ └── GeoRoutesException.php └── GeoRoutesClient.php ├── Glacier ├── Exception │ └── GlacierException.php ├── GlacierClient.php ├── MultipartUploader.php └── TreeHash.php ├── GlobalAccelerator ├── Exception │ └── GlobalAcceleratorException.php └── GlobalAcceleratorClient.php ├── Glue ├── Exception │ └── GlueException.php └── GlueClient.php ├── GlueDataBrew ├── Exception │ └── GlueDataBrewException.php └── GlueDataBrewClient.php ├── Greengrass ├── Exception │ └── GreengrassException.php └── GreengrassClient.php ├── GreengrassV2 ├── Exception │ └── GreengrassV2Exception.php └── GreengrassV2Client.php ├── GroundStation ├── Exception │ └── GroundStationException.php └── GroundStationClient.php ├── GuardDuty ├── Exception │ └── GuardDutyException.php └── GuardDutyClient.php ├── Handler ├── Guzzle │ └── GuzzleHandler.php └── GuzzleV6 │ └── GuzzleHandler.php ├── HandlerList.php ├── HasDataTrait.php ├── HasMonitoringEventsTrait.php ├── HashInterface.php ├── HashingStream.php ├── Health ├── Exception │ └── HealthException.php └── HealthClient.php ├── HealthLake ├── Exception │ └── HealthLakeException.php └── HealthLakeClient.php ├── History.php ├── IVS ├── Exception │ └── IVSException.php └── IVSClient.php ├── IVSRealTime ├── Exception │ └── IVSRealTimeException.php └── IVSRealTimeClient.php ├── Iam ├── Exception │ └── IamException.php └── IamClient.php ├── IdempotencyTokenMiddleware.php ├── Identity ├── AwsCredentialIdentity.php ├── BearerTokenIdentity.php ├── IdentityInterface.php └── S3 │ ├── S3ExpressIdentity.php │ └── S3ExpressIdentityProvider.php ├── IdentityStore ├── Exception │ └── IdentityStoreException.php └── IdentityStoreClient.php ├── ImportExport ├── Exception │ └── ImportExportException.php └── ImportExportClient.php ├── InputValidationMiddleware.php ├── Inspector ├── Exception │ └── InspectorException.php └── InspectorClient.php ├── Inspector2 ├── Exception │ └── Inspector2Exception.php └── Inspector2Client.php ├── InspectorScan ├── Exception │ └── InspectorScanException.php └── InspectorScanClient.php ├── InternetMonitor ├── Exception │ └── InternetMonitorException.php └── InternetMonitorClient.php ├── Invoicing ├── Exception │ └── InvoicingException.php └── InvoicingClient.php ├── IoTAnalytics ├── Exception │ └── IoTAnalyticsException.php └── IoTAnalyticsClient.php ├── IoTDeviceAdvisor ├── Exception │ └── IoTDeviceAdvisorException.php └── IoTDeviceAdvisorClient.php ├── IoTEvents ├── Exception │ └── IoTEventsException.php └── IoTEventsClient.php ├── IoTEventsData ├── Exception │ └── IoTEventsDataException.php └── IoTEventsDataClient.php ├── IoTFleetHub ├── Exception │ └── IoTFleetHubException.php └── IoTFleetHubClient.php ├── IoTFleetWise ├── Exception │ └── IoTFleetWiseException.php └── IoTFleetWiseClient.php ├── IoTJobsDataPlane ├── Exception │ └── IoTJobsDataPlaneException.php └── IoTJobsDataPlaneClient.php ├── IoTManagedIntegrations ├── Exception │ └── IoTManagedIntegrationsException.php └── IoTManagedIntegrationsClient.php ├── IoTSecureTunneling ├── Exception │ └── IoTSecureTunnelingException.php └── IoTSecureTunnelingClient.php ├── IoTSiteWise ├── Exception │ └── IoTSiteWiseException.php └── IoTSiteWiseClient.php ├── IoTThingsGraph ├── Exception │ └── IoTThingsGraphException.php └── IoTThingsGraphClient.php ├── IoTTwinMaker ├── Exception │ └── IoTTwinMakerException.php └── IoTTwinMakerClient.php ├── IoTWireless ├── Exception │ └── IoTWirelessException.php └── IoTWirelessClient.php ├── Iot ├── Exception │ └── IotException.php └── IotClient.php ├── IotDataPlane ├── Exception │ └── IotDataPlaneException.php └── IotDataPlaneClient.php ├── JsonCompiler.php ├── Kafka ├── Exception │ └── KafkaException.php └── KafkaClient.php ├── KafkaConnect ├── Exception │ └── KafkaConnectException.php └── KafkaConnectClient.php ├── KendraRanking ├── Exception │ └── KendraRankingException.php └── KendraRankingClient.php ├── Keyspaces ├── Exception │ └── KeyspacesException.php └── KeyspacesClient.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 ├── KinesisVideoWebRTCStorage ├── Exception │ └── KinesisVideoWebRTCStorageException.php └── KinesisVideoWebRTCStorageClient.php ├── Kms ├── Exception │ └── KmsException.php └── KmsClient.php ├── LakeFormation ├── Exception │ └── LakeFormationException.php └── LakeFormationClient.php ├── Lambda ├── Exception │ └── LambdaException.php └── LambdaClient.php ├── LaunchWizard ├── Exception │ └── LaunchWizardException.php └── LaunchWizardClient.php ├── LexModelBuildingService ├── Exception │ └── LexModelBuildingServiceException.php └── LexModelBuildingServiceClient.php ├── LexModelsV2 ├── Exception │ └── LexModelsV2Exception.php └── LexModelsV2Client.php ├── LexRuntimeService ├── Exception │ └── LexRuntimeServiceException.php └── LexRuntimeServiceClient.php ├── LexRuntimeV2 ├── Exception │ └── LexRuntimeV2Exception.php └── LexRuntimeV2Client.php ├── LicenseManager ├── Exception │ └── LicenseManagerException.php └── LicenseManagerClient.php ├── LicenseManagerLinuxSubscriptions ├── Exception │ └── LicenseManagerLinuxSubscriptionsException.php └── LicenseManagerLinuxSubscriptionsClient.php ├── LicenseManagerUserSubscriptions ├── Exception │ └── LicenseManagerUserSubscriptionsException.php └── LicenseManagerUserSubscriptionsClient.php ├── Lightsail ├── Exception │ └── LightsailException.php └── LightsailClient.php ├── LocationService ├── Exception │ └── LocationServiceException.php └── LocationServiceClient.php ├── LookoutEquipment ├── Exception │ └── LookoutEquipmentException.php └── LookoutEquipmentClient.php ├── LookoutMetrics ├── Exception │ └── LookoutMetricsException.php └── LookoutMetricsClient.php ├── LookoutforVision ├── Exception │ └── LookoutforVisionException.php └── LookoutforVisionClient.php ├── LruArrayCache.php ├── MQ ├── Exception │ └── MQException.php └── MQClient.php ├── MTurk ├── Exception │ └── MTurkException.php └── MTurkClient.php ├── MWAA ├── Exception │ └── MWAAException.php └── MWAAClient.php ├── MachineLearning ├── Exception │ └── MachineLearningException.php └── MachineLearningClient.php ├── Macie2 ├── Exception │ └── Macie2Exception.php └── Macie2Client.php ├── MailManager ├── Exception │ └── MailManagerException.php └── MailManagerClient.php ├── MainframeModernization ├── Exception │ └── MainframeModernizationException.php └── MainframeModernizationClient.php ├── ManagedBlockchain ├── Exception │ └── ManagedBlockchainException.php └── ManagedBlockchainClient.php ├── ManagedBlockchainQuery ├── Exception │ └── ManagedBlockchainQueryException.php └── ManagedBlockchainQueryClient.php ├── ManagedGrafana ├── Exception │ └── ManagedGrafanaException.php └── ManagedGrafanaClient.php ├── MarketplaceAgreement ├── Exception │ └── MarketplaceAgreementException.php └── MarketplaceAgreementClient.php ├── MarketplaceCatalog ├── Exception │ └── MarketplaceCatalogException.php └── MarketplaceCatalogClient.php ├── MarketplaceCommerceAnalytics ├── Exception │ └── MarketplaceCommerceAnalyticsException.php └── MarketplaceCommerceAnalyticsClient.php ├── MarketplaceDeployment ├── Exception │ └── MarketplaceDeploymentException.php └── MarketplaceDeploymentClient.php ├── MarketplaceEntitlementService ├── Exception │ └── MarketplaceEntitlementServiceException.php └── MarketplaceEntitlementServiceClient.php ├── MarketplaceMetering ├── Exception │ └── MarketplaceMeteringException.php └── MarketplaceMeteringClient.php ├── MarketplaceReporting ├── Exception │ └── MarketplaceReportingException.php └── MarketplaceReportingClient.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 ├── MediaPackageV2 ├── Exception │ └── MediaPackageV2Exception.php └── MediaPackageV2Client.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 ├── MedicalImaging ├── Exception │ └── MedicalImagingException.php └── MedicalImagingClient.php ├── MemoryDB ├── Exception │ └── MemoryDBException.php └── MemoryDBClient.php ├── MetricsBuilder.php ├── Middleware.php ├── MigrationHub ├── Exception │ └── MigrationHubException.php └── MigrationHubClient.php ├── MigrationHubConfig ├── Exception │ └── MigrationHubConfigException.php └── MigrationHubConfigClient.php ├── MigrationHubOrchestrator ├── Exception │ └── MigrationHubOrchestratorException.php └── MigrationHubOrchestratorClient.php ├── MigrationHubRefactorSpaces ├── Exception │ └── MigrationHubRefactorSpacesException.php └── MigrationHubRefactorSpacesClient.php ├── MigrationHubStrategyRecommendations ├── Exception │ └── MigrationHubStrategyRecommendationsException.php └── MigrationHubStrategyRecommendationsClient.php ├── MockHandler.php ├── MonitoringEventsInterface.php ├── MultiRegionClient.php ├── Multipart ├── AbstractUploadManager.php ├── AbstractUploader.php └── UploadState.php ├── Neptune ├── Exception │ └── NeptuneException.php └── NeptuneClient.php ├── NeptuneGraph ├── Exception │ └── NeptuneGraphException.php └── NeptuneGraphClient.php ├── Neptunedata ├── Exception │ └── NeptunedataException.php └── NeptunedataClient.php ├── NetworkFirewall ├── Exception │ └── NetworkFirewallException.php └── NetworkFirewallClient.php ├── NetworkFlowMonitor ├── Exception │ └── NetworkFlowMonitorException.php └── NetworkFlowMonitorClient.php ├── NetworkManager ├── Exception │ └── NetworkManagerException.php └── NetworkManagerClient.php ├── NetworkMonitor ├── Exception │ └── NetworkMonitorException.php └── NetworkMonitorClient.php ├── Notifications ├── Exception │ └── NotificationsException.php └── NotificationsClient.php ├── NotificationsContacts ├── Exception │ └── NotificationsContactsException.php └── NotificationsContactsClient.php ├── OAM ├── Exception │ └── OAMException.php └── OAMClient.php ├── OSIS ├── Exception │ └── OSISException.php └── OSISClient.php ├── ObservabilityAdmin ├── Exception │ └── ObservabilityAdminException.php └── ObservabilityAdminClient.php ├── Omics ├── Exception │ └── OmicsException.php └── OmicsClient.php ├── OpenSearchServerless ├── Exception │ └── OpenSearchServerlessException.php └── OpenSearchServerlessClient.php ├── OpenSearchService ├── Exception │ └── OpenSearchServiceException.php └── OpenSearchServiceClient.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 ├── PCS ├── Exception │ └── PCSException.php └── PCSClient.php ├── PI ├── Exception │ └── PIException.php └── PIClient.php ├── Panorama ├── Exception │ └── PanoramaException.php └── PanoramaClient.php ├── PartnerCentralSelling ├── Exception │ └── PartnerCentralSellingException.php └── PartnerCentralSellingClient.php ├── PaymentCryptography ├── Exception │ └── PaymentCryptographyException.php └── PaymentCryptographyClient.php ├── PaymentCryptographyData ├── Exception │ └── PaymentCryptographyDataException.php └── PaymentCryptographyDataClient.php ├── PcaConnectorAd ├── Exception │ └── PcaConnectorAdException.php └── PcaConnectorAdClient.php ├── PcaConnectorScep ├── Exception │ └── PcaConnectorScepException.php └── PcaConnectorScepClient.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 ├── PinpointSMSVoiceV2 ├── Exception │ └── PinpointSMSVoiceV2Exception.php └── PinpointSMSVoiceV2Client.php ├── Pipes ├── Exception │ └── PipesException.php └── PipesClient.php ├── Polly ├── Exception │ └── PollyException.php └── PollyClient.php ├── PresignUrlMiddleware.php ├── Pricing ├── Exception │ └── PricingException.php └── PricingClient.php ├── PrometheusService ├── Exception │ └── PrometheusServiceException.php └── PrometheusServiceClient.php ├── Proton ├── Exception │ └── ProtonException.php └── ProtonClient.php ├── Psr16CacheAdapter.php ├── PsrCacheAdapter.php ├── QApps ├── Exception │ └── QAppsException.php └── QAppsClient.php ├── QBusiness ├── Exception │ └── QBusinessException.php └── QBusinessClient.php ├── QConnect ├── Exception │ └── QConnectException.php └── QConnectClient.php ├── QLDB ├── Exception │ └── QLDBException.php └── QLDBClient.php ├── QLDBSession ├── Exception │ └── QLDBSessionException.php └── QLDBSessionClient.php ├── QueryCompatibleInputMiddleware.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 ├── RecycleBin ├── Exception │ └── RecycleBinException.php └── RecycleBinClient.php ├── Redshift ├── Exception │ └── RedshiftException.php └── RedshiftClient.php ├── RedshiftDataAPIService ├── Exception │ └── RedshiftDataAPIServiceException.php └── RedshiftDataAPIServiceClient.php ├── RedshiftServerless ├── Exception │ └── RedshiftServerlessException.php └── RedshiftServerlessClient.php ├── Rekognition ├── Exception │ └── RekognitionException.php └── RekognitionClient.php ├── Repostspace ├── Exception │ └── RepostspaceException.php └── RepostspaceClient.php ├── RequestCompressionMiddleware.php ├── ResilienceHub ├── Exception │ └── ResilienceHubException.php └── ResilienceHubClient.php ├── ResourceExplorer2 ├── Exception │ └── ResourceExplorer2Exception.php └── ResourceExplorer2Client.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 ├── RolesAnywhere ├── Exception │ └── RolesAnywhereException.php └── RolesAnywhereClient.php ├── Route53 ├── Exception │ └── Route53Exception.php └── Route53Client.php ├── Route53Domains ├── Exception │ └── Route53DomainsException.php └── Route53DomainsClient.php ├── Route53Profiles ├── Exception │ └── Route53ProfilesException.php └── Route53ProfilesClient.php ├── Route53RecoveryCluster ├── Exception │ └── Route53RecoveryClusterException.php └── Route53RecoveryClusterClient.php ├── Route53RecoveryControlConfig ├── Exception │ └── Route53RecoveryControlConfigException.php └── Route53RecoveryControlConfigClient.php ├── Route53RecoveryReadiness ├── Exception │ └── Route53RecoveryReadinessException.php └── Route53RecoveryReadinessClient.php ├── Route53Resolver ├── Exception │ └── Route53ResolverException.php └── Route53ResolverClient.php ├── S3 ├── AmbiguousSuccessParser.php ├── ApplyChecksumMiddleware.php ├── BatchDelete.php ├── BucketEndpointArnMiddleware.php ├── BucketEndpointMiddleware.php ├── CalculatesChecksumTrait.php ├── Crypto │ ├── CryptoParamsTrait.php │ ├── CryptoParamsTraitV2.php │ ├── HeadersMetadataStrategy.php │ ├── InstructionFileMetadataStrategy.php │ ├── S3EncryptionClient.php │ ├── S3EncryptionClientV2.php │ ├── S3EncryptionMultipartUploader.php │ ├── S3EncryptionMultipartUploaderV2.php │ └── UserAgentTrait.php ├── EndpointRegionHelperTrait.php ├── Exception │ ├── DeleteMultipleObjectsException.php │ ├── PermanentRedirectException.php │ ├── S3Exception.php │ └── S3MultipartUploadException.php ├── ExpiresParsingMiddleware.php ├── GetBucketLocationParser.php ├── MultipartCopy.php ├── MultipartUploader.php ├── MultipartUploadingTrait.php ├── ObjectCopier.php ├── ObjectUploader.php ├── Parser │ ├── GetBucketLocationResultMutator.php │ ├── S3Parser.php │ ├── S3ResultMutator.php │ └── ValidateResponseChecksumResultMutator.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 └── ValidateResponseChecksumParser.php ├── S3Control ├── EndpointArnMiddleware.php ├── Exception │ └── S3ControlException.php └── S3ControlClient.php ├── S3Outposts ├── Exception │ └── S3OutpostsException.php └── S3OutpostsClient.php ├── S3Tables ├── Exception │ └── S3TablesException.php └── S3TablesClient.php ├── SSMContacts ├── Exception │ └── SSMContactsException.php └── SSMContactsClient.php ├── SSMGuiConnect ├── Exception │ └── SSMGuiConnectException.php └── SSMGuiConnectClient.php ├── SSMIncidents ├── Exception │ └── SSMIncidentsException.php └── SSMIncidentsClient.php ├── SSMQuickSetup ├── Exception │ └── SSMQuickSetupException.php └── SSMQuickSetupClient.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 ├── SageMakerFeatureStoreRuntime ├── Exception │ └── SageMakerFeatureStoreRuntimeException.php └── SageMakerFeatureStoreRuntimeClient.php ├── SageMakerGeospatial ├── Exception │ └── SageMakerGeospatialException.php └── SageMakerGeospatialClient.php ├── SageMakerMetrics ├── Exception │ └── SageMakerMetricsException.php └── SageMakerMetricsClient.php ├── SageMakerRuntime ├── Exception │ └── SageMakerRuntimeException.php └── SageMakerRuntimeClient.php ├── SagemakerEdgeManager ├── Exception │ └── SagemakerEdgeManagerException.php └── SagemakerEdgeManagerClient.php ├── SavingsPlans ├── Exception │ └── SavingsPlansException.php └── SavingsPlansClient.php ├── Scheduler ├── Exception │ └── SchedulerException.php └── SchedulerClient.php ├── Schemas ├── Exception │ └── SchemasException.php └── SchemasClient.php ├── Script └── Composer │ └── Composer.php ├── Sdk.php ├── SecretsManager ├── Exception │ └── SecretsManagerException.php └── SecretsManagerClient.php ├── SecurityHub ├── Exception │ └── SecurityHubException.php └── SecurityHubClient.php ├── SecurityIR ├── Exception │ └── SecurityIRException.php └── SecurityIRClient.php ├── SecurityLake ├── Exception │ └── SecurityLakeException.php └── SecurityLakeClient.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 ├── S3ExpressSignature.php ├── S3SignatureV4.php ├── SignatureInterface.php ├── SignatureProvider.php ├── SignatureTrait.php └── SignatureV4.php ├── SimSpaceWeaver ├── Exception │ └── SimSpaceWeaverException.php └── SimSpaceWeaverClient.php ├── Sms ├── Exception │ └── SmsException.php └── SmsClient.php ├── SnowBall ├── Exception │ └── SnowBallException.php └── SnowBallClient.php ├── SnowDeviceManagement ├── Exception │ └── SnowDeviceManagementException.php └── SnowDeviceManagementClient.php ├── Sns ├── Exception │ └── SnsException.php └── SnsClient.php ├── SocialMessaging ├── Exception │ └── SocialMessagingException.php └── SocialMessagingClient.php ├── Sqs ├── Exception │ └── SqsException.php └── SqsClient.php ├── Ssm ├── Exception │ └── SsmException.php └── SsmClient.php ├── SsmSap ├── Exception │ └── SsmSapException.php └── SsmSapClient.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 ├── SupplyChain ├── Exception │ └── SupplyChainException.php └── SupplyChainClient.php ├── Support ├── Exception │ └── SupportException.php └── SupportClient.php ├── SupportApp ├── Exception │ └── SupportAppException.php └── SupportAppClient.php ├── Swf ├── Exception │ └── SwfException.php └── SwfClient.php ├── Synthetics ├── Exception │ └── SyntheticsException.php └── SyntheticsClient.php ├── TaxSettings ├── Exception │ └── TaxSettingsException.php └── TaxSettingsClient.php ├── Textract ├── Exception │ └── TextractException.php └── TextractClient.php ├── TimestreamInfluxDB ├── Exception │ └── TimestreamInfluxDBException.php └── TimestreamInfluxDBClient.php ├── TimestreamQuery ├── Exception │ └── TimestreamQueryException.php └── TimestreamQueryClient.php ├── TimestreamWrite ├── Exception │ └── TimestreamWriteException.php └── TimestreamWriteClient.php ├── Tnb ├── Exception │ └── TnbException.php └── TnbClient.php ├── Token ├── BearerTokenAuthorization.php ├── ParsesIniTrait.php ├── RefreshableTokenProviderInterface.php ├── SsoToken.php ├── SsoTokenProvider.php ├── Token.php ├── TokenAuthorization.php ├── TokenInterface.php └── TokenProvider.php ├── TraceMiddleware.php ├── TranscribeService ├── Exception │ └── TranscribeServiceException.php └── TranscribeServiceClient.php ├── Transfer ├── Exception │ └── TransferException.php └── TransferClient.php ├── Translate ├── Exception │ └── TranslateException.php └── TranslateClient.php ├── TrustedAdvisor ├── Exception │ └── TrustedAdvisorException.php └── TrustedAdvisorClient.php ├── UserAgentMiddleware.php ├── VPCLattice ├── Exception │ └── VPCLatticeException.php └── VPCLatticeClient.php ├── VerifiedPermissions ├── Exception │ └── VerifiedPermissionsException.php └── VerifiedPermissionsClient.php ├── VoiceID ├── Exception │ └── VoiceIDException.php └── VoiceIDClient.php ├── WAFV2 ├── Exception │ └── WAFV2Exception.php └── WAFV2Client.php ├── Waf ├── Exception │ └── WafException.php └── WafClient.php ├── WafRegional ├── Exception │ └── WafRegionalException.php └── WafRegionalClient.php ├── Waiter.php ├── WellArchitected ├── Exception │ └── WellArchitectedException.php └── WellArchitectedClient.php ├── WorkDocs ├── Exception │ └── WorkDocsException.php └── WorkDocsClient.php ├── WorkMail ├── Exception │ └── WorkMailException.php └── WorkMailClient.php ├── WorkMailMessageFlow ├── Exception │ └── WorkMailMessageFlowException.php └── WorkMailMessageFlowClient.php ├── WorkSpaces ├── Exception │ └── WorkSpacesException.php └── WorkSpacesClient.php ├── WorkSpacesThinClient ├── Exception │ └── WorkSpacesThinClientException.php └── WorkSpacesThinClientClient.php ├── WorkSpacesWeb ├── Exception │ └── WorkSpacesWebException.php └── WorkSpacesWebClient.php ├── WrappedHttpHandler.php ├── XRay ├── Exception │ └── XRayException.php └── XRayClient.php ├── data ├── accessanalyzer │ └── 2019-11-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── account │ └── 2021-02-01 │ │ ├── api-2.json.php │ │ ├── defaults-1.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── acm-pca │ └── 2017-08-22 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── acm │ └── 2015-12-08 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── aliases.json.php ├── amp │ └── 2020-08-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── amplify │ └── 2017-07-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── amplifybackend │ └── 2020-08-11 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── amplifyuibuilder │ └── 2021-08-11 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── apigateway │ └── 2015-07-09 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── apigatewaymanagementapi │ └── 2018-11-29 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── apigatewayv2 │ └── 2018-11-29 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── appconfig │ └── 2019-10-09 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── appconfigdata │ └── 2021-11-11 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── appfabric │ └── 2023-05-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── appflow │ └── 2020-08-23 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── appintegrations │ └── 2020-07-29 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── application-autoscaling │ └── 2016-02-06 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── application-insights │ └── 2018-11-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── application-signals │ └── 2024-04-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── applicationcostprofiler │ └── 2020-09-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── appmesh │ ├── 2018-10-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php │ └── 2019-01-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── apprunner │ └── 2020-05-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── appstream │ └── 2016-12-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── appsync │ └── 2017-07-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── apptest │ └── 2022-12-06 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── arc-zonal-shift │ └── 2022-10-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── artifact │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── athena │ └── 2017-05-18 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── auditmanager │ └── 2017-07-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── autoscaling-plans │ └── 2018-01-06 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── autoscaling │ └── 2011-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── b2bi │ └── 2022-06-23 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── backup-gateway │ └── 2021-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── backup │ └── 2018-11-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── backupsearch │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── batch │ └── 2016-08-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── bcm-data-exports │ └── 2023-11-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── bcm-pricing-calculator │ └── 2024-06-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── bedrock-agent-runtime │ └── 2023-07-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── bedrock-agent │ └── 2023-06-05 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── bedrock-data-automation-runtime │ └── 2024-06-13 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── bedrock-data-automation │ └── 2023-07-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── bedrock-runtime │ └── 2023-09-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── bedrock │ └── 2023-04-20 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── billing │ └── 2023-09-07 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── billingconductor │ └── 2021-07-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── braket │ └── 2019-09-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── budgets │ └── 2016-10-20 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ce │ └── 2017-10-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── chatbot │ └── 2017-10-11 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── chime-sdk-identity │ └── 2021-04-20 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── chime-sdk-media-pipelines │ └── 2021-07-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── chime-sdk-meetings │ └── 2021-07-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── chime-sdk-messaging │ └── 2021-05-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── chime-sdk-voice │ └── 2022-08-03 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── chime │ └── 2018-05-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── cleanrooms │ └── 2022-02-17 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── cleanroomsml │ └── 2023-09-06 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── cloud9 │ └── 2017-09-23 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── cloudcontrol │ └── 2021-09-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── clouddirectory │ ├── 2016-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php │ └── 2017-01-11 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── cloudformation │ └── 2010-05-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── cloudfront-keyvaluestore │ └── 2022-07-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── cloudfront │ ├── 2015-07-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php │ ├── 2016-01-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php │ ├── 2016-08-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php │ ├── 2016-08-20 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php │ ├── 2016-09-07 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php │ ├── 2016-09-29 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php │ ├── 2016-11-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php │ ├── 2017-03-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php │ ├── 2017-10-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php │ ├── 2018-06-18 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php │ ├── 2018-11-05 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php │ ├── 2019-03-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php │ └── 2020-05-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.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 │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── cloudhsmv2 │ └── 2017-04-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── cloudsearch │ └── 2013-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── cloudsearchdomain │ └── 2013-01-01 │ │ ├── api-2.json.php │ │ └── endpoint-rule-set-1.json.php ├── cloudtrail-data │ └── 2021-08-11 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── cloudtrail │ └── 2013-11-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── codeartifact │ └── 2018-09-22 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── codebuild │ └── 2016-10-06 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── codecatalyst │ └── 2022-09-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── codecommit │ └── 2015-04-13 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── codeconnections │ └── 2023-12-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── codedeploy │ └── 2014-10-06 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.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 │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── codeguru-security │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── codeguruprofiler │ └── 2019-07-18 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── codepipeline │ └── 2015-07-09 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── codestar-connections │ └── 2019-12-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── codestar-notifications │ └── 2019-10-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── cognito-identity │ └── 2014-06-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── cognito-idp │ └── 2016-04-18 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── cognito-sync │ └── 2014-06-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── comprehend │ └── 2017-11-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── comprehendmedical │ └── 2018-10-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── compute-optimizer │ └── 2019-11-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── config │ └── 2014-11-12 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── connect-contact-lens │ └── 2020-08-21 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── connect │ └── 2017-08-08 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── connectcampaigns │ └── 2021-01-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── connectcampaignsv2 │ └── 2024-04-23 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── connectcases │ └── 2022-10-03 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── connectparticipant │ └── 2018-09-07 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── controlcatalog │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── controltower │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── cost-optimization-hub │ └── 2022-07-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── cur │ └── 2017-01-06 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── customer-profiles │ └── 2020-08-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── data.iot │ └── 2015-05-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── databrew │ └── 2017-07-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── dataexchange │ └── 2017-07-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── datapipeline │ └── 2012-10-29 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── datasync │ └── 2018-11-09 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── datazone │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── dax │ └── 2017-04-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── deadline │ └── 2023-10-12 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── detective │ └── 2018-10-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── devicefarm │ └── 2015-06-23 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── devops-guru │ └── 2020-12-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── directconnect │ └── 2012-10-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── directory-service-data │ └── 2023-05-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── discovery │ └── 2015-11-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── dlm │ └── 2018-01-12 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── dms │ └── 2016-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── docdb-elastic │ └── 2022-11-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── docdb │ └── 2014-10-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── drs │ └── 2020-02-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ds │ └── 2015-04-16 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── dsql │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── dynamodb │ ├── 2011-12-05 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php │ └── 2012-08-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.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 │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ec2-instance-connect │ └── 2018-04-02 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ec2 │ ├── 2015-10-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php │ ├── 2016-04-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php │ ├── 2016-09-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php │ └── 2016-11-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php ├── ecr-public │ └── 2020-10-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ecr │ └── 2015-09-21 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── ecs │ └── 2014-11-13 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── eks-auth │ └── 2023-11-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── eks │ └── 2017-11-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── elasticache │ └── 2015-02-02 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── elasticbeanstalk │ └── 2010-12-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── elasticfilesystem │ └── 2015-02-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── elasticloadbalancing │ └── 2012-06-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── elasticloadbalancingv2 │ └── 2015-12-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── elasticmapreduce │ └── 2009-03-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── elastictranscoder │ └── 2012-09-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.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 │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ ├── waiters-1.json.php │ │ └── waiters-2.json.php ├── emr-containers │ └── 2020-10-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── emr-serverless │ └── 2021-07-13 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── endpoints.json.php ├── endpoints_prefix_history.json.php ├── entitlement.marketplace │ └── 2017-01-11 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── entityresolution │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── es │ └── 2015-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── eventbridge │ └── 2015-10-07 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── events │ └── 2015-10-07 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── evidently │ └── 2021-02-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── finspace-data │ └── 2020-07-13 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── finspace │ └── 2021-03-12 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── firehose │ └── 2015-08-04 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── fis │ └── 2020-12-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── fms │ └── 2018-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── forecast │ └── 2018-06-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── forecastquery │ └── 2018-06-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── frauddetector │ └── 2019-11-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── freetier │ └── 2023-09-07 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── fsx │ └── 2018-03-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── gamelift │ └── 2015-10-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── gameliftstreams │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── geo-maps │ └── 2020-11-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── geo-places │ └── 2020-11-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── geo-routes │ └── 2020-11-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── glacier │ └── 2012-06-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.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 │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── glue │ └── 2017-03-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── grafana │ └── 2020-08-18 │ │ ├── api-2.json.php │ │ ├── defaults-1.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── grandfathered-services.json.php ├── greengrass │ └── 2017-06-07 │ │ ├── api-2.json.php │ │ └── endpoint-rule-set-1.json.php ├── greengrassv2 │ └── 2020-11-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── groundstation │ └── 2019-05-23 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── guardduty │ └── 2017-11-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── health │ └── 2016-08-04 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── healthlake │ └── 2017-07-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── iam │ └── 2010-05-08 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── identitystore │ └── 2020-06-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── imagebuilder │ └── 2019-12-02 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── importexport │ └── 2010-06-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── inspector-scan │ └── 2023-08-08 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── inspector │ └── 2016-02-16 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── inspector2 │ └── 2020-06-08 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── internetmonitor │ └── 2021-06-03 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── invoicing │ └── 2024-12-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── iot-jobs-data │ └── 2017-09-29 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── iot-managed-integrations │ └── 2025-03-03 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── iot │ └── 2015-05-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── iotanalytics │ └── 2017-11-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── iotdeviceadvisor │ └── 2020-09-18 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── iotevents-data │ └── 2018-10-23 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── iotevents │ └── 2018-07-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── iotfleethub │ └── 2020-11-03 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── iotfleetwise │ └── 2021-06-17 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── iotsecuretunneling │ └── 2018-10-05 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── iotsitewise │ └── 2019-12-02 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── iotthingsgraph │ └── 2018-09-06 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── iottwinmaker │ └── 2021-11-29 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── iotwireless │ └── 2020-11-22 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ivs-realtime │ └── 2020-07-14 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── ivs │ └── 2020-07-14 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ivschat │ └── 2020-07-14 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── kafka │ └── 2018-11-14 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── kafkaconnect │ └── 2021-09-14 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── kendra-ranking │ └── 2022-10-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── kendra │ └── 2019-02-03 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── keyspaces │ └── 2022-02-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── kinesis-video-archived-media │ └── 2017-09-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── kinesis-video-media │ └── 2017-09-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── kinesis-video-signaling │ └── 2019-12-04 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── kinesis-video-webrtc-storage │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── kinesis │ └── 2013-12-02 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── kinesisanalytics │ └── 2015-08-14 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── kinesisanalyticsv2 │ └── 2018-05-23 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── kinesisvideo │ └── 2017-09-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── kms │ └── 2014-11-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── lakeformation │ └── 2017-03-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── lambda │ └── 2015-03-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── launch-wizard │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── lex-models │ └── 2017-04-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── license-manager-linux-subscriptions │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── license-manager-user-subscriptions │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── license-manager │ └── 2018-08-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── lightsail │ └── 2016-11-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── location │ └── 2020-11-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── logs │ └── 2014-03-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── lookoutequipment │ └── 2020-12-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── lookoutmetrics │ └── 2017-07-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── lookoutvision │ └── 2020-11-20 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── m2 │ └── 2021-04-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── machinelearning │ └── 2014-12-12 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── macie2 │ └── 2020-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── mailmanager │ └── 2023-10-17 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── managedblockchain-query │ └── 2023-05-04 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── managedblockchain │ └── 2018-09-24 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── manifest.json.php ├── marketplace-agreement │ └── 2020-03-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── marketplace-catalog │ └── 2018-09-17 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── marketplace-deployment │ └── 2023-01-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── marketplace-reporting │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── marketplacecommerceanalytics │ └── 2015-07-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── mediaconnect │ └── 2018-11-14 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── mediaconvert │ └── 2017-08-29 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── medialive │ └── 2017-10-14 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── mediapackage-vod │ └── 2018-11-07 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── mediapackage │ └── 2017-10-12 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── mediapackagev2 │ └── 2022-12-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── mediastore-data │ └── 2017-09-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── mediastore │ └── 2017-09-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── mediatailor │ └── 2018-04-23 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── medical-imaging │ └── 2023-07-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── memorydb │ └── 2021-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── metering.marketplace │ └── 2016-01-14 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── mgh │ └── 2017-05-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── mgn │ └── 2020-02-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── migration-hub-refactor-spaces │ └── 2021-10-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── migrationhub-config │ └── 2019-06-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── migrationhuborchestrator │ └── 2021-08-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── migrationhubstrategy │ └── 2020-02-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── models.lex.v2 │ └── 2020-08-07 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── monitoring │ └── 2010-08-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── mq │ └── 2017-11-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── mturk-requester │ └── 2017-01-17 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── mwaa │ └── 2020-07-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── neptune-graph │ └── 2023-11-29 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── neptune │ └── 2014-10-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── neptunedata │ └── 2023-08-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── network-firewall │ └── 2020-11-12 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── networkflowmonitor │ └── 2023-04-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── networkmanager │ └── 2019-07-05 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── networkmonitor │ └── 2023-08-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── notifications │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── notificationscontacts │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── oam │ └── 2022-06-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── observabilityadmin │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── omics │ └── 2022-11-28 │ │ ├── api-2.json.php │ │ ├── defaults-1.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── opensearch │ └── 2021-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── opensearchserverless │ └── 2021-11-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── opsworks │ └── 2013-02-18 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── opsworkscm │ └── 2016-11-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── organizations │ └── 2016-11-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── osis │ └── 2022-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── outposts │ └── 2019-12-03 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── panorama │ └── 2019-07-24 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── partitions.json.php ├── partnercentral-selling │ └── 2022-07-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── payment-cryptography-data │ └── 2022-02-03 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── payment-cryptography │ └── 2021-09-14 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── pca-connector-ad │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── pca-connector-scep │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── pcs │ └── 2023-02-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── personalize-events │ └── 2018-03-22 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── personalize-runtime │ └── 2018-05-22 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── personalize │ └── 2018-05-22 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── pi │ └── 2018-02-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── pinpoint-email │ └── 2018-07-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── pinpoint-sms-voice-v2 │ └── 2022-03-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── pinpoint │ └── 2016-12-01 │ │ ├── api-2.json.php │ │ └── endpoint-rule-set-1.json.php ├── pipes │ └── 2015-10-07 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── polly │ └── 2016-06-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── pricing │ └── 2017-10-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── proton │ └── 2020-07-20 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── qapps │ └── 2023-11-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── qbusiness │ └── 2023-11-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── qconnect │ └── 2020-10-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── qldb-session │ └── 2019-07-11 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── qldb │ └── 2019-01-02 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── quicksight │ └── 2018-04-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ram │ └── 2018-01-04 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── rbin │ └── 2021-06-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── rds-data │ └── 2018-08-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── rds │ ├── 2014-09-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php │ └── 2014-10-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.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 │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── redshift-serverless │ └── 2021-04-21 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── redshift │ └── 2012-12-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.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 │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── repostspace │ └── 2022-05-13 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── resiliencehub │ └── 2020-04-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── resource-explorer-2 │ └── 2022-07-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── resource-groups │ └── 2017-11-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── resourcegroupstaggingapi │ └── 2017-01-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── robomaker │ └── 2018-06-29 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── rolesanywhere │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── route53-recovery-cluster │ └── 2019-12-02 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── route53-recovery-control-config │ └── 2020-11-02 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── route53-recovery-readiness │ └── 2019-12-02 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── route53 │ └── 2013-04-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── route53domains │ └── 2014-05-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── route53profiles │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── route53resolver │ └── 2018-04-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── rum │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── runtime.lex.v2 │ └── 2020-08-07 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── runtime.lex │ └── 2016-11-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── runtime.sagemaker │ └── 2017-05-13 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── s3 │ └── 2006-03-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.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 │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── s3outposts │ └── 2017-07-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── s3tables │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── sagemaker-a2i-runtime │ └── 2019-11-07 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── sagemaker-edge │ └── 2020-09-23 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── sagemaker-featurestore-runtime │ └── 2020-07-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── sagemaker-geospatial │ └── 2020-05-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── sagemaker-metrics │ └── 2022-09-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── sagemaker │ └── 2017-07-24 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── savingsplans │ └── 2019-06-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── scheduler │ └── 2021-06-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── schemas │ └── 2019-12-02 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── sdk-default-configuration.json.php ├── secretsmanager │ └── 2017-10-17 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── security-ir │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── securityhub │ └── 2018-10-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── securitylake │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── serverlessrepo │ └── 2017-09-08 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── service-quotas │ └── 2019-06-24 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── servicecatalog-appregistry │ └── 2020-06-24 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── servicecatalog │ └── 2015-12-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── servicediscovery │ └── 2017-03-14 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── sesv2 │ └── 2019-09-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── shield │ └── 2016-06-02 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── signer │ └── 2017-08-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── simspaceweaver │ └── 2022-10-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── sms-voice │ └── 2018-09-05 │ │ ├── api-2.json.php │ │ └── endpoint-rule-set-1.json.php ├── sms │ └── 2016-10-24 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── snow-device-management │ └── 2021-08-04 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── snowball │ └── 2016-06-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── sns │ └── 2010-03-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── socialmessaging │ └── 2024-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── sqs │ └── 2012-11-05 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── ssm-contacts │ └── 2021-05-03 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ssm-guiconnect │ └── 2021-05-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ssm-incidents │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── ssm-quicksetup │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ssm-sap │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── ssm │ └── 2014-11-06 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── sso-admin │ └── 2020-07-20 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── sso-oidc │ └── 2019-06-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── sso │ └── 2019-06-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── states │ └── 2016-11-23 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── storagegateway │ └── 2013-06-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── streams.dynamodb │ └── 2012-08-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── sts │ └── 2011-06-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── supplychain │ └── 2024-01-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── support-app │ └── 2021-08-20 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── support │ └── 2013-04-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── swf │ └── 2012-01-25 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── synthetics │ └── 2017-10-11 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── taxsettings │ └── 2018-05-10 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── textract │ └── 2018-06-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── timestream-influxdb │ └── 2023-01-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── timestream-query │ └── 2018-11-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── timestream-write │ └── 2018-11-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── tnb │ └── 2008-10-21 │ │ ├── api-2.json.php │ │ ├── defaults-1.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── transcribe │ └── 2017-10-26 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── transfer │ └── 2018-11-05 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── waiters-2.json.php ├── translate │ └── 2017-07-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── trustedadvisor │ └── 2022-09-15 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── verifiedpermissions │ └── 2021-12-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ ├── smoke.json.php │ │ └── waiters-2.json.php ├── voice-id │ └── 2021-09-27 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── vpc-lattice │ └── 2022-11-30 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── waf-regional │ └── 2016-11-28 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── waf │ └── 2015-08-24 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── wafv2 │ └── 2019-07-29 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php ├── wellarchitected │ └── 2020-03-31 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── wisdom │ └── 2020-10-19 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── workdocs │ └── 2016-05-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── workmail │ └── 2017-10-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── workmailmessageflow │ └── 2019-05-01 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── workspaces-thin-client │ └── 2023-08-22 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── workspaces-web │ └── 2020-07-08 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ └── paginators-1.json.php ├── workspaces │ └── 2015-04-08 │ │ ├── api-2.json.php │ │ ├── endpoint-rule-set-1.json.php │ │ ├── paginators-1.json.php │ │ └── smoke.json.php └── xray │ └── 2016-04-12 │ ├── api-2.json.php │ ├── endpoint-rule-set-1.json.php │ └── paginators-1.json.php ├── drs ├── Exception │ └── drsException.php └── drsClient.php ├── finspace ├── Exception │ └── finspaceException.php └── finspaceClient.php ├── functions.php ├── imagebuilder ├── Exception │ └── imagebuilderException.php └── imagebuilderClient.php ├── ivschat ├── Exception │ └── ivschatException.php └── ivschatClient.php ├── kendra ├── Exception │ └── kendraException.php └── kendraClient.php ├── mgn ├── Exception │ └── mgnException.php └── mgnClient.php └── signer ├── Exception └── signerException.php └── signerClient.php /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ## Code of Conduct 2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 4 | opensource-codeofconduct@amazon.com with any additional questions or comments. -------------------------------------------------------------------------------- /CRT_INSTRUCTIONS.md: -------------------------------------------------------------------------------- 1 | ## Building and enabling the Common Run Time 2 | 3 | 1. **Follow instructions on crt repo** – Clone and build the repo as shown [here][https://github.com/awslabs/aws-crt-php]. 4 | 1. **Enable the CRT** – add the following line to your php.ini file `extension=path/to/aws-crt-php/modules/awscrt.so` -------------------------------------------------------------------------------- /src/ACMPCA/Exception/ACMPCAException.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/account/2021-02-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListRegions' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Regions', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/acm/2015-12-08/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListCertificates' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxItems', 'result_key' => 'CertificateSummaryList', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/amplifyuibuilder/2021-08-11/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/amplifyuibuilder/2021-08-11/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/apigatewaymanagementapi/2018-11-29/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/apigatewayv2/2018-11-29/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/appconfigdata/2021-11-11/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/appfabric/2023-05-19/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/appfabric/2023-05-19/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/appstream/2016-12-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeStacks', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/apptest/2022-12-06/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/apptest/2022-12-06/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/artifact/2018-05-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/artifact/2018-05-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/athena/2017-05-18/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListNamedQueries', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/autoscaling-plans/2018-01-06/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/backupsearch/2018-05-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/backupsearch/2018-05-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/batch/2016-08-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeComputeEnvironments', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/bcm-pricing-calculator/2024-06-19/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/bcm-pricing-calculator/2024-06-19/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/bedrock-data-automation-runtime/2024-06-13/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/bedrock-runtime/2023-09-30/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/bedrock-runtime/2023-09-30/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/bedrock/2023-04-20/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/bedrock/2023-04-20/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/billing/2023-09-07/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/billing/2023-09-07/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/billingconductor/2021-07-30/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/billingconductor/2021-07-30/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/chime-sdk-meetings/2021-07-15/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListAttendees' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/cleanrooms/2022-02-17/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/cleanrooms/2022-02-17/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/cleanroomsml/2023-09-06/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/cleanroomsml/2023-09-06/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/cloudcontrol/2021-09-30/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/cloudhsm/2014-05-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/cloudtrail-data/2021-08-11/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/codebuild/2016-10-06/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListBuilds', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/codecatalyst/2022-09-28/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/codecatalyst/2022-09-28/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/cognito-sync/2014-06-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/comprehendmedical/2018-10-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/connectparticipant/2018-09-07/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'GetTranscript' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/controlcatalog/2018-05-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/controlcatalog/2018-05-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/cost-optimization-hub/2022-07-26/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/cost-optimization-hub/2022-07-26/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/cur/2017-01-06/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeReportDefinitions' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/cur/2017-01-06/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'DescribeReportDefinitions', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/dataexchange/2017-07-25/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/dataexchange/2017-07-25/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/dax/2017-04-19/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/discovery/2015-11-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeAgents', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/dlm/2018-01-12/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/dsql/2018-05-10/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListClusters' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'clusters', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/ec2-instance-connect/2018-04-02/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/eks-auth/2023-11-26/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/eks-auth/2023-11-26/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/eks-auth/2023-11-26/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/entitlement.marketplace/2017-01-11/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'GetEntitlements' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/eventbridge/2015-10-07/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/events/2015-10-07/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/firehose/2015-08-04/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/forecastquery/2018-06-26/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/geo-maps/2020-11-19/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/geo-places/2020-11-19/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/geo-routes/2020-11-19/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/glue/2017-03-31/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'GetCatalogImportStatus', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/grafana/2020-08-18/defaults-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/inspector-scan/2023-08-08/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/internetmonitor/2021-06-03/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/internetmonitor/2021-06-03/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/invoicing/2024-12-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/invoicing/2024-12-01/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/iot-jobs-data/2017-09-29/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/iotevents-data/2018-10-23/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/iotevents/2018-07-27/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/iotfleethub/2020-11-03/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListApplications' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'result_key' => 'applicationSummaries', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/iotfleetwise/2021-06-17/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/iotfleetwise/2021-06-17/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/iotsecuretunneling/2018-10-05/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListTunnels' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/iottwinmaker/2021-11-29/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/iottwinmaker/2021-11-29/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/ivs-realtime/2020-07-14/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/ivs-realtime/2020-07-14/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/ivschat/2020-07-14/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/ivschat/2020-07-14/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/kafkaconnect/2021-09-14/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/kafkaconnect/2021-09-14/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/kendra-ranking/2022-10-19/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListRescoreExecutionPlans' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/keyspaces/2022-02-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/keyspaces/2022-02-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/kinesis-video-media/2017-09-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/kinesis-video-signaling/2019-12-04/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/kinesis-video-webrtc-storage/2018-05-10/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/kinesisanalytics/2015-08-14/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/license-manager/2018-08-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/lightsail/2016-11-28/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/lightsail/2016-11-28/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'GetActiveNames', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/managedblockchain-query/2023-05-04/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/managedblockchain-query/2023-05-04/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/marketplace-deployment/2023-01-25/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/marketplace-reporting/2018-05-10/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/marketplace-reporting/2018-05-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/marketplace-reporting/2018-05-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/mediaconnect/2018-11-14/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/mediapackagev2/2022-12-25/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/mediastore-data/2017-09-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListItems' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/mediastore/2017-09-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListContainers' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/medical-imaging/2023-07-19/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/medical-imaging/2023-07-19/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/metering.marketplace/2016-01-14/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/migrationhub-config/2019-06-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'DescribeHomeRegionControls' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/migrationhuborchestrator/2021-08-28/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/migrationhuborchestrator/2021-08-28/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/data/mturk-requester/2017-01-17/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'GetAccountBalance', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/mwaa/2020-07-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListEnvironments' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Environments', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/neptunedata/2023-08-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/networkflowmonitor/2023-04-19/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/networkflowmonitor/2023-04-19/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/networkmonitor/2023-08-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/networkmonitor/2023-08-01/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/notifications/2018-05-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/notifications/2018-05-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/notificationscontacts/2018-05-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/notificationscontacts/2018-05-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/observabilityadmin/2018-05-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/observabilityadmin/2018-05-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/omics/2022-11-28/defaults-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/omics/2022-11-28/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/opensearchserverless/2021-11-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/opensearchserverless/2021-11-01/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/osis/2022-01-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListPipelines' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/payment-cryptography-data/2022-02-03/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/payment-cryptography-data/2022-02-03/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/payment-cryptography-data/2022-02-03/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/payment-cryptography/2021-09-14/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/payment-cryptography/2021-09-14/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/pca-connector-scep/2018-05-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/pca-connector-scep/2018-05-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/pcs/2023-02-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/pcs/2023-02-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/personalize-events/2018-03-22/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/personalize-runtime/2018-05-22/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/pinpoint-sms-voice-v2/2022-03-31/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/pinpoint-sms-voice-v2/2022-03-31/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/pipes/2015-10-07/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListPipes' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'Limit', 'result_key' => 'Pipes', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/pipes/2015-10-07/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/pipes/2015-10-07/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/polly/2016-06-10/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListSpeechSynthesisTasks' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/polly/2016-06-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeVoices', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/pricing/2017-10-15/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/pricing/2017-10-15/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/qapps/2023-11-27/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/qapps/2023-11-27/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/qbusiness/2023-11-27/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/qbusiness/2023-11-27/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/qconnect/2020-10-19/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/qconnect/2020-10-19/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/qldb-session/2019-07-11/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/rbin/2021-06-15/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListRules' => [ 'input_token' => 'NextToken', 'output_token' => 'NextToken', 'limit_key' => 'MaxResults', 'result_key' => 'Rules', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/rds-data/2018-08-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/rds/2014-09-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/rekognition/2016-06-27/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListCollections', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/repostspace/2022-05-13/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [ 'ListSpaces' => [ 'input_token' => 'nextToken', 'output_token' => 'nextToken', 'limit_key' => 'maxResults', 'result_key' => 'spaces', ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/runtime.lex.v2/2020-08-07/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/runtime.lex/2016-11-28/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/runtime.sagemaker/2017-05-13/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/s3/2006-03-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListBuckets', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/s3tables/2018-05-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/s3tables/2018-05-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/sagemaker-edge/2020-09-23/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/sagemaker-featurestore-runtime/2020-07-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/sagemaker-metrics/2022-09-30/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/savingsplans/2019-06-28/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/security-ir/2018-05-10/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/security-ir/2018-05-10/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/shield/2016-06-02/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListAttacks', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/snowball/2016-06-30/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'DescribeAddresses', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/ssm-guiconnect/2021-05-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/sso-admin/2020-07-20/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/sso-admin/2020-07-20/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/sso-oidc/2019-06-10/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/states/2016-11-23/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [ [ 'operationName' => 'ListActivities', 'input' => [], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/streams.dynamodb/2012-08-10/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/sts/2011-06-15/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/tnb/2008-10-21/defaults-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/verifiedpermissions/2021-12-01/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-west-2', 'testCases' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/verifiedpermissions/2021-12-01/waiters-2.json.php: -------------------------------------------------------------------------------- 1 | 2, 'waiters' => [],]; 4 | -------------------------------------------------------------------------------- /src/data/waf-regional/2016-11-28/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/waf-regional/2016-11-28/smoke.json.php: -------------------------------------------------------------------------------- 1 | 1, 'defaultRegion' => 'us-east-1', 'testCases' => [ [ 'operationName' => 'ListRules', 'input' => [ 'Limit' => 20, ], 'errorExpectedFromService' => false, ], ],]; 4 | -------------------------------------------------------------------------------- /src/data/waf/2015-08-24/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/wafv2/2019-07-29/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/data/workmailmessageflow/2019-05-01/paginators-1.json.php: -------------------------------------------------------------------------------- 1 | [],]; 4 | -------------------------------------------------------------------------------- /src/drs/Exception/drsException.php: -------------------------------------------------------------------------------- 1 |