├── .cache ├── generate │ └── .gitignore ├── php-cs-fixer │ └── .gitignore ├── phpstan │ └── .gitignore └── psalm │ └── .gitignore ├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── .editorconfig │ ├── bin │ └── refresh │ ├── checks.yml │ ├── ci.yml │ ├── static.yml │ ├── watch.yml │ └── website.yml ├── .gitignore ├── .php-cs-fixer.php ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── couscous.yml ├── docs ├── authentication │ ├── credentials-file.md │ ├── ec2-metadata.md │ ├── ecs-container.md │ ├── environment.md │ ├── hard-coded.md │ ├── index.md │ ├── pod-identity.md │ └── web-identity.md ├── clients │ ├── app-sync.md │ ├── athena.md │ ├── bedrock-runtime.md │ ├── cf.md │ ├── cloud-front.md │ ├── cloud-watch-logs.md │ ├── cloud-watch.md │ ├── code-build.md │ ├── code-commit.md │ ├── code-deploy.md │ ├── cognito-idp.md │ ├── comprehend.md │ ├── dynamodb.md │ ├── ecr.md │ ├── elasti-cache.md │ ├── event-bridge.md │ ├── firehose.md │ ├── iam.md │ ├── index.md │ ├── iot-data.md │ ├── iot.md │ ├── kinesis.md │ ├── kms.md │ ├── lambda.md │ ├── location-service.md │ ├── media-convert.md │ ├── rds-data-service.md │ ├── rekognition.md │ ├── route53.md │ ├── s3.md │ ├── scheduler.md │ ├── secrets-manager.md │ ├── ses.md │ ├── sns.md │ ├── sqs.md │ ├── ssm.md │ ├── sso-oidc.md │ ├── sso.md │ ├── step-functions.md │ ├── sts.md │ ├── timestream-query.md │ ├── timestream-write.md │ ├── translate.md │ └── x-ray.md ├── compare.md ├── configuration.md ├── contribute │ ├── generate.md │ ├── index.md │ └── website.md ├── features │ ├── async.md │ ├── pagination.md │ ├── presign.md │ ├── tests.md │ └── waiter.md ├── index.md └── integration │ ├── laravel.md │ ├── monolog.md │ ├── sessions.md │ ├── simple-s3.md │ └── symfony-bundle.md ├── generate ├── link ├── manifest.json ├── phpstan.neon.dist ├── phpunit.xml.dist ├── psalm.baseline.xml ├── psalm.xml ├── release ├── src ├── CodeGenerator │ ├── .gitattributes │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Command │ │ └── GenerateCommand.php │ │ ├── Definition │ │ ├── ErrorWaiterAcceptor.php │ │ ├── Example.php │ │ ├── ExceptionShape.php │ │ ├── Hook.php │ │ ├── ListMember.php │ │ ├── ListShape.php │ │ ├── MapKey.php │ │ ├── MapShape.php │ │ ├── MapValue.php │ │ ├── Member.php │ │ ├── Operation.php │ │ ├── Pagination.php │ │ ├── ServiceDefinition.php │ │ ├── Shape.php │ │ ├── StructureMember.php │ │ ├── StructureShape.php │ │ ├── Waiter.php │ │ └── WaiterAcceptor.php │ │ ├── File │ │ ├── Cache.php │ │ ├── CachedFileDumper.php │ │ ├── ClassWriter.php │ │ ├── ComposerWriter.php │ │ ├── FileDumper.php │ │ ├── Location │ │ │ ├── AsyncAwsMonoRepoResolver.php │ │ │ ├── DirectoryResolver.php │ │ │ └── StandalonePackageResolver.php │ │ ├── Printer.php │ │ └── UnusedClassCleaner.php │ │ ├── Generator │ │ ├── ApiGenerator.php │ │ ├── ClientGenerator.php │ │ ├── CodeGenerator │ │ │ ├── PopulatorGenerator.php │ │ │ └── TypeGenerator.php │ │ ├── Composer │ │ │ └── RequirementsRegistry.php │ │ ├── EnumGenerator.php │ │ ├── ExceptionGenerator.php │ │ ├── GeneratorHelper.php │ │ ├── HookGenerator.php │ │ ├── InputGenerator.php │ │ ├── Naming │ │ │ ├── ClassName.php │ │ │ └── NamespaceRegistry.php │ │ ├── ObjectGenerator.php │ │ ├── OperationGenerator.php │ │ ├── PaginationGenerator.php │ │ ├── PhpGenerator │ │ │ ├── ClassBuilder.php │ │ │ ├── ClassFactory.php │ │ │ └── ClassRegistry.php │ │ ├── RequestSerializer │ │ │ ├── JsonRpcSerializer.php │ │ │ ├── QuerySerializer.php │ │ │ ├── RestJsonSerializer.php │ │ │ ├── RestXmlSerializer.php │ │ │ ├── Serializer.php │ │ │ ├── SerializerProvider.php │ │ │ ├── SerializerResult.php │ │ │ ├── SerializerResultBody.php │ │ │ ├── SerializerResultBuilder.php │ │ │ └── UseClassesTrait.php │ │ ├── ResponseParser │ │ │ ├── JsonRpcParser.php │ │ │ ├── Parser.php │ │ │ ├── ParserProvider.php │ │ │ ├── ParserResult.php │ │ │ ├── RestJsonParser.php │ │ │ └── RestXmlParser.php │ │ ├── ResultGenerator.php │ │ ├── ServiceGenerator.php │ │ ├── TestGenerator.php │ │ └── WaiterGenerator.php │ │ ├── Runner.php │ │ └── test │ │ └── .gitignore ├── Core │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── roave-bc-check.yaml │ └── src │ │ ├── AbstractApi.php │ │ ├── AwsClientFactory.php │ │ ├── AwsError │ │ ├── AwsError.php │ │ ├── AwsErrorFactoryFromResponseTrait.php │ │ ├── AwsErrorFactoryInterface.php │ │ ├── ChainAwsErrorFactory.php │ │ ├── JsonRestAwsErrorFactory.php │ │ ├── JsonRpcAwsErrorFactory.php │ │ └── XmlAwsErrorFactory.php │ │ ├── Configuration.php │ │ ├── Credentials │ │ ├── CacheProvider.php │ │ ├── ChainProvider.php │ │ ├── ConfigurationProvider.php │ │ ├── ContainerProvider.php │ │ ├── CredentialProvider.php │ │ ├── Credentials.php │ │ ├── DateFromResult.php │ │ ├── IniFileLoader.php │ │ ├── IniFileProvider.php │ │ ├── InstanceProvider.php │ │ ├── NullProvider.php │ │ ├── PsrCacheProvider.php │ │ ├── SsoCacheFileLoader.php │ │ ├── SsoTokenProvider.php │ │ ├── SymfonyCacheProvider.php │ │ ├── TokenFileLoader.php │ │ └── WebIdentityProvider.php │ │ ├── EndpointDiscovery │ │ ├── EndpointCache.php │ │ └── EndpointInterface.php │ │ ├── EnvVar.php │ │ ├── Exception │ │ ├── Exception.php │ │ ├── Http │ │ │ ├── ClientException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpExceptionTrait.php │ │ │ ├── NetworkException.php │ │ │ ├── RedirectionException.php │ │ │ └── ServerException.php │ │ ├── InvalidArgument.php │ │ ├── LogicException.php │ │ ├── MissingDependency.php │ │ ├── RuntimeException.php │ │ ├── UnexpectedValue.php │ │ ├── UnparsableResponse.php │ │ └── UnsupportedRegion.php │ │ ├── HttpClient │ │ ├── AwsHttpClientFactory.php │ │ └── AwsRetryStrategy.php │ │ ├── Input.php │ │ ├── Request.php │ │ ├── RequestContext.php │ │ ├── Response.php │ │ ├── Result.php │ │ ├── Signer │ │ ├── Signer.php │ │ ├── SignerV4.php │ │ └── SigningContext.php │ │ ├── Stream │ │ ├── CallableStream.php │ │ ├── FixedSizeStream.php │ │ ├── IterableStream.php │ │ ├── ReadOnceResultStream.php │ │ ├── RequestStream.php │ │ ├── ResourceStream.php │ │ ├── ResponseBodyResourceStream.php │ │ ├── ResponseBodyStream.php │ │ ├── ResultStream.php │ │ ├── RewindableStream.php │ │ ├── StreamFactory.php │ │ └── StringStream.php │ │ ├── Sts │ │ ├── Exception │ │ │ ├── ExpiredTokenException.php │ │ │ ├── IDPCommunicationErrorException.php │ │ │ ├── IDPRejectedClaimException.php │ │ │ ├── InvalidIdentityTokenException.php │ │ │ ├── MalformedPolicyDocumentException.php │ │ │ ├── PackedPolicyTooLargeException.php │ │ │ └── RegionDisabledException.php │ │ ├── Input │ │ │ ├── AssumeRoleRequest.php │ │ │ ├── AssumeRoleWithWebIdentityRequest.php │ │ │ └── GetCallerIdentityRequest.php │ │ ├── Result │ │ │ ├── AssumeRoleResponse.php │ │ │ ├── AssumeRoleWithWebIdentityResponse.php │ │ │ └── GetCallerIdentityResponse.php │ │ ├── StsClient.php │ │ └── ValueObject │ │ │ ├── AssumedRoleUser.php │ │ │ ├── Credentials.php │ │ │ ├── PolicyDescriptorType.php │ │ │ ├── ProvidedContext.php │ │ │ └── Tag.php │ │ ├── Test │ │ ├── Http │ │ │ └── SimpleMockedResponse.php │ │ ├── ResultMockFactory.php │ │ ├── SimpleResultStream.php │ │ └── TestCase.php │ │ └── Waiter.php ├── Integration │ ├── Aws │ │ ├── DynamoDbSession │ │ │ ├── .gitattributes │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── SessionHandler.php │ │ └── SimpleS3 │ │ │ ├── .gitattributes │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── SimpleS3Client.php │ ├── Laravel │ │ ├── Cache │ │ │ ├── .gitattributes │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── AsyncAwsDynamoDbLock.php │ │ │ │ ├── AsyncAwsDynamoDbStore.php │ │ │ │ └── ServiceProvider.php │ │ └── Queue │ │ │ ├── .gitattributes │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── AsyncAwsSqsQueue.php │ │ │ ├── Connector │ │ │ └── AsyncAwsSqsConnector.php │ │ │ ├── Job │ │ │ └── AsyncAwsSqsJob.php │ │ │ └── ServiceProvider.php │ ├── Monolog │ │ └── CloudWatch │ │ │ ├── .gitattributes │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── CloudWatchLogsHandler.php │ └── Symfony │ │ └── Bundle │ │ ├── .gitattributes │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AsyncAwsBundle.php │ │ ├── DependencyInjection │ │ ├── AsyncAwsExtension.php │ │ ├── AwsPackagesProvider.php │ │ ├── Compiler │ │ │ └── InjectCasterPass.php │ │ └── Configuration.php │ │ ├── Secrets │ │ ├── CachedEnvVarLoader.php │ │ └── SsmVault.php │ │ └── VarDumper │ │ └── ResultCaster.php └── Service │ ├── .template │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── FoobarClient.php │ ├── AppSync │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── AppSyncClient.php │ │ ├── Enum │ │ ├── AuthorizationType.php │ │ ├── BadRequestReason.php │ │ ├── ConflictDetectionType.php │ │ ├── ConflictHandlerType.php │ │ ├── DataSourceLevelMetricsConfig.php │ │ ├── DataSourceType.php │ │ ├── RelationalDatabaseSourceType.php │ │ ├── ResolverKind.php │ │ ├── ResolverLevelMetricsConfig.php │ │ ├── RuntimeName.php │ │ └── SchemaStatus.php │ │ ├── Exception │ │ ├── ApiKeyValidityOutOfBoundsException.php │ │ ├── BadRequestException.php │ │ ├── ConcurrentModificationException.php │ │ ├── InternalFailureException.php │ │ ├── LimitExceededException.php │ │ ├── NotFoundException.php │ │ └── UnauthorizedException.php │ │ ├── Input │ │ ├── CreateResolverRequest.php │ │ ├── DeleteResolverRequest.php │ │ ├── GetSchemaCreationStatusRequest.php │ │ ├── ListApiKeysRequest.php │ │ ├── ListResolversRequest.php │ │ ├── StartSchemaCreationRequest.php │ │ ├── UpdateApiKeyRequest.php │ │ ├── UpdateDataSourceRequest.php │ │ └── UpdateResolverRequest.php │ │ ├── Result │ │ ├── CreateResolverResponse.php │ │ ├── DeleteResolverResponse.php │ │ ├── GetSchemaCreationStatusResponse.php │ │ ├── ListApiKeysResponse.php │ │ ├── ListResolversResponse.php │ │ ├── StartSchemaCreationResponse.php │ │ ├── UpdateApiKeyResponse.php │ │ ├── UpdateDataSourceResponse.php │ │ └── UpdateResolverResponse.php │ │ └── ValueObject │ │ ├── ApiKey.php │ │ ├── AppSyncRuntime.php │ │ ├── AuthorizationConfig.php │ │ ├── AwsIamConfig.php │ │ ├── BadRequestDetail.php │ │ ├── CachingConfig.php │ │ ├── CodeError.php │ │ ├── CodeErrorLocation.php │ │ ├── DataSource.php │ │ ├── DeltaSyncConfig.php │ │ ├── DynamodbDataSourceConfig.php │ │ ├── ElasticsearchDataSourceConfig.php │ │ ├── EventBridgeDataSourceConfig.php │ │ ├── HttpDataSourceConfig.php │ │ ├── LambdaConflictHandlerConfig.php │ │ ├── LambdaDataSourceConfig.php │ │ ├── OpenSearchServiceDataSourceConfig.php │ │ ├── PipelineConfig.php │ │ ├── RdsHttpEndpointConfig.php │ │ ├── RelationalDatabaseDataSourceConfig.php │ │ ├── Resolver.php │ │ └── SyncConfig.php │ ├── Athena │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── AthenaClient.php │ │ ├── Enum │ │ ├── AuthenticationType.php │ │ ├── CalculationExecutionState.php │ │ ├── ColumnNullable.php │ │ ├── ConnectionType.php │ │ ├── DataCatalogStatus.php │ │ ├── DataCatalogType.php │ │ ├── EncryptionOption.php │ │ ├── QueryExecutionState.php │ │ ├── QueryResultType.php │ │ ├── S3AclOption.php │ │ ├── SessionState.php │ │ ├── StatementType.php │ │ ├── ThrottleReason.php │ │ └── WorkGroupState.php │ │ ├── Exception │ │ ├── InternalServerException.php │ │ ├── InvalidRequestException.php │ │ ├── MetadataException.php │ │ ├── ResourceNotFoundException.php │ │ ├── SessionAlreadyExistsException.php │ │ └── TooManyRequestsException.php │ │ ├── Input │ │ ├── GetCalculationExecutionRequest.php │ │ ├── GetCalculationExecutionStatusRequest.php │ │ ├── GetDataCatalogInput.php │ │ ├── GetDatabaseInput.php │ │ ├── GetNamedQueryInput.php │ │ ├── GetQueryExecutionInput.php │ │ ├── GetQueryResultsInput.php │ │ ├── GetSessionRequest.php │ │ ├── GetSessionStatusRequest.php │ │ ├── GetTableMetadataInput.php │ │ ├── GetWorkGroupInput.php │ │ ├── ListDatabasesInput.php │ │ ├── ListNamedQueriesInput.php │ │ ├── ListQueryExecutionsInput.php │ │ ├── ListTableMetadataInput.php │ │ ├── StartCalculationExecutionRequest.php │ │ ├── StartQueryExecutionInput.php │ │ ├── StartSessionRequest.php │ │ ├── StopCalculationExecutionRequest.php │ │ ├── StopQueryExecutionInput.php │ │ └── TerminateSessionRequest.php │ │ ├── Result │ │ ├── GetCalculationExecutionResponse.php │ │ ├── GetCalculationExecutionStatusResponse.php │ │ ├── GetDataCatalogOutput.php │ │ ├── GetDatabaseOutput.php │ │ ├── GetNamedQueryOutput.php │ │ ├── GetQueryExecutionOutput.php │ │ ├── GetQueryResultsOutput.php │ │ ├── GetSessionResponse.php │ │ ├── GetSessionStatusResponse.php │ │ ├── GetTableMetadataOutput.php │ │ ├── GetWorkGroupOutput.php │ │ ├── ListDatabasesOutput.php │ │ ├── ListNamedQueriesOutput.php │ │ ├── ListQueryExecutionsOutput.php │ │ ├── ListTableMetadataOutput.php │ │ ├── StartCalculationExecutionResponse.php │ │ ├── StartQueryExecutionOutput.php │ │ ├── StartSessionResponse.php │ │ ├── StopCalculationExecutionResponse.php │ │ ├── StopQueryExecutionOutput.php │ │ └── TerminateSessionResponse.php │ │ └── ValueObject │ │ ├── AclConfiguration.php │ │ ├── AthenaError.php │ │ ├── CalculationConfiguration.php │ │ ├── CalculationResult.php │ │ ├── CalculationStatistics.php │ │ ├── CalculationStatus.php │ │ ├── Column.php │ │ ├── ColumnInfo.php │ │ ├── CustomerContentEncryptionConfiguration.php │ │ ├── DataCatalog.php │ │ ├── Database.php │ │ ├── Datum.php │ │ ├── EncryptionConfiguration.php │ │ ├── EngineConfiguration.php │ │ ├── EngineVersion.php │ │ ├── IdentityCenterConfiguration.php │ │ ├── ManagedQueryResultsConfiguration.php │ │ ├── ManagedQueryResultsEncryptionConfiguration.php │ │ ├── NamedQuery.php │ │ ├── QueryExecution.php │ │ ├── QueryExecutionContext.php │ │ ├── QueryExecutionStatistics.php │ │ ├── QueryExecutionStatus.php │ │ ├── QueryResultsS3AccessGrantsConfiguration.php │ │ ├── ResultConfiguration.php │ │ ├── ResultReuseByAgeConfiguration.php │ │ ├── ResultReuseConfiguration.php │ │ ├── ResultReuseInformation.php │ │ ├── ResultSet.php │ │ ├── ResultSetMetadata.php │ │ ├── Row.php │ │ ├── SessionConfiguration.php │ │ ├── SessionStatistics.php │ │ ├── SessionStatus.php │ │ ├── TableMetadata.php │ │ ├── WorkGroup.php │ │ └── WorkGroupConfiguration.php │ ├── BedrockRuntime │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── BedrockRuntimeClient.php │ │ ├── Enum │ │ ├── PerformanceConfigLatency.php │ │ └── Trace.php │ │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── InternalServerException.php │ │ ├── ModelErrorException.php │ │ ├── ModelNotReadyException.php │ │ ├── ModelTimeoutException.php │ │ ├── ResourceNotFoundException.php │ │ ├── ServiceQuotaExceededException.php │ │ ├── ServiceUnavailableException.php │ │ ├── ThrottlingException.php │ │ └── ValidationException.php │ │ ├── Input │ │ └── InvokeModelRequest.php │ │ └── Result │ │ └── InvokeModelResponse.php │ ├── CloudFormation │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CloudFormationClient.php │ │ ├── Enum │ │ ├── Capability.php │ │ ├── DeletionMode.php │ │ ├── DetailedStatus.php │ │ ├── HookFailureMode.php │ │ ├── HookInvocationPoint.php │ │ ├── HookStatus.php │ │ ├── ResourceStatus.php │ │ ├── StackDriftDetectionStatus.php │ │ ├── StackDriftStatus.php │ │ └── StackStatus.php │ │ ├── Input │ │ ├── DescribeStackDriftDetectionStatusInput.php │ │ ├── DescribeStackEventsInput.php │ │ └── DescribeStacksInput.php │ │ ├── Result │ │ ├── DescribeStackDriftDetectionStatusOutput.php │ │ ├── DescribeStackEventsOutput.php │ │ └── DescribeStacksOutput.php │ │ └── ValueObject │ │ ├── Output.php │ │ ├── Parameter.php │ │ ├── RollbackConfiguration.php │ │ ├── RollbackTrigger.php │ │ ├── Stack.php │ │ ├── StackDriftInformation.php │ │ ├── StackEvent.php │ │ └── Tag.php │ ├── CloudFront │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CloudFrontClient.php │ │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── BatchTooLargeException.php │ │ ├── InconsistentQuantitiesException.php │ │ ├── InvalidArgumentException.php │ │ ├── MissingBodyException.php │ │ ├── NoSuchDistributionException.php │ │ └── TooManyInvalidationsInProgressException.php │ │ ├── Input │ │ └── CreateInvalidationRequest.php │ │ ├── Result │ │ └── CreateInvalidationResult.php │ │ └── ValueObject │ │ ├── Invalidation.php │ │ ├── InvalidationBatch.php │ │ └── Paths.php │ ├── CloudWatch │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CloudWatchClient.php │ │ ├── Enum │ │ ├── RecentlyActive.php │ │ ├── ScanBy.php │ │ ├── StandardUnit.php │ │ ├── Statistic.php │ │ └── StatusCode.php │ │ ├── Exception │ │ ├── InternalServiceFaultException.php │ │ ├── InvalidNextTokenException.php │ │ ├── InvalidParameterCombinationException.php │ │ ├── InvalidParameterValueException.php │ │ └── MissingRequiredParameterException.php │ │ ├── Input │ │ ├── GetMetricDataInput.php │ │ ├── GetMetricStatisticsInput.php │ │ ├── ListMetricsInput.php │ │ └── PutMetricDataInput.php │ │ ├── Result │ │ ├── GetMetricDataOutput.php │ │ ├── GetMetricStatisticsOutput.php │ │ └── ListMetricsOutput.php │ │ └── ValueObject │ │ ├── Datapoint.php │ │ ├── Dimension.php │ │ ├── DimensionFilter.php │ │ ├── Entity.php │ │ ├── EntityMetricData.php │ │ ├── LabelOptions.php │ │ ├── MessageData.php │ │ ├── Metric.php │ │ ├── MetricDataQuery.php │ │ ├── MetricDataResult.php │ │ ├── MetricDatum.php │ │ ├── MetricStat.php │ │ └── StatisticSet.php │ ├── CloudWatchLogs │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CloudWatchLogsClient.php │ │ ├── Enum │ │ ├── EntityRejectionErrorType.php │ │ ├── LogGroupClass.php │ │ └── OrderBy.php │ │ ├── Exception │ │ ├── DataAlreadyAcceptedException.php │ │ ├── InvalidParameterException.php │ │ ├── InvalidSequenceTokenException.php │ │ ├── LimitExceededException.php │ │ ├── OperationAbortedException.php │ │ ├── ResourceAlreadyExistsException.php │ │ ├── ResourceNotFoundException.php │ │ ├── ServiceUnavailableException.php │ │ └── UnrecognizedClientException.php │ │ ├── Input │ │ ├── CreateLogGroupRequest.php │ │ ├── CreateLogStreamRequest.php │ │ ├── DescribeLogStreamsRequest.php │ │ ├── FilterLogEventsRequest.php │ │ └── PutLogEventsRequest.php │ │ ├── Result │ │ ├── DescribeLogStreamsResponse.php │ │ ├── FilterLogEventsResponse.php │ │ └── PutLogEventsResponse.php │ │ └── ValueObject │ │ ├── Entity.php │ │ ├── FilteredLogEvent.php │ │ ├── InputLogEvent.php │ │ ├── LogStream.php │ │ ├── RejectedEntityInfo.php │ │ ├── RejectedLogEventsInfo.php │ │ └── SearchedLogStream.php │ ├── CodeBuild │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CodeBuildClient.php │ │ ├── Enum │ │ ├── ArtifactNamespace.php │ │ ├── ArtifactPackaging.php │ │ ├── ArtifactsType.php │ │ ├── BucketOwnerAccess.php │ │ ├── BuildPhaseType.php │ │ ├── CacheMode.php │ │ ├── CacheType.php │ │ ├── ComputeType.php │ │ ├── CredentialProviderType.php │ │ ├── EnvironmentType.php │ │ ├── EnvironmentVariableType.php │ │ ├── FileSystemType.php │ │ ├── ImagePullCredentialsType.php │ │ ├── LogsConfigStatusType.php │ │ ├── MachineType.php │ │ ├── SourceAuthType.php │ │ ├── SourceType.php │ │ └── StatusType.php │ │ ├── Exception │ │ ├── AccountLimitExceededException.php │ │ ├── InvalidInputException.php │ │ └── ResourceNotFoundException.php │ │ ├── Input │ │ ├── BatchGetBuildsInput.php │ │ ├── StartBuildInput.php │ │ └── StopBuildInput.php │ │ ├── Result │ │ ├── BatchGetBuildsOutput.php │ │ ├── StartBuildOutput.php │ │ └── StopBuildOutput.php │ │ └── ValueObject │ │ ├── AutoRetryConfig.php │ │ ├── Build.php │ │ ├── BuildArtifacts.php │ │ ├── BuildPhase.php │ │ ├── BuildStatusConfig.php │ │ ├── CloudWatchLogsConfig.php │ │ ├── ComputeConfiguration.php │ │ ├── DebugSession.php │ │ ├── DockerServer.php │ │ ├── DockerServerStatus.php │ │ ├── EnvironmentVariable.php │ │ ├── ExportedEnvironmentVariable.php │ │ ├── GitSubmodulesConfig.php │ │ ├── LogsConfig.php │ │ ├── LogsLocation.php │ │ ├── NetworkInterface.php │ │ ├── PhaseContext.php │ │ ├── ProjectArtifacts.php │ │ ├── ProjectCache.php │ │ ├── ProjectEnvironment.php │ │ ├── ProjectFileSystemLocation.php │ │ ├── ProjectFleet.php │ │ ├── ProjectSource.php │ │ ├── ProjectSourceVersion.php │ │ ├── RegistryCredential.php │ │ ├── S3LogsConfig.php │ │ ├── SourceAuth.php │ │ └── VpcConfig.php │ ├── CodeCommit │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CodeCommitClient.php │ │ ├── Enum │ │ ├── ChangeTypeEnum.php │ │ ├── OrderEnum.php │ │ ├── RepositoryTriggerEventEnum.php │ │ └── SortByEnum.php │ │ ├── Exception │ │ ├── BlobIdDoesNotExistException.php │ │ ├── BlobIdRequiredException.php │ │ ├── BranchDoesNotExistException.php │ │ ├── BranchNameRequiredException.php │ │ ├── CommitDoesNotExistException.php │ │ ├── CommitIdDoesNotExistException.php │ │ ├── CommitIdRequiredException.php │ │ ├── CommitRequiredException.php │ │ ├── EncryptionIntegrityChecksFailedException.php │ │ ├── EncryptionKeyAccessDeniedException.php │ │ ├── EncryptionKeyDisabledException.php │ │ ├── EncryptionKeyInvalidIdException.php │ │ ├── EncryptionKeyInvalidUsageException.php │ │ ├── EncryptionKeyNotFoundException.php │ │ ├── EncryptionKeyUnavailableException.php │ │ ├── FileTooLargeException.php │ │ ├── InvalidBlobIdException.php │ │ ├── InvalidBranchNameException.php │ │ ├── InvalidCommitException.php │ │ ├── InvalidCommitIdException.php │ │ ├── InvalidContinuationTokenException.php │ │ ├── InvalidMaxResultsException.php │ │ ├── InvalidOrderException.php │ │ ├── InvalidPathException.php │ │ ├── InvalidRepositoryDescriptionException.php │ │ ├── InvalidRepositoryNameException.php │ │ ├── InvalidRepositoryTriggerBranchNameException.php │ │ ├── InvalidRepositoryTriggerCustomDataException.php │ │ ├── InvalidRepositoryTriggerDestinationArnException.php │ │ ├── InvalidRepositoryTriggerEventsException.php │ │ ├── InvalidRepositoryTriggerNameException.php │ │ ├── InvalidRepositoryTriggerRegionException.php │ │ ├── InvalidSortByException.php │ │ ├── InvalidSystemTagUsageException.php │ │ ├── InvalidTagsMapException.php │ │ ├── MaximumBranchesExceededException.php │ │ ├── MaximumRepositoryTriggersExceededException.php │ │ ├── OperationNotAllowedException.php │ │ ├── PathDoesNotExistException.php │ │ ├── RepositoryDoesNotExistException.php │ │ ├── RepositoryLimitExceededException.php │ │ ├── RepositoryNameExistsException.php │ │ ├── RepositoryNameRequiredException.php │ │ ├── RepositoryTriggerBranchNameListRequiredException.php │ │ ├── RepositoryTriggerDestinationArnRequiredException.php │ │ ├── RepositoryTriggerEventsListRequiredException.php │ │ ├── RepositoryTriggerNameRequiredException.php │ │ ├── RepositoryTriggersListRequiredException.php │ │ ├── TagPolicyException.php │ │ └── TooManyTagsException.php │ │ ├── Input │ │ ├── CreateRepositoryInput.php │ │ ├── DeleteRepositoryInput.php │ │ ├── GetBlobInput.php │ │ ├── GetBranchInput.php │ │ ├── GetCommitInput.php │ │ ├── GetDifferencesInput.php │ │ ├── ListRepositoriesInput.php │ │ └── PutRepositoryTriggersInput.php │ │ ├── Result │ │ ├── CreateRepositoryOutput.php │ │ ├── DeleteRepositoryOutput.php │ │ ├── GetBlobOutput.php │ │ ├── GetBranchOutput.php │ │ ├── GetCommitOutput.php │ │ ├── GetDifferencesOutput.php │ │ ├── ListRepositoriesOutput.php │ │ └── PutRepositoryTriggersOutput.php │ │ └── ValueObject │ │ ├── BlobMetadata.php │ │ ├── BranchInfo.php │ │ ├── Commit.php │ │ ├── Difference.php │ │ ├── RepositoryMetadata.php │ │ ├── RepositoryNameIdPair.php │ │ ├── RepositoryTrigger.php │ │ └── UserInfo.php │ ├── CodeDeploy │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CodeDeployClient.php │ │ ├── Enum │ │ ├── AutoRollbackEvent.php │ │ ├── BundleType.php │ │ ├── ComputePlatform.php │ │ ├── DeploymentCreator.php │ │ ├── DeploymentOption.php │ │ ├── DeploymentReadyAction.php │ │ ├── DeploymentStatus.php │ │ ├── DeploymentType.php │ │ ├── EC2TagFilterType.php │ │ ├── ErrorCode.php │ │ ├── FileExistsBehavior.php │ │ ├── GreenFleetProvisioningAction.php │ │ ├── InstanceAction.php │ │ ├── LifecycleEventStatus.php │ │ └── RevisionLocationType.php │ │ ├── Exception │ │ ├── AlarmsLimitExceededException.php │ │ ├── ApplicationDoesNotExistException.php │ │ ├── ApplicationNameRequiredException.php │ │ ├── DeploymentConfigDoesNotExistException.php │ │ ├── DeploymentDoesNotExistException.php │ │ ├── DeploymentGroupDoesNotExistException.php │ │ ├── DeploymentGroupNameRequiredException.php │ │ ├── DeploymentIdRequiredException.php │ │ ├── DeploymentLimitExceededException.php │ │ ├── DescriptionTooLongException.php │ │ ├── InvalidAlarmConfigException.php │ │ ├── InvalidApplicationNameException.php │ │ ├── InvalidAutoRollbackConfigException.php │ │ ├── InvalidAutoScalingGroupException.php │ │ ├── InvalidDeploymentConfigNameException.php │ │ ├── InvalidDeploymentGroupNameException.php │ │ ├── InvalidDeploymentIdException.php │ │ ├── InvalidFileExistsBehaviorException.php │ │ ├── InvalidGitHubAccountTokenException.php │ │ ├── InvalidIgnoreApplicationStopFailuresValueException.php │ │ ├── InvalidLifecycleEventHookExecutionIdException.php │ │ ├── InvalidLifecycleEventHookExecutionStatusException.php │ │ ├── InvalidLoadBalancerInfoException.php │ │ ├── InvalidRevisionException.php │ │ ├── InvalidRoleException.php │ │ ├── InvalidTargetInstancesException.php │ │ ├── InvalidTrafficRoutingConfigurationException.php │ │ ├── InvalidUpdateOutdatedInstancesOnlyValueException.php │ │ ├── LifecycleEventAlreadyCompletedException.php │ │ ├── RevisionDoesNotExistException.php │ │ ├── RevisionRequiredException.php │ │ ├── ThrottlingException.php │ │ └── UnsupportedActionForDeploymentTypeException.php │ │ ├── Input │ │ ├── CreateDeploymentInput.php │ │ ├── GetDeploymentInput.php │ │ └── PutLifecycleEventHookExecutionStatusInput.php │ │ ├── Result │ │ ├── CreateDeploymentOutput.php │ │ ├── GetDeploymentOutput.php │ │ └── PutLifecycleEventHookExecutionStatusOutput.php │ │ └── ValueObject │ │ ├── Alarm.php │ │ ├── AlarmConfiguration.php │ │ ├── AppSpecContent.php │ │ ├── AutoRollbackConfiguration.php │ │ ├── BlueGreenDeploymentConfiguration.php │ │ ├── BlueInstanceTerminationOption.php │ │ ├── DeploymentInfo.php │ │ ├── DeploymentOverview.php │ │ ├── DeploymentReadyOption.php │ │ ├── DeploymentStyle.php │ │ ├── EC2TagFilter.php │ │ ├── EC2TagSet.php │ │ ├── ELBInfo.php │ │ ├── ErrorInformation.php │ │ ├── GitHubLocation.php │ │ ├── GreenFleetProvisioningOption.php │ │ ├── LoadBalancerInfo.php │ │ ├── RawString.php │ │ ├── RelatedDeployments.php │ │ ├── RevisionLocation.php │ │ ├── RollbackInfo.php │ │ ├── S3Location.php │ │ ├── TargetGroupInfo.php │ │ ├── TargetGroupPairInfo.php │ │ ├── TargetInstances.php │ │ └── TrafficRoute.php │ ├── CognitoIdentityProvider │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CognitoIdentityProviderClient.php │ │ ├── Enum │ │ ├── AuthFlowType.php │ │ ├── ChallengeNameType.php │ │ ├── DeliveryMediumType.php │ │ ├── MessageActionType.php │ │ ├── UserStatusType.php │ │ └── VerifySoftwareTokenResponseType.php │ │ ├── Exception │ │ ├── AliasExistsException.php │ │ ├── CodeDeliveryFailureException.php │ │ ├── CodeMismatchException.php │ │ ├── ConcurrentModificationException.php │ │ ├── EnableSoftwareTokenMFAException.php │ │ ├── ExpiredCodeException.php │ │ ├── ForbiddenException.php │ │ ├── GroupExistsException.php │ │ ├── InternalErrorException.php │ │ ├── InvalidEmailRoleAccessPolicyException.php │ │ ├── InvalidLambdaResponseException.php │ │ ├── InvalidParameterException.php │ │ ├── InvalidPasswordException.php │ │ ├── InvalidSmsRoleAccessPolicyException.php │ │ ├── InvalidSmsRoleTrustRelationshipException.php │ │ ├── InvalidUserPoolConfigurationException.php │ │ ├── LimitExceededException.php │ │ ├── MFAMethodNotFoundException.php │ │ ├── NotAuthorizedException.php │ │ ├── PasswordHistoryPolicyViolationException.php │ │ ├── PasswordResetRequiredException.php │ │ ├── PreconditionNotMetException.php │ │ ├── ResourceNotFoundException.php │ │ ├── SoftwareTokenMFANotFoundException.php │ │ ├── TooManyFailedAttemptsException.php │ │ ├── TooManyRequestsException.php │ │ ├── UnauthorizedException.php │ │ ├── UnexpectedLambdaException.php │ │ ├── UnsupportedOperationException.php │ │ ├── UnsupportedTokenTypeException.php │ │ ├── UnsupportedUserStateException.php │ │ ├── UserLambdaValidationException.php │ │ ├── UserNotConfirmedException.php │ │ ├── UserNotFoundException.php │ │ └── UsernameExistsException.php │ │ ├── Input │ │ ├── AdminAddUserToGroupRequest.php │ │ ├── AdminConfirmSignUpRequest.php │ │ ├── AdminCreateUserRequest.php │ │ ├── AdminDeleteUserRequest.php │ │ ├── AdminDisableUserRequest.php │ │ ├── AdminEnableUserRequest.php │ │ ├── AdminGetUserRequest.php │ │ ├── AdminInitiateAuthRequest.php │ │ ├── AdminRemoveUserFromGroupRequest.php │ │ ├── AdminResetUserPasswordRequest.php │ │ ├── AdminSetUserPasswordRequest.php │ │ ├── AdminUpdateUserAttributesRequest.php │ │ ├── AdminUserGlobalSignOutRequest.php │ │ ├── AssociateSoftwareTokenRequest.php │ │ ├── ChangePasswordRequest.php │ │ ├── ConfirmForgotPasswordRequest.php │ │ ├── ConfirmSignUpRequest.php │ │ ├── CreateGroupRequest.php │ │ ├── ForgotPasswordRequest.php │ │ ├── GetUserRequest.php │ │ ├── InitiateAuthRequest.php │ │ ├── ListGroupsRequest.php │ │ ├── ListUsersRequest.php │ │ ├── ResendConfirmationCodeRequest.php │ │ ├── RespondToAuthChallengeRequest.php │ │ ├── RevokeTokenRequest.php │ │ ├── SetUserMFAPreferenceRequest.php │ │ ├── SignUpRequest.php │ │ └── VerifySoftwareTokenRequest.php │ │ ├── Result │ │ ├── AdminConfirmSignUpResponse.php │ │ ├── AdminCreateUserResponse.php │ │ ├── AdminDisableUserResponse.php │ │ ├── AdminEnableUserResponse.php │ │ ├── AdminGetUserResponse.php │ │ ├── AdminInitiateAuthResponse.php │ │ ├── AdminResetUserPasswordResponse.php │ │ ├── AdminSetUserPasswordResponse.php │ │ ├── AdminUpdateUserAttributesResponse.php │ │ ├── AdminUserGlobalSignOutResponse.php │ │ ├── AssociateSoftwareTokenResponse.php │ │ ├── ChangePasswordResponse.php │ │ ├── ConfirmForgotPasswordResponse.php │ │ ├── ConfirmSignUpResponse.php │ │ ├── CreateGroupResponse.php │ │ ├── ForgotPasswordResponse.php │ │ ├── GetUserResponse.php │ │ ├── InitiateAuthResponse.php │ │ ├── ListGroupsResponse.php │ │ ├── ListUsersResponse.php │ │ ├── ResendConfirmationCodeResponse.php │ │ ├── RespondToAuthChallengeResponse.php │ │ ├── RevokeTokenResponse.php │ │ ├── SetUserMFAPreferenceResponse.php │ │ ├── SignUpResponse.php │ │ └── VerifySoftwareTokenResponse.php │ │ └── ValueObject │ │ ├── AnalyticsMetadataType.php │ │ ├── AttributeType.php │ │ ├── AuthenticationResultType.php │ │ ├── CodeDeliveryDetailsType.php │ │ ├── ContextDataType.php │ │ ├── EmailMfaSettingsType.php │ │ ├── GroupType.php │ │ ├── HttpHeader.php │ │ ├── MFAOptionType.php │ │ ├── NewDeviceMetadataType.php │ │ ├── SMSMfaSettingsType.php │ │ ├── SoftwareTokenMfaSettingsType.php │ │ ├── UserContextDataType.php │ │ └── UserType.php │ ├── Comprehend │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ComprehendClient.php │ │ ├── Enum │ │ ├── InvalidRequestDetailReason.php │ │ └── InvalidRequestReason.php │ │ ├── Exception │ │ ├── InternalServerException.php │ │ ├── InvalidRequestException.php │ │ └── TextSizeLimitExceededException.php │ │ ├── Input │ │ └── DetectDominantLanguageRequest.php │ │ ├── Result │ │ └── DetectDominantLanguageResponse.php │ │ └── ValueObject │ │ ├── DominantLanguage.php │ │ └── InvalidRequestDetail.php │ ├── DynamoDb │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── DynamoDbClient.php │ │ ├── Enum │ │ ├── AttributeAction.php │ │ ├── BillingMode.php │ │ ├── ComparisonOperator.php │ │ ├── ConditionalOperator.php │ │ ├── IndexStatus.php │ │ ├── KeyType.php │ │ ├── MultiRegionConsistency.php │ │ ├── ProjectionType.php │ │ ├── ReplicaStatus.php │ │ ├── ReturnConsumedCapacity.php │ │ ├── ReturnItemCollectionMetrics.php │ │ ├── ReturnValue.php │ │ ├── ReturnValuesOnConditionCheckFailure.php │ │ ├── SSEStatus.php │ │ ├── SSEType.php │ │ ├── ScalarAttributeType.php │ │ ├── Select.php │ │ ├── StreamViewType.php │ │ ├── TableClass.php │ │ └── TableStatus.php │ │ ├── Exception │ │ ├── ConditionalCheckFailedException.php │ │ ├── DuplicateItemException.php │ │ ├── IdempotentParameterMismatchException.php │ │ ├── InternalServerErrorException.php │ │ ├── ItemCollectionSizeLimitExceededException.php │ │ ├── LimitExceededException.php │ │ ├── ProvisionedThroughputExceededException.php │ │ ├── ReplicatedWriteConflictException.php │ │ ├── RequestLimitExceededException.php │ │ ├── ResourceInUseException.php │ │ ├── ResourceNotFoundException.php │ │ ├── TransactionCanceledException.php │ │ ├── TransactionConflictException.php │ │ └── TransactionInProgressException.php │ │ ├── Input │ │ ├── BatchGetItemInput.php │ │ ├── BatchWriteItemInput.php │ │ ├── CreateTableInput.php │ │ ├── DeleteItemInput.php │ │ ├── DeleteTableInput.php │ │ ├── DescribeEndpointsRequest.php │ │ ├── DescribeTableInput.php │ │ ├── ExecuteStatementInput.php │ │ ├── GetItemInput.php │ │ ├── ListTablesInput.php │ │ ├── PutItemInput.php │ │ ├── QueryInput.php │ │ ├── ScanInput.php │ │ ├── TransactWriteItemsInput.php │ │ ├── UpdateItemInput.php │ │ ├── UpdateTableInput.php │ │ └── UpdateTimeToLiveInput.php │ │ ├── Result │ │ ├── BatchGetItemOutput.php │ │ ├── BatchWriteItemOutput.php │ │ ├── CreateTableOutput.php │ │ ├── DeleteItemOutput.php │ │ ├── DeleteTableOutput.php │ │ ├── DescribeEndpointsResponse.php │ │ ├── DescribeTableOutput.php │ │ ├── ExecuteStatementOutput.php │ │ ├── GetItemOutput.php │ │ ├── ListTablesOutput.php │ │ ├── PutItemOutput.php │ │ ├── QueryOutput.php │ │ ├── ScanOutput.php │ │ ├── TableExistsWaiter.php │ │ ├── TableNotExistsWaiter.php │ │ ├── TransactWriteItemsOutput.php │ │ ├── UpdateItemOutput.php │ │ ├── UpdateTableOutput.php │ │ └── UpdateTimeToLiveOutput.php │ │ └── ValueObject │ │ ├── ArchivalSummary.php │ │ ├── AttributeDefinition.php │ │ ├── AttributeValue.php │ │ ├── AttributeValueUpdate.php │ │ ├── BillingModeSummary.php │ │ ├── CancellationReason.php │ │ ├── Capacity.php │ │ ├── Condition.php │ │ ├── ConditionCheck.php │ │ ├── ConsumedCapacity.php │ │ ├── CreateGlobalSecondaryIndexAction.php │ │ ├── CreateReplicationGroupMemberAction.php │ │ ├── Delete.php │ │ ├── DeleteGlobalSecondaryIndexAction.php │ │ ├── DeleteReplicationGroupMemberAction.php │ │ ├── DeleteRequest.php │ │ ├── Endpoint.php │ │ ├── ExpectedAttributeValue.php │ │ ├── GlobalSecondaryIndex.php │ │ ├── GlobalSecondaryIndexDescription.php │ │ ├── GlobalSecondaryIndexUpdate.php │ │ ├── GlobalSecondaryIndexWarmThroughputDescription.php │ │ ├── ItemCollectionMetrics.php │ │ ├── KeySchemaElement.php │ │ ├── KeysAndAttributes.php │ │ ├── LocalSecondaryIndex.php │ │ ├── LocalSecondaryIndexDescription.php │ │ ├── OnDemandThroughput.php │ │ ├── OnDemandThroughputOverride.php │ │ ├── Projection.php │ │ ├── ProvisionedThroughput.php │ │ ├── ProvisionedThroughputDescription.php │ │ ├── ProvisionedThroughputOverride.php │ │ ├── Put.php │ │ ├── PutRequest.php │ │ ├── ReplicaDescription.php │ │ ├── ReplicaGlobalSecondaryIndex.php │ │ ├── ReplicaGlobalSecondaryIndexDescription.php │ │ ├── ReplicationGroupUpdate.php │ │ ├── RestoreSummary.php │ │ ├── SSEDescription.php │ │ ├── SSESpecification.php │ │ ├── StreamSpecification.php │ │ ├── TableClassSummary.php │ │ ├── TableDescription.php │ │ ├── TableWarmThroughputDescription.php │ │ ├── Tag.php │ │ ├── TimeToLiveSpecification.php │ │ ├── TransactWriteItem.php │ │ ├── Update.php │ │ ├── UpdateGlobalSecondaryIndexAction.php │ │ ├── UpdateReplicationGroupMemberAction.php │ │ ├── WarmThroughput.php │ │ └── WriteRequest.php │ ├── Ecr │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── EcrClient.php │ │ ├── Exception │ │ ├── InvalidParameterException.php │ │ └── ServerException.php │ │ ├── Input │ │ └── GetAuthorizationTokenRequest.php │ │ ├── Result │ │ └── GetAuthorizationTokenResponse.php │ │ └── ValueObject │ │ └── AuthorizationData.php │ ├── ElastiCache │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ElastiCacheClient.php │ │ ├── Enum │ │ ├── AuthTokenUpdateStatus.php │ │ ├── DestinationType.php │ │ ├── IpDiscovery.php │ │ ├── LogDeliveryConfigurationStatus.php │ │ ├── LogFormat.php │ │ ├── LogType.php │ │ ├── NetworkType.php │ │ └── TransitEncryptionMode.php │ │ ├── Exception │ │ ├── CacheClusterNotFoundFaultException.php │ │ ├── InvalidParameterCombinationException.php │ │ └── InvalidParameterValueException.php │ │ ├── Input │ │ └── DescribeCacheClustersMessage.php │ │ ├── Result │ │ └── CacheClusterMessage.php │ │ └── ValueObject │ │ ├── CacheCluster.php │ │ ├── CacheNode.php │ │ ├── CacheParameterGroupStatus.php │ │ ├── CacheSecurityGroupMembership.php │ │ ├── CloudWatchLogsDestinationDetails.php │ │ ├── DestinationDetails.php │ │ ├── Endpoint.php │ │ ├── KinesisFirehoseDestinationDetails.php │ │ ├── LogDeliveryConfiguration.php │ │ ├── NotificationConfiguration.php │ │ ├── PendingLogDeliveryConfiguration.php │ │ ├── PendingModifiedValues.php │ │ ├── ScaleConfig.php │ │ └── SecurityGroupMembership.php │ ├── EventBridge │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── EventBridgeClient.php │ │ ├── Exception │ │ └── InternalException.php │ │ ├── Input │ │ └── PutEventsRequest.php │ │ ├── Result │ │ └── PutEventsResponse.php │ │ └── ValueObject │ │ ├── PutEventsRequestEntry.php │ │ └── PutEventsResultEntry.php │ ├── Firehose │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Exception │ │ ├── InvalidArgumentException.php │ │ ├── InvalidKMSResourceException.php │ │ ├── InvalidSourceException.php │ │ ├── ResourceNotFoundException.php │ │ └── ServiceUnavailableException.php │ │ ├── FirehoseClient.php │ │ ├── Input │ │ ├── PutRecordBatchInput.php │ │ └── PutRecordInput.php │ │ ├── Result │ │ ├── PutRecordBatchOutput.php │ │ └── PutRecordOutput.php │ │ └── ValueObject │ │ ├── PutRecordBatchResponseEntry.php │ │ └── Record.php │ ├── Iam │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── PermissionsBoundaryAttachmentType.php │ │ └── StatusType.php │ │ ├── Exception │ │ ├── ConcurrentModificationException.php │ │ ├── DeleteConflictException.php │ │ ├── EntityAlreadyExistsException.php │ │ ├── EntityTemporarilyUnmodifiableException.php │ │ ├── InvalidInputException.php │ │ ├── LimitExceededException.php │ │ ├── MalformedPolicyDocumentException.php │ │ ├── NoSuchEntityException.php │ │ ├── ServiceFailureException.php │ │ └── ServiceNotSupportedException.php │ │ ├── IamClient.php │ │ ├── Input │ │ ├── AddUserToGroupRequest.php │ │ ├── CreateAccessKeyRequest.php │ │ ├── CreateServiceSpecificCredentialRequest.php │ │ ├── CreateUserRequest.php │ │ ├── DeleteAccessKeyRequest.php │ │ ├── DeleteServiceSpecificCredentialRequest.php │ │ ├── DeleteUserPolicyRequest.php │ │ ├── DeleteUserRequest.php │ │ ├── GetUserRequest.php │ │ ├── ListServiceSpecificCredentialsRequest.php │ │ ├── ListUsersRequest.php │ │ ├── PutUserPolicyRequest.php │ │ └── UpdateUserRequest.php │ │ ├── Result │ │ ├── CreateAccessKeyResponse.php │ │ ├── CreateServiceSpecificCredentialResponse.php │ │ ├── CreateUserResponse.php │ │ ├── GetUserResponse.php │ │ ├── ListServiceSpecificCredentialsResponse.php │ │ └── ListUsersResponse.php │ │ └── ValueObject │ │ ├── AccessKey.php │ │ ├── AttachedPermissionsBoundary.php │ │ ├── ServiceSpecificCredential.php │ │ ├── ServiceSpecificCredentialMetadata.php │ │ ├── Tag.php │ │ └── User.php │ ├── Iot │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Exception │ │ ├── InternalFailureException.php │ │ ├── InvalidRequestException.php │ │ ├── ResourceAlreadyExistsException.php │ │ ├── ResourceNotFoundException.php │ │ ├── ServiceUnavailableException.php │ │ ├── ThrottlingException.php │ │ ├── UnauthorizedException.php │ │ └── VersionConflictException.php │ │ ├── Input │ │ ├── AddThingToThingGroupRequest.php │ │ ├── CreateThingGroupRequest.php │ │ ├── CreateThingRequest.php │ │ ├── CreateThingTypeRequest.php │ │ ├── DeleteThingGroupRequest.php │ │ ├── DeleteThingRequest.php │ │ ├── DeleteThingTypeRequest.php │ │ ├── ListThingGroupsForThingRequest.php │ │ ├── ListThingGroupsRequest.php │ │ ├── ListThingTypesRequest.php │ │ ├── ListThingsInThingGroupRequest.php │ │ └── ListThingsRequest.php │ │ ├── IotClient.php │ │ ├── Result │ │ ├── AddThingToThingGroupResponse.php │ │ ├── CreateThingGroupResponse.php │ │ ├── CreateThingResponse.php │ │ ├── CreateThingTypeResponse.php │ │ ├── DeleteThingGroupResponse.php │ │ ├── DeleteThingResponse.php │ │ ├── DeleteThingTypeResponse.php │ │ ├── ListThingGroupsForThingResponse.php │ │ ├── ListThingGroupsResponse.php │ │ ├── ListThingTypesResponse.php │ │ ├── ListThingsInThingGroupResponse.php │ │ └── ListThingsResponse.php │ │ └── ValueObject │ │ ├── AttributePayload.php │ │ ├── GroupNameAndArn.php │ │ ├── Mqtt5Configuration.php │ │ ├── PropagatingAttribute.php │ │ ├── Tag.php │ │ ├── ThingAttribute.php │ │ ├── ThingGroupProperties.php │ │ ├── ThingTypeDefinition.php │ │ ├── ThingTypeMetadata.php │ │ └── ThingTypeProperties.php │ ├── IotData │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Exception │ │ ├── ConflictException.php │ │ ├── InternalFailureException.php │ │ ├── InvalidRequestException.php │ │ ├── MethodNotAllowedException.php │ │ ├── RequestEntityTooLargeException.php │ │ ├── ResourceNotFoundException.php │ │ ├── ServiceUnavailableException.php │ │ ├── ThrottlingException.php │ │ ├── UnauthorizedException.php │ │ └── UnsupportedDocumentEncodingException.php │ │ ├── Input │ │ ├── GetThingShadowRequest.php │ │ └── UpdateThingShadowRequest.php │ │ ├── IotDataClient.php │ │ └── Result │ │ ├── GetThingShadowResponse.php │ │ └── UpdateThingShadowResponse.php │ ├── Kinesis │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── ConsumerStatus.php │ │ ├── EncryptionType.php │ │ ├── MetricsName.php │ │ ├── ScalingType.php │ │ ├── ShardFilterType.php │ │ ├── ShardIteratorType.php │ │ ├── StreamMode.php │ │ └── StreamStatus.php │ │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── ExpiredIteratorException.php │ │ ├── ExpiredNextTokenException.php │ │ ├── InternalFailureException.php │ │ ├── InvalidArgumentException.php │ │ ├── KMSAccessDeniedException.php │ │ ├── KMSDisabledException.php │ │ ├── KMSInvalidStateException.php │ │ ├── KMSNotFoundException.php │ │ ├── KMSOptInRequiredException.php │ │ ├── KMSThrottlingException.php │ │ ├── LimitExceededException.php │ │ ├── ProvisionedThroughputExceededException.php │ │ ├── ResourceInUseException.php │ │ ├── ResourceNotFoundException.php │ │ └── ValidationException.php │ │ ├── Input │ │ ├── AddTagsToStreamInput.php │ │ ├── CreateStreamInput.php │ │ ├── DecreaseStreamRetentionPeriodInput.php │ │ ├── DeleteStreamInput.php │ │ ├── DeregisterStreamConsumerInput.php │ │ ├── DescribeLimitsInput.php │ │ ├── DescribeStreamConsumerInput.php │ │ ├── DescribeStreamInput.php │ │ ├── DescribeStreamSummaryInput.php │ │ ├── DisableEnhancedMonitoringInput.php │ │ ├── EnableEnhancedMonitoringInput.php │ │ ├── GetRecordsInput.php │ │ ├── GetShardIteratorInput.php │ │ ├── IncreaseStreamRetentionPeriodInput.php │ │ ├── ListShardsInput.php │ │ ├── ListStreamConsumersInput.php │ │ ├── ListStreamsInput.php │ │ ├── ListTagsForStreamInput.php │ │ ├── MergeShardsInput.php │ │ ├── PutRecordInput.php │ │ ├── PutRecordsInput.php │ │ ├── RegisterStreamConsumerInput.php │ │ ├── RemoveTagsFromStreamInput.php │ │ ├── SplitShardInput.php │ │ ├── StartStreamEncryptionInput.php │ │ ├── StopStreamEncryptionInput.php │ │ └── UpdateShardCountInput.php │ │ ├── KinesisClient.php │ │ ├── Result │ │ ├── DescribeLimitsOutput.php │ │ ├── DescribeStreamConsumerOutput.php │ │ ├── DescribeStreamOutput.php │ │ ├── DescribeStreamSummaryOutput.php │ │ ├── EnhancedMonitoringOutput.php │ │ ├── GetRecordsOutput.php │ │ ├── GetShardIteratorOutput.php │ │ ├── ListShardsOutput.php │ │ ├── ListStreamConsumersOutput.php │ │ ├── ListStreamsOutput.php │ │ ├── ListTagsForStreamOutput.php │ │ ├── PutRecordOutput.php │ │ ├── PutRecordsOutput.php │ │ ├── RegisterStreamConsumerOutput.php │ │ ├── StreamExistsWaiter.php │ │ ├── StreamNotExistsWaiter.php │ │ └── UpdateShardCountOutput.php │ │ └── ValueObject │ │ ├── ChildShard.php │ │ ├── Consumer.php │ │ ├── ConsumerDescription.php │ │ ├── EnhancedMetrics.php │ │ ├── HashKeyRange.php │ │ ├── PutRecordsRequestEntry.php │ │ ├── PutRecordsResultEntry.php │ │ ├── Record.php │ │ ├── SequenceNumberRange.php │ │ ├── Shard.php │ │ ├── ShardFilter.php │ │ ├── StreamDescription.php │ │ ├── StreamDescriptionSummary.php │ │ ├── StreamModeDetails.php │ │ ├── StreamSummary.php │ │ └── Tag.php │ ├── Kms │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── CustomerMasterKeySpec.php │ │ ├── DataKeySpec.php │ │ ├── EncryptionAlgorithmSpec.php │ │ ├── ExpirationModelType.php │ │ ├── KeyAgreementAlgorithmSpec.php │ │ ├── KeyEncryptionMechanism.php │ │ ├── KeyManagerType.php │ │ ├── KeySpec.php │ │ ├── KeyState.php │ │ ├── KeyUsageType.php │ │ ├── MacAlgorithmSpec.php │ │ ├── MessageType.php │ │ ├── MultiRegionKeyType.php │ │ ├── OriginType.php │ │ └── SigningAlgorithmSpec.php │ │ ├── Exception │ │ ├── AlreadyExistsException.php │ │ ├── CloudHsmClusterInvalidConfigurationException.php │ │ ├── CustomKeyStoreInvalidStateException.php │ │ ├── CustomKeyStoreNotFoundException.php │ │ ├── DependencyTimeoutException.php │ │ ├── DisabledException.php │ │ ├── DryRunOperationException.php │ │ ├── IncorrectKeyException.php │ │ ├── InvalidAliasNameException.php │ │ ├── InvalidArnException.php │ │ ├── InvalidCiphertextException.php │ │ ├── InvalidGrantTokenException.php │ │ ├── InvalidKeyUsageException.php │ │ ├── InvalidMarkerException.php │ │ ├── KMSInternalException.php │ │ ├── KMSInvalidSignatureException.php │ │ ├── KMSInvalidStateException.php │ │ ├── KeyUnavailableException.php │ │ ├── LimitExceededException.php │ │ ├── MalformedPolicyDocumentException.php │ │ ├── NotFoundException.php │ │ ├── TagException.php │ │ ├── UnsupportedOperationException.php │ │ ├── XksKeyAlreadyInUseException.php │ │ ├── XksKeyInvalidConfigurationException.php │ │ └── XksKeyNotFoundException.php │ │ ├── Input │ │ ├── CreateAliasRequest.php │ │ ├── CreateKeyRequest.php │ │ ├── DecryptRequest.php │ │ ├── EncryptRequest.php │ │ ├── GenerateDataKeyRequest.php │ │ ├── GetPublicKeyRequest.php │ │ ├── ListAliasesRequest.php │ │ ├── SignRequest.php │ │ └── VerifyRequest.php │ │ ├── KmsClient.php │ │ ├── Result │ │ ├── CreateKeyResponse.php │ │ ├── DecryptResponse.php │ │ ├── EncryptResponse.php │ │ ├── GenerateDataKeyResponse.php │ │ ├── GetPublicKeyResponse.php │ │ ├── ListAliasesResponse.php │ │ ├── SignResponse.php │ │ └── VerifyResponse.php │ │ └── ValueObject │ │ ├── AliasListEntry.php │ │ ├── KeyMetadata.php │ │ ├── MultiRegionConfiguration.php │ │ ├── MultiRegionKey.php │ │ ├── RecipientInfo.php │ │ ├── Tag.php │ │ └── XksKeyConfigurationType.php │ ├── Lambda │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── ApplicationLogLevel.php │ │ ├── Architecture.php │ │ ├── FunctionVersion.php │ │ ├── InvocationType.php │ │ ├── LastUpdateStatus.php │ │ ├── LastUpdateStatusReasonCode.php │ │ ├── LogFormat.php │ │ ├── LogType.php │ │ ├── PackageType.php │ │ ├── Runtime.php │ │ ├── SnapStartApplyOn.php │ │ ├── SnapStartOptimizationStatus.php │ │ ├── State.php │ │ ├── StateReasonCode.php │ │ ├── SystemLogLevel.php │ │ ├── ThrottleReason.php │ │ └── TracingMode.php │ │ ├── Exception │ │ ├── CodeSigningConfigNotFoundException.php │ │ ├── CodeStorageExceededException.php │ │ ├── CodeVerificationFailedException.php │ │ ├── EC2AccessDeniedException.php │ │ ├── EC2ThrottledException.php │ │ ├── EC2UnexpectedException.php │ │ ├── EFSIOException.php │ │ ├── EFSMountConnectivityException.php │ │ ├── EFSMountFailureException.php │ │ ├── EFSMountTimeoutException.php │ │ ├── ENILimitReachedException.php │ │ ├── InvalidCodeSignatureException.php │ │ ├── InvalidParameterValueException.php │ │ ├── InvalidRequestContentException.php │ │ ├── InvalidRuntimeException.php │ │ ├── InvalidSecurityGroupIDException.php │ │ ├── InvalidSubnetIDException.php │ │ ├── InvalidZipFileException.php │ │ ├── KMSAccessDeniedException.php │ │ ├── KMSDisabledException.php │ │ ├── KMSInvalidStateException.php │ │ ├── KMSNotFoundException.php │ │ ├── PolicyLengthExceededException.php │ │ ├── PreconditionFailedException.php │ │ ├── RecursiveInvocationException.php │ │ ├── RequestTooLargeException.php │ │ ├── ResourceConflictException.php │ │ ├── ResourceNotFoundException.php │ │ ├── ResourceNotReadyException.php │ │ ├── ServiceException.php │ │ ├── SnapStartException.php │ │ ├── SnapStartNotReadyException.php │ │ ├── SnapStartTimeoutException.php │ │ ├── SubnetIPAddressLimitReachedException.php │ │ ├── TooManyRequestsException.php │ │ └── UnsupportedMediaTypeException.php │ │ ├── Input │ │ ├── AddLayerVersionPermissionRequest.php │ │ ├── DeleteFunctionRequest.php │ │ ├── GetFunctionConfigurationRequest.php │ │ ├── InvocationRequest.php │ │ ├── ListFunctionsRequest.php │ │ ├── ListLayerVersionsRequest.php │ │ ├── ListVersionsByFunctionRequest.php │ │ ├── PublishLayerVersionRequest.php │ │ └── UpdateFunctionConfigurationRequest.php │ │ ├── LambdaClient.php │ │ ├── Result │ │ ├── AddLayerVersionPermissionResponse.php │ │ ├── FunctionConfiguration.php │ │ ├── InvocationResponse.php │ │ ├── ListFunctionsResponse.php │ │ ├── ListLayerVersionsResponse.php │ │ ├── ListVersionsByFunctionResponse.php │ │ └── PublishLayerVersionResponse.php │ │ └── ValueObject │ │ ├── DeadLetterConfig.php │ │ ├── Environment.php │ │ ├── EnvironmentError.php │ │ ├── EnvironmentResponse.php │ │ ├── EphemeralStorage.php │ │ ├── FileSystemConfig.php │ │ ├── FunctionConfiguration.php │ │ ├── ImageConfig.php │ │ ├── ImageConfigError.php │ │ ├── ImageConfigResponse.php │ │ ├── Layer.php │ │ ├── LayerVersionContentInput.php │ │ ├── LayerVersionContentOutput.php │ │ ├── LayerVersionsListItem.php │ │ ├── LoggingConfig.php │ │ ├── RuntimeVersionConfig.php │ │ ├── RuntimeVersionError.php │ │ ├── SnapStart.php │ │ ├── SnapStartResponse.php │ │ ├── TracingConfig.php │ │ ├── TracingConfigResponse.php │ │ ├── VpcConfig.php │ │ └── VpcConfigResponse.php │ ├── LocationService │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── DimensionUnit.php │ │ ├── DistanceUnit.php │ │ ├── OptimizationMode.php │ │ ├── RouteMatrixErrorCode.php │ │ ├── TravelMode.php │ │ ├── ValidationExceptionReason.php │ │ └── VehicleWeightUnit.php │ │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── InternalServerException.php │ │ ├── ResourceNotFoundException.php │ │ ├── ThrottlingException.php │ │ └── ValidationException.php │ │ ├── Input │ │ ├── CalculateRouteMatrixRequest.php │ │ ├── CalculateRouteRequest.php │ │ ├── SearchPlaceIndexForPositionRequest.php │ │ └── SearchPlaceIndexForTextRequest.php │ │ ├── LocationServiceClient.php │ │ ├── Result │ │ ├── CalculateRouteMatrixResponse.php │ │ ├── CalculateRouteResponse.php │ │ ├── SearchPlaceIndexForPositionResponse.php │ │ └── SearchPlaceIndexForTextResponse.php │ │ └── ValueObject │ │ ├── CalculateRouteCarModeOptions.php │ │ ├── CalculateRouteMatrixSummary.php │ │ ├── CalculateRouteSummary.php │ │ ├── CalculateRouteTruckModeOptions.php │ │ ├── Leg.php │ │ ├── LegGeometry.php │ │ ├── Place.php │ │ ├── PlaceGeometry.php │ │ ├── RouteMatrixEntry.php │ │ ├── RouteMatrixEntryError.php │ │ ├── SearchForPositionResult.php │ │ ├── SearchForTextResult.php │ │ ├── SearchPlaceIndexForPositionSummary.php │ │ ├── SearchPlaceIndexForTextSummary.php │ │ ├── Step.php │ │ ├── TimeZone.php │ │ ├── TruckDimensions.php │ │ ├── TruckWeight.php │ │ └── ValidationExceptionField.php │ ├── MediaConvert │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── AacAudioDescriptionBroadcasterMix.php │ │ ├── AacCodecProfile.php │ │ ├── AacCodingMode.php │ │ ├── AacRateControlMode.php │ │ ├── AacRawFormat.php │ │ ├── AacSpecification.php │ │ ├── AacVbrQuality.php │ │ ├── Ac3BitstreamMode.php │ │ ├── Ac3CodingMode.php │ │ ├── Ac3DynamicRangeCompressionLine.php │ │ ├── Ac3DynamicRangeCompressionProfile.php │ │ ├── Ac3DynamicRangeCompressionRf.php │ │ ├── Ac3LfeFilter.php │ │ ├── Ac3MetadataControl.php │ │ ├── AccelerationMode.php │ │ ├── AccelerationStatus.php │ │ ├── AdvancedInputFilter.php │ │ ├── AdvancedInputFilterAddTexture.php │ │ ├── AdvancedInputFilterSharpen.php │ │ ├── AfdSignaling.php │ │ ├── AlphaBehavior.php │ │ ├── AncillaryConvert608To708.php │ │ ├── AncillaryTerminateCaptions.php │ │ ├── AntiAlias.php │ │ ├── AudioChannelTag.php │ │ ├── AudioCodec.php │ │ ├── AudioDefaultSelection.php │ │ ├── AudioDurationCorrection.php │ │ ├── AudioLanguageCodeControl.php │ │ ├── AudioNormalizationAlgorithm.php │ │ ├── AudioNormalizationAlgorithmControl.php │ │ ├── AudioNormalizationLoudnessLogging.php │ │ ├── AudioNormalizationPeakCalculation.php │ │ ├── AudioSelectorType.php │ │ ├── AudioTypeControl.php │ │ ├── Av1AdaptiveQuantization.php │ │ ├── Av1BitDepth.php │ │ ├── Av1FilmGrainSynthesis.php │ │ ├── Av1FramerateControl.php │ │ ├── Av1FramerateConversionAlgorithm.php │ │ ├── Av1RateControlMode.php │ │ ├── Av1SpatialAdaptiveQuantization.php │ │ ├── AvcIntraClass.php │ │ ├── AvcIntraFramerateControl.php │ │ ├── AvcIntraFramerateConversionAlgorithm.php │ │ ├── AvcIntraInterlaceMode.php │ │ ├── AvcIntraScanTypeConversionMode.php │ │ ├── AvcIntraSlowPal.php │ │ ├── AvcIntraTelecine.php │ │ ├── AvcIntraUhdQualityTuningLevel.php │ │ ├── BandwidthReductionFilterSharpening.php │ │ ├── BandwidthReductionFilterStrength.php │ │ ├── BillingTagsSource.php │ │ ├── BurnInSubtitleStylePassthrough.php │ │ ├── BurninSubtitleAlignment.php │ │ ├── BurninSubtitleApplyFontColor.php │ │ ├── BurninSubtitleBackgroundColor.php │ │ ├── BurninSubtitleFallbackFont.php │ │ ├── BurninSubtitleFontColor.php │ │ ├── BurninSubtitleOutlineColor.php │ │ ├── BurninSubtitleShadowColor.php │ │ ├── BurninSubtitleTeletextSpacing.php │ │ ├── CaptionDestinationType.php │ │ ├── CaptionSourceByteRateLimit.php │ │ ├── CaptionSourceConvertPaintOnToPopOn.php │ │ ├── CaptionSourceType.php │ │ ├── CaptionSourceUpconvertSTLToTeletext.php │ │ ├── ChromaPositionMode.php │ │ ├── CmafClientCache.php │ │ ├── CmafCodecSpecification.php │ │ ├── CmafEncryptionType.php │ │ ├── CmafImageBasedTrickPlay.php │ │ ├── CmafInitializationVectorInManifest.php │ │ ├── CmafIntervalCadence.php │ │ ├── CmafKeyProviderType.php │ │ ├── CmafManifestCompression.php │ │ ├── CmafManifestDurationFormat.php │ │ ├── CmafMpdManifestBandwidthType.php │ │ ├── CmafMpdProfile.php │ │ ├── CmafPtsOffsetHandlingForBFrames.php │ │ ├── CmafSegmentControl.php │ │ ├── CmafSegmentLengthControl.php │ │ ├── CmafStreamInfResolution.php │ │ ├── CmafTargetDurationCompatibilityMode.php │ │ ├── CmafVideoCompositionOffsets.php │ │ ├── CmafWriteDASHManifest.php │ │ ├── CmafWriteHLSManifest.php │ │ ├── CmafWriteSegmentTimelineInRepresentation.php │ │ ├── CmfcAudioDuration.php │ │ ├── CmfcAudioTrackType.php │ │ ├── CmfcDescriptiveVideoServiceFlag.php │ │ ├── CmfcIFrameOnlyManifest.php │ │ ├── CmfcKlvMetadata.php │ │ ├── CmfcManifestMetadataSignaling.php │ │ ├── CmfcScte35Esam.php │ │ ├── CmfcScte35Source.php │ │ ├── CmfcTimedMetadata.php │ │ ├── CmfcTimedMetadataBoxVersion.php │ │ ├── ColorMetadata.php │ │ ├── ColorSpace.php │ │ ├── ColorSpaceConversion.php │ │ ├── ColorSpaceUsage.php │ │ ├── ContainerType.php │ │ ├── CopyProtectionAction.php │ │ ├── DashIsoGroupAudioChannelConfigSchemeIdUri.php │ │ ├── DashIsoHbbtvCompliance.php │ │ ├── DashIsoImageBasedTrickPlay.php │ │ ├── DashIsoIntervalCadence.php │ │ ├── DashIsoMpdManifestBandwidthType.php │ │ ├── DashIsoMpdProfile.php │ │ ├── DashIsoPlaybackDeviceCompatibility.php │ │ ├── DashIsoPtsOffsetHandlingForBFrames.php │ │ ├── DashIsoSegmentControl.php │ │ ├── DashIsoSegmentLengthControl.php │ │ ├── DashIsoVideoCompositionOffsets.php │ │ ├── DashIsoWriteSegmentTimelineInRepresentation.php │ │ ├── DashManifestStyle.php │ │ ├── DecryptionMode.php │ │ ├── DeinterlaceAlgorithm.php │ │ ├── DeinterlacerControl.php │ │ ├── DeinterlacerMode.php │ │ ├── DescribeEndpointsMode.php │ │ ├── DolbyVisionLevel6Mode.php │ │ ├── DolbyVisionMapping.php │ │ ├── DolbyVisionProfile.php │ │ ├── DropFrameTimecode.php │ │ ├── DvbSubSubtitleFallbackFont.php │ │ ├── DvbSubtitleAlignment.php │ │ ├── DvbSubtitleApplyFontColor.php │ │ ├── DvbSubtitleBackgroundColor.php │ │ ├── DvbSubtitleFontColor.php │ │ ├── DvbSubtitleOutlineColor.php │ │ ├── DvbSubtitleShadowColor.php │ │ ├── DvbSubtitleStylePassthrough.php │ │ ├── DvbSubtitleTeletextSpacing.php │ │ ├── DvbSubtitlingType.php │ │ ├── DvbddsHandling.php │ │ ├── DynamicAudioSelectorType.php │ │ ├── Eac3AtmosBitstreamMode.php │ │ ├── Eac3AtmosCodingMode.php │ │ ├── Eac3AtmosDialogueIntelligence.php │ │ ├── Eac3AtmosDownmixControl.php │ │ ├── Eac3AtmosDynamicRangeCompressionLine.php │ │ ├── Eac3AtmosDynamicRangeCompressionRf.php │ │ ├── Eac3AtmosDynamicRangeControl.php │ │ ├── Eac3AtmosMeteringMode.php │ │ ├── Eac3AtmosStereoDownmix.php │ │ ├── Eac3AtmosSurroundExMode.php │ │ ├── Eac3AttenuationControl.php │ │ ├── Eac3BitstreamMode.php │ │ ├── Eac3CodingMode.php │ │ ├── Eac3DcFilter.php │ │ ├── Eac3DynamicRangeCompressionLine.php │ │ ├── Eac3DynamicRangeCompressionRf.php │ │ ├── Eac3LfeControl.php │ │ ├── Eac3LfeFilter.php │ │ ├── Eac3MetadataControl.php │ │ ├── Eac3PassthroughControl.php │ │ ├── Eac3PhaseControl.php │ │ ├── Eac3StereoDownmix.php │ │ ├── Eac3SurroundExMode.php │ │ ├── Eac3SurroundMode.php │ │ ├── EmbeddedConvert608To708.php │ │ ├── EmbeddedTerminateCaptions.php │ │ ├── EmbeddedTimecodeOverride.php │ │ ├── F4vMoovPlacement.php │ │ ├── FileSourceConvert608To708.php │ │ ├── FileSourceTimeDeltaUnits.php │ │ ├── FontScript.php │ │ ├── FrameMetricType.php │ │ ├── GifFramerateControl.php │ │ ├── GifFramerateConversionAlgorithm.php │ │ ├── H264AdaptiveQuantization.php │ │ ├── H264CodecLevel.php │ │ ├── H264CodecProfile.php │ │ ├── H264DynamicSubGop.php │ │ ├── H264EndOfStreamMarkers.php │ │ ├── H264EntropyEncoding.php │ │ ├── H264FieldEncoding.php │ │ ├── H264FlickerAdaptiveQuantization.php │ │ ├── H264FramerateControl.php │ │ ├── H264FramerateConversionAlgorithm.php │ │ ├── H264GopBReference.php │ │ ├── H264GopSizeUnits.php │ │ ├── H264InterlaceMode.php │ │ ├── H264ParControl.php │ │ ├── H264QualityTuningLevel.php │ │ ├── H264RateControlMode.php │ │ ├── H264RepeatPps.php │ │ ├── H264SaliencyAwareEncoding.php │ │ ├── H264ScanTypeConversionMode.php │ │ ├── H264SceneChangeDetect.php │ │ ├── H264SlowPal.php │ │ ├── H264SpatialAdaptiveQuantization.php │ │ ├── H264Syntax.php │ │ ├── H264Telecine.php │ │ ├── H264TemporalAdaptiveQuantization.php │ │ ├── H264UnregisteredSeiTimecode.php │ │ ├── H264WriteMp4PackagingType.php │ │ ├── H265AdaptiveQuantization.php │ │ ├── H265AlternateTransferFunctionSei.php │ │ ├── H265CodecLevel.php │ │ ├── H265CodecProfile.php │ │ ├── H265Deblocking.php │ │ ├── H265DynamicSubGop.php │ │ ├── H265EndOfStreamMarkers.php │ │ ├── H265FlickerAdaptiveQuantization.php │ │ ├── H265FramerateControl.php │ │ ├── H265FramerateConversionAlgorithm.php │ │ ├── H265GopBReference.php │ │ ├── H265GopSizeUnits.php │ │ ├── H265InterlaceMode.php │ │ ├── H265ParControl.php │ │ ├── H265QualityTuningLevel.php │ │ ├── H265RateControlMode.php │ │ ├── H265SampleAdaptiveOffsetFilterMode.php │ │ ├── H265ScanTypeConversionMode.php │ │ ├── H265SceneChangeDetect.php │ │ ├── H265SlowPal.php │ │ ├── H265SpatialAdaptiveQuantization.php │ │ ├── H265Telecine.php │ │ ├── H265TemporalAdaptiveQuantization.php │ │ ├── H265TemporalIds.php │ │ ├── H265Tiles.php │ │ ├── H265UnregisteredSeiTimecode.php │ │ ├── H265WriteMp4PackagingType.php │ │ ├── HDRToSDRToneMapper.php │ │ ├── HlsAdMarkers.php │ │ ├── HlsAudioOnlyContainer.php │ │ ├── HlsAudioOnlyHeader.php │ │ ├── HlsAudioTrackType.php │ │ ├── HlsCaptionLanguageSetting.php │ │ ├── HlsCaptionSegmentLengthControl.php │ │ ├── HlsClientCache.php │ │ ├── HlsCodecSpecification.php │ │ ├── HlsDescriptiveVideoServiceFlag.php │ │ ├── HlsDirectoryStructure.php │ │ ├── HlsEncryptionType.php │ │ ├── HlsIFrameOnlyManifest.php │ │ ├── HlsImageBasedTrickPlay.php │ │ ├── HlsInitializationVectorInManifest.php │ │ ├── HlsIntervalCadence.php │ │ ├── HlsKeyProviderType.php │ │ ├── HlsManifestCompression.php │ │ ├── HlsManifestDurationFormat.php │ │ ├── HlsOfflineEncrypted.php │ │ ├── HlsOutputSelection.php │ │ ├── HlsProgramDateTime.php │ │ ├── HlsProgressiveWriteHlsManifest.php │ │ ├── HlsSegmentControl.php │ │ ├── HlsSegmentLengthControl.php │ │ ├── HlsStreamInfResolution.php │ │ ├── HlsTargetDurationCompatibilityMode.php │ │ ├── HlsTimedMetadataId3Frame.php │ │ ├── ImscAccessibilitySubs.php │ │ ├── ImscStylePassthrough.php │ │ ├── InputDeblockFilter.php │ │ ├── InputDenoiseFilter.php │ │ ├── InputFilterEnable.php │ │ ├── InputPsiControl.php │ │ ├── InputRotate.php │ │ ├── InputSampleRange.php │ │ ├── InputScanType.php │ │ ├── InputTimecodeSource.php │ │ ├── JobPhase.php │ │ ├── JobStatus.php │ │ ├── LanguageCode.php │ │ ├── M2tsAudioBufferModel.php │ │ ├── M2tsAudioDuration.php │ │ ├── M2tsBufferModel.php │ │ ├── M2tsDataPtsControl.php │ │ ├── M2tsEbpAudioInterval.php │ │ ├── M2tsEbpPlacement.php │ │ ├── M2tsEsRateInPes.php │ │ ├── M2tsForceTsVideoEbpOrder.php │ │ ├── M2tsKlvMetadata.php │ │ ├── M2tsNielsenId3.php │ │ ├── M2tsPcrControl.php │ │ ├── M2tsPreventBufferUnderflow.php │ │ ├── M2tsRateMode.php │ │ ├── M2tsScte35Source.php │ │ ├── M2tsSegmentationMarkers.php │ │ ├── M2tsSegmentationStyle.php │ │ ├── M3u8AudioDuration.php │ │ ├── M3u8DataPtsControl.php │ │ ├── M3u8NielsenId3.php │ │ ├── M3u8PcrControl.php │ │ ├── M3u8Scte35Source.php │ │ ├── MotionImageInsertionMode.php │ │ ├── MotionImagePlayback.php │ │ ├── MovClapAtom.php │ │ ├── MovCslgAtom.php │ │ ├── MovMpeg2FourCCControl.php │ │ ├── MovPaddingControl.php │ │ ├── MovReference.php │ │ ├── Mp3RateControlMode.php │ │ ├── Mp4C2paManifest.php │ │ ├── Mp4CslgAtom.php │ │ ├── Mp4FreeSpaceBox.php │ │ ├── Mp4MoovPlacement.php │ │ ├── MpdAccessibilityCaptionHints.php │ │ ├── MpdAudioDuration.php │ │ ├── MpdCaptionContainerType.php │ │ ├── MpdKlvMetadata.php │ │ ├── MpdManifestMetadataSignaling.php │ │ ├── MpdScte35Esam.php │ │ ├── MpdScte35Source.php │ │ ├── MpdTimedMetadata.php │ │ ├── MpdTimedMetadataBoxVersion.php │ │ ├── Mpeg2AdaptiveQuantization.php │ │ ├── Mpeg2CodecLevel.php │ │ ├── Mpeg2CodecProfile.php │ │ ├── Mpeg2DynamicSubGop.php │ │ ├── Mpeg2FramerateControl.php │ │ ├── Mpeg2FramerateConversionAlgorithm.php │ │ ├── Mpeg2GopSizeUnits.php │ │ ├── Mpeg2InterlaceMode.php │ │ ├── Mpeg2IntraDcPrecision.php │ │ ├── Mpeg2ParControl.php │ │ ├── Mpeg2QualityTuningLevel.php │ │ ├── Mpeg2RateControlMode.php │ │ ├── Mpeg2ScanTypeConversionMode.php │ │ ├── Mpeg2SceneChangeDetect.php │ │ ├── Mpeg2SlowPal.php │ │ ├── Mpeg2SpatialAdaptiveQuantization.php │ │ ├── Mpeg2Syntax.php │ │ ├── Mpeg2Telecine.php │ │ ├── Mpeg2TemporalAdaptiveQuantization.php │ │ ├── MsSmoothAudioDeduplication.php │ │ ├── MsSmoothFragmentLengthControl.php │ │ ├── MsSmoothManifestEncoding.php │ │ ├── MxfAfdSignaling.php │ │ ├── MxfProfile.php │ │ ├── MxfXavcDurationMode.php │ │ ├── NielsenActiveWatermarkProcessType.php │ │ ├── NielsenSourceWatermarkStatusType.php │ │ ├── NielsenUniqueTicPerAudioTrackType.php │ │ ├── NoiseFilterPostTemporalSharpening.php │ │ ├── NoiseFilterPostTemporalSharpeningStrength.php │ │ ├── NoiseReducerFilter.php │ │ ├── Order.php │ │ ├── OutputGroupType.php │ │ ├── OutputSdt.php │ │ ├── PadVideo.php │ │ ├── PresetSpeke20Audio.php │ │ ├── PresetSpeke20Video.php │ │ ├── ProresChromaSampling.php │ │ ├── ProresCodecProfile.php │ │ ├── ProresFramerateControl.php │ │ ├── ProresFramerateConversionAlgorithm.php │ │ ├── ProresInterlaceMode.php │ │ ├── ProresParControl.php │ │ ├── ProresScanTypeConversionMode.php │ │ ├── ProresSlowPal.php │ │ ├── ProresTelecine.php │ │ ├── RemoveRubyReserveAttributes.php │ │ ├── RequiredFlag.php │ │ ├── RespondToAfd.php │ │ ├── RuleType.php │ │ ├── S3ObjectCannedAcl.php │ │ ├── S3ServerSideEncryptionType.php │ │ ├── S3StorageClass.php │ │ ├── SampleRangeConversion.php │ │ ├── ScalingBehavior.php │ │ ├── SccDestinationFramerate.php │ │ ├── SimulateReservedQueue.php │ │ ├── SrtStylePassthrough.php │ │ ├── StatusUpdateInterval.php │ │ ├── TeletextPageType.php │ │ ├── TimecodeBurninPosition.php │ │ ├── TimecodeSource.php │ │ ├── TimecodeTrack.php │ │ ├── TimedMetadata.php │ │ ├── TsPtsOffset.php │ │ ├── TtmlStylePassthrough.php │ │ ├── UncompressedFourcc.php │ │ ├── UncompressedFramerateControl.php │ │ ├── UncompressedFramerateConversionAlgorithm.php │ │ ├── UncompressedInterlaceMode.php │ │ ├── UncompressedScanTypeConversionMode.php │ │ ├── UncompressedSlowPal.php │ │ ├── UncompressedTelecine.php │ │ ├── Vc3Class.php │ │ ├── Vc3FramerateControl.php │ │ ├── Vc3FramerateConversionAlgorithm.php │ │ ├── Vc3InterlaceMode.php │ │ ├── Vc3ScanTypeConversionMode.php │ │ ├── Vc3SlowPal.php │ │ ├── Vc3Telecine.php │ │ ├── VchipAction.php │ │ ├── VideoCodec.php │ │ ├── VideoOverlayPlayBackMode.php │ │ ├── VideoOverlayUnit.php │ │ ├── VideoTimecodeInsertion.php │ │ ├── Vp8FramerateControl.php │ │ ├── Vp8FramerateConversionAlgorithm.php │ │ ├── Vp8ParControl.php │ │ ├── Vp8QualityTuningLevel.php │ │ ├── Vp8RateControlMode.php │ │ ├── Vp9FramerateControl.php │ │ ├── Vp9FramerateConversionAlgorithm.php │ │ ├── Vp9ParControl.php │ │ ├── Vp9QualityTuningLevel.php │ │ ├── Vp9RateControlMode.php │ │ ├── WatermarkingStrength.php │ │ ├── WavFormat.php │ │ ├── WebvttAccessibilitySubs.php │ │ ├── WebvttStylePassthrough.php │ │ ├── Xavc4kIntraCbgProfileClass.php │ │ ├── Xavc4kIntraVbrProfileClass.php │ │ ├── Xavc4kProfileBitrateClass.php │ │ ├── Xavc4kProfileCodecProfile.php │ │ ├── Xavc4kProfileQualityTuningLevel.php │ │ ├── XavcAdaptiveQuantization.php │ │ ├── XavcEntropyEncoding.php │ │ ├── XavcFlickerAdaptiveQuantization.php │ │ ├── XavcFramerateControl.php │ │ ├── XavcFramerateConversionAlgorithm.php │ │ ├── XavcGopBReference.php │ │ ├── XavcHdIntraCbgProfileClass.php │ │ ├── XavcHdProfileBitrateClass.php │ │ ├── XavcHdProfileQualityTuningLevel.php │ │ ├── XavcHdProfileTelecine.php │ │ ├── XavcInterlaceMode.php │ │ ├── XavcProfile.php │ │ ├── XavcSlowPal.php │ │ ├── XavcSpatialAdaptiveQuantization.php │ │ └── XavcTemporalAdaptiveQuantization.php │ │ ├── Exception │ │ ├── BadRequestException.php │ │ ├── ConflictException.php │ │ ├── ForbiddenException.php │ │ ├── InternalServerErrorException.php │ │ ├── NotFoundException.php │ │ └── TooManyRequestsException.php │ │ ├── Input │ │ ├── CancelJobRequest.php │ │ ├── CreateJobRequest.php │ │ ├── DescribeEndpointsRequest.php │ │ ├── GetJobRequest.php │ │ └── ListJobsRequest.php │ │ ├── MediaConvertClient.php │ │ ├── Result │ │ ├── CancelJobResponse.php │ │ ├── CreateJobResponse.php │ │ ├── DescribeEndpointsResponse.php │ │ ├── GetJobResponse.php │ │ └── ListJobsResponse.php │ │ └── ValueObject │ │ ├── AacSettings.php │ │ ├── Ac3Settings.php │ │ ├── AccelerationSettings.php │ │ ├── AdvancedInputFilterSettings.php │ │ ├── AiffSettings.php │ │ ├── AllowedRenditionSize.php │ │ ├── AncillarySourceSettings.php │ │ ├── AudioChannelTaggingSettings.php │ │ ├── AudioCodecSettings.php │ │ ├── AudioDescription.php │ │ ├── AudioNormalizationSettings.php │ │ ├── AudioSelector.php │ │ ├── AudioSelectorGroup.php │ │ ├── AutomatedAbrRule.php │ │ ├── AutomatedAbrSettings.php │ │ ├── AutomatedEncodingSettings.php │ │ ├── Av1QvbrSettings.php │ │ ├── Av1Settings.php │ │ ├── AvailBlanking.php │ │ ├── AvcIntraSettings.php │ │ ├── AvcIntraUhdSettings.php │ │ ├── BandwidthReductionFilter.php │ │ ├── BurninDestinationSettings.php │ │ ├── CaptionDescription.php │ │ ├── CaptionDestinationSettings.php │ │ ├── CaptionSelector.php │ │ ├── CaptionSourceFramerate.php │ │ ├── CaptionSourceSettings.php │ │ ├── ChannelMapping.php │ │ ├── ClipLimits.php │ │ ├── CmafAdditionalManifest.php │ │ ├── CmafEncryptionSettings.php │ │ ├── CmafGroupSettings.php │ │ ├── CmafImageBasedTrickPlaySettings.php │ │ ├── CmfcSettings.php │ │ ├── ColorConversion3DLUTSetting.php │ │ ├── ColorCorrector.php │ │ ├── ContainerSettings.php │ │ ├── DashAdditionalManifest.php │ │ ├── DashIsoEncryptionSettings.php │ │ ├── DashIsoGroupSettings.php │ │ ├── DashIsoImageBasedTrickPlaySettings.php │ │ ├── Deinterlacer.php │ │ ├── DestinationSettings.php │ │ ├── DolbyVision.php │ │ ├── DolbyVisionLevel6Metadata.php │ │ ├── DvbNitSettings.php │ │ ├── DvbSdtSettings.php │ │ ├── DvbSubDestinationSettings.php │ │ ├── DvbSubSourceSettings.php │ │ ├── DvbTdtSettings.php │ │ ├── DynamicAudioSelector.php │ │ ├── Eac3AtmosSettings.php │ │ ├── Eac3Settings.php │ │ ├── EmbeddedDestinationSettings.php │ │ ├── EmbeddedSourceSettings.php │ │ ├── EncryptionContractConfiguration.php │ │ ├── Endpoint.php │ │ ├── EsamManifestConfirmConditionNotification.php │ │ ├── EsamSettings.php │ │ ├── EsamSignalProcessingNotification.php │ │ ├── ExtendedDataServices.php │ │ ├── F4vSettings.php │ │ ├── FileGroupSettings.php │ │ ├── FileSourceSettings.php │ │ ├── FlacSettings.php │ │ ├── ForceIncludeRenditionSize.php │ │ ├── FrameCaptureSettings.php │ │ ├── GifSettings.php │ │ ├── H264QvbrSettings.php │ │ ├── H264Settings.php │ │ ├── H265QvbrSettings.php │ │ ├── H265Settings.php │ │ ├── Hdr10Metadata.php │ │ ├── Hdr10Plus.php │ │ ├── HlsAdditionalManifest.php │ │ ├── HlsCaptionLanguageMapping.php │ │ ├── HlsEncryptionSettings.php │ │ ├── HlsGroupSettings.php │ │ ├── HlsImageBasedTrickPlaySettings.php │ │ ├── HlsRenditionGroupSettings.php │ │ ├── HlsSettings.php │ │ ├── HopDestination.php │ │ ├── Id3Insertion.php │ │ ├── ImageInserter.php │ │ ├── ImscDestinationSettings.php │ │ ├── Input.php │ │ ├── InputClipping.php │ │ ├── InputDecryptionSettings.php │ │ ├── InputVideoGenerator.php │ │ ├── InsertableImage.php │ │ ├── Job.php │ │ ├── JobMessages.php │ │ ├── JobSettings.php │ │ ├── KantarWatermarkSettings.php │ │ ├── M2tsScte35Esam.php │ │ ├── M2tsSettings.php │ │ ├── M3u8Settings.php │ │ ├── MinBottomRenditionSize.php │ │ ├── MinTopRenditionSize.php │ │ ├── MotionImageInserter.php │ │ ├── MotionImageInsertionFramerate.php │ │ ├── MotionImageInsertionOffset.php │ │ ├── MovSettings.php │ │ ├── Mp2Settings.php │ │ ├── Mp3Settings.php │ │ ├── Mp4Settings.php │ │ ├── MpdSettings.php │ │ ├── Mpeg2Settings.php │ │ ├── MsSmoothAdditionalManifest.php │ │ ├── MsSmoothEncryptionSettings.php │ │ ├── MsSmoothGroupSettings.php │ │ ├── MxfSettings.php │ │ ├── MxfXavcProfileSettings.php │ │ ├── NexGuardFileMarkerSettings.php │ │ ├── NielsenConfiguration.php │ │ ├── NielsenNonLinearWatermarkSettings.php │ │ ├── NoiseReducer.php │ │ ├── NoiseReducerFilterSettings.php │ │ ├── NoiseReducerSpatialFilterSettings.php │ │ ├── NoiseReducerTemporalFilterSettings.php │ │ ├── OpusSettings.php │ │ ├── Output.php │ │ ├── OutputChannelMapping.php │ │ ├── OutputDetail.php │ │ ├── OutputGroup.php │ │ ├── OutputGroupDetail.php │ │ ├── OutputGroupSettings.php │ │ ├── OutputSettings.php │ │ ├── PartnerWatermarking.php │ │ ├── ProresSettings.php │ │ ├── QueueTransition.php │ │ ├── Rectangle.php │ │ ├── RemixSettings.php │ │ ├── S3DestinationAccessControl.php │ │ ├── S3DestinationSettings.php │ │ ├── S3EncryptionSettings.php │ │ ├── SccDestinationSettings.php │ │ ├── SpekeKeyProvider.php │ │ ├── SpekeKeyProviderCmaf.php │ │ ├── SrtDestinationSettings.php │ │ ├── StaticKeyProvider.php │ │ ├── TeletextDestinationSettings.php │ │ ├── TeletextSourceSettings.php │ │ ├── TimecodeBurnin.php │ │ ├── TimecodeConfig.php │ │ ├── TimedMetadataInsertion.php │ │ ├── Timing.php │ │ ├── TrackSourceSettings.php │ │ ├── TtmlDestinationSettings.php │ │ ├── UncompressedSettings.php │ │ ├── Vc3Settings.php │ │ ├── VideoCodecSettings.php │ │ ├── VideoDescription.php │ │ ├── VideoDetail.php │ │ ├── VideoOverlay.php │ │ ├── VideoOverlayCrop.php │ │ ├── VideoOverlayInput.php │ │ ├── VideoOverlayInputClipping.php │ │ ├── VideoOverlayPosition.php │ │ ├── VideoOverlayTransition.php │ │ ├── VideoPreprocessor.php │ │ ├── VideoSelector.php │ │ ├── VorbisSettings.php │ │ ├── Vp8Settings.php │ │ ├── Vp9Settings.php │ │ ├── WarningGroup.php │ │ ├── WavSettings.php │ │ ├── WebvttDestinationSettings.php │ │ ├── WebvttHlsSourceSettings.php │ │ ├── Xavc4kIntraCbgProfileSettings.php │ │ ├── Xavc4kIntraVbrProfileSettings.php │ │ ├── Xavc4kProfileSettings.php │ │ ├── XavcHdIntraCbgProfileSettings.php │ │ ├── XavcHdProfileSettings.php │ │ └── XavcSettings.php │ ├── RdsDataService │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── DecimalReturnType.php │ │ ├── LongReturnType.php │ │ ├── RecordsFormatType.php │ │ └── TypeHint.php │ │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── BadRequestException.php │ │ ├── DatabaseErrorException.php │ │ ├── DatabaseNotFoundException.php │ │ ├── DatabaseResumingException.php │ │ ├── DatabaseUnavailableException.php │ │ ├── ForbiddenException.php │ │ ├── HttpEndpointNotEnabledException.php │ │ ├── InternalServerErrorException.php │ │ ├── InvalidResourceStateException.php │ │ ├── InvalidSecretException.php │ │ ├── NotFoundException.php │ │ ├── SecretsErrorException.php │ │ ├── ServiceUnavailableErrorException.php │ │ ├── StatementTimeoutException.php │ │ ├── TransactionNotFoundException.php │ │ └── UnsupportedResultException.php │ │ ├── Input │ │ ├── BatchExecuteStatementRequest.php │ │ ├── BeginTransactionRequest.php │ │ ├── CommitTransactionRequest.php │ │ ├── ExecuteStatementRequest.php │ │ └── RollbackTransactionRequest.php │ │ ├── RdsDataServiceClient.php │ │ ├── Result │ │ ├── BatchExecuteStatementResponse.php │ │ ├── BeginTransactionResponse.php │ │ ├── CommitTransactionResponse.php │ │ ├── ExecuteStatementResponse.php │ │ └── RollbackTransactionResponse.php │ │ └── ValueObject │ │ ├── ArrayValue.php │ │ ├── ColumnMetadata.php │ │ ├── Field.php │ │ ├── ResultSetOptions.php │ │ ├── SqlParameter.php │ │ └── UpdateResult.php │ ├── Rekognition │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── Attribute.php │ │ ├── ContentClassifier.php │ │ ├── CustomizationFeature.php │ │ ├── EmotionName.php │ │ ├── GenderType.php │ │ ├── KnownGenderType.php │ │ ├── LandmarkType.php │ │ ├── OrientationCorrection.php │ │ ├── ProjectAutoUpdate.php │ │ ├── ProjectStatus.php │ │ ├── QualityFilter.php │ │ └── Reason.php │ │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── HumanLoopQuotaExceededException.php │ │ ├── ImageTooLargeException.php │ │ ├── InternalServerErrorException.php │ │ ├── InvalidImageFormatException.php │ │ ├── InvalidPaginationTokenException.php │ │ ├── InvalidParameterException.php │ │ ├── InvalidS3ObjectException.php │ │ ├── LimitExceededException.php │ │ ├── ProvisionedThroughputExceededException.php │ │ ├── ResourceAlreadyExistsException.php │ │ ├── ResourceInUseException.php │ │ ├── ResourceNotFoundException.php │ │ ├── ResourceNotReadyException.php │ │ ├── ServiceQuotaExceededException.php │ │ └── ThrottlingException.php │ │ ├── Input │ │ ├── CreateCollectionRequest.php │ │ ├── CreateProjectRequest.php │ │ ├── DeleteCollectionRequest.php │ │ ├── DeleteProjectRequest.php │ │ ├── DetectFacesRequest.php │ │ ├── DetectModerationLabelsRequest.php │ │ ├── GetCelebrityInfoRequest.php │ │ ├── IndexFacesRequest.php │ │ ├── ListCollectionsRequest.php │ │ ├── RecognizeCelebritiesRequest.php │ │ └── SearchFacesByImageRequest.php │ │ ├── RekognitionClient.php │ │ ├── Result │ │ ├── CreateCollectionResponse.php │ │ ├── CreateProjectResponse.php │ │ ├── DeleteCollectionResponse.php │ │ ├── DeleteProjectResponse.php │ │ ├── DetectFacesResponse.php │ │ ├── DetectModerationLabelsResponse.php │ │ ├── GetCelebrityInfoResponse.php │ │ ├── IndexFacesResponse.php │ │ ├── ListCollectionsResponse.php │ │ ├── RecognizeCelebritiesResponse.php │ │ └── SearchFacesByImageResponse.php │ │ └── ValueObject │ │ ├── AgeRange.php │ │ ├── Beard.php │ │ ├── BoundingBox.php │ │ ├── Celebrity.php │ │ ├── ComparedFace.php │ │ ├── ContentType.php │ │ ├── Emotion.php │ │ ├── EyeDirection.php │ │ ├── EyeOpen.php │ │ ├── Eyeglasses.php │ │ ├── Face.php │ │ ├── FaceDetail.php │ │ ├── FaceMatch.php │ │ ├── FaceOccluded.php │ │ ├── FaceRecord.php │ │ ├── Gender.php │ │ ├── HumanLoopActivationOutput.php │ │ ├── HumanLoopConfig.php │ │ ├── HumanLoopDataAttributes.php │ │ ├── Image.php │ │ ├── ImageQuality.php │ │ ├── KnownGender.php │ │ ├── Landmark.php │ │ ├── ModerationLabel.php │ │ ├── MouthOpen.php │ │ ├── Mustache.php │ │ ├── Pose.php │ │ ├── S3Object.php │ │ ├── Smile.php │ │ ├── Sunglasses.php │ │ └── UnindexedFace.php │ ├── Route53 │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── ChangeAction.php │ │ ├── ChangeStatus.php │ │ ├── HostedZoneType.php │ │ ├── RRType.php │ │ ├── ResourceRecordSetFailover.php │ │ ├── ResourceRecordSetRegion.php │ │ └── VPCRegion.php │ │ ├── Exception │ │ ├── ConflictingDomainExistsException.php │ │ ├── DelegationSetNotAvailableException.php │ │ ├── DelegationSetNotReusableException.php │ │ ├── HostedZoneAlreadyExistsException.php │ │ ├── HostedZoneNotEmptyException.php │ │ ├── InvalidChangeBatchException.php │ │ ├── InvalidDomainNameException.php │ │ ├── InvalidInputException.php │ │ ├── InvalidVPCIdException.php │ │ ├── NoSuchChangeException.php │ │ ├── NoSuchDelegationSetException.php │ │ ├── NoSuchHealthCheckException.php │ │ ├── NoSuchHostedZoneException.php │ │ ├── PriorRequestNotCompleteException.php │ │ └── TooManyHostedZonesException.php │ │ ├── Input │ │ ├── ChangeResourceRecordSetsRequest.php │ │ ├── CreateHostedZoneRequest.php │ │ ├── DeleteHostedZoneRequest.php │ │ ├── GetChangeRequest.php │ │ ├── ListHostedZonesByNameRequest.php │ │ ├── ListHostedZonesRequest.php │ │ └── ListResourceRecordSetsRequest.php │ │ ├── Result │ │ ├── ChangeResourceRecordSetsResponse.php │ │ ├── CreateHostedZoneResponse.php │ │ ├── DeleteHostedZoneResponse.php │ │ ├── ListHostedZonesByNameResponse.php │ │ ├── ListHostedZonesResponse.php │ │ ├── ListResourceRecordSetsResponse.php │ │ └── ResourceRecordSetsChangedWaiter.php │ │ ├── Route53Client.php │ │ └── ValueObject │ │ ├── AliasTarget.php │ │ ├── Change.php │ │ ├── ChangeBatch.php │ │ ├── ChangeInfo.php │ │ ├── CidrRoutingConfig.php │ │ ├── Coordinates.php │ │ ├── DelegationSet.php │ │ ├── GeoLocation.php │ │ ├── GeoProximityLocation.php │ │ ├── HostedZone.php │ │ ├── HostedZoneConfig.php │ │ ├── LinkedService.php │ │ ├── ResourceRecord.php │ │ ├── ResourceRecordSet.php │ │ └── VPC.php │ ├── S3 │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── ArchiveStatus.php │ │ ├── BucketCannedACL.php │ │ ├── BucketLocationConstraint.php │ │ ├── BucketType.php │ │ ├── ChecksumAlgorithm.php │ │ ├── ChecksumMode.php │ │ ├── ChecksumType.php │ │ ├── DataRedundancy.php │ │ ├── EncodingType.php │ │ ├── Event.php │ │ ├── FilterRuleName.php │ │ ├── IntelligentTieringAccessTier.php │ │ ├── LocationType.php │ │ ├── MetadataDirective.php │ │ ├── ObjectCannedACL.php │ │ ├── ObjectLockLegalHoldStatus.php │ │ ├── ObjectLockMode.php │ │ ├── ObjectOwnership.php │ │ ├── ObjectStorageClass.php │ │ ├── ObjectVersionStorageClass.php │ │ ├── OptionalObjectAttributes.php │ │ ├── Permission.php │ │ ├── ReplicationStatus.php │ │ ├── RequestCharged.php │ │ ├── RequestPayer.php │ │ ├── ServerSideEncryption.php │ │ ├── StorageClass.php │ │ ├── TaggingDirective.php │ │ └── Type.php │ │ ├── Exception │ │ ├── BucketAlreadyExistsException.php │ │ ├── BucketAlreadyOwnedByYouException.php │ │ ├── EncryptionTypeMismatchException.php │ │ ├── InvalidObjectStateException.php │ │ ├── InvalidRequestException.php │ │ ├── InvalidWriteOffsetException.php │ │ ├── NoSuchBucketException.php │ │ ├── NoSuchKeyException.php │ │ ├── NoSuchUploadException.php │ │ ├── ObjectNotInActiveTierErrorException.php │ │ └── TooManyPartsException.php │ │ ├── Input │ │ ├── AbortMultipartUploadRequest.php │ │ ├── CompleteMultipartUploadRequest.php │ │ ├── CopyObjectRequest.php │ │ ├── CreateBucketRequest.php │ │ ├── CreateMultipartUploadRequest.php │ │ ├── DeleteBucketCorsRequest.php │ │ ├── DeleteBucketRequest.php │ │ ├── DeleteObjectRequest.php │ │ ├── DeleteObjectTaggingRequest.php │ │ ├── DeleteObjectsRequest.php │ │ ├── GetBucketCorsRequest.php │ │ ├── GetBucketEncryptionRequest.php │ │ ├── GetObjectAclRequest.php │ │ ├── GetObjectRequest.php │ │ ├── GetObjectTaggingRequest.php │ │ ├── HeadBucketRequest.php │ │ ├── HeadObjectRequest.php │ │ ├── ListBucketsRequest.php │ │ ├── ListMultipartUploadsRequest.php │ │ ├── ListObjectVersionsRequest.php │ │ ├── ListObjectsV2Request.php │ │ ├── ListPartsRequest.php │ │ ├── PutBucketCorsRequest.php │ │ ├── PutBucketNotificationConfigurationRequest.php │ │ ├── PutBucketTaggingRequest.php │ │ ├── PutObjectAclRequest.php │ │ ├── PutObjectRequest.php │ │ ├── PutObjectTaggingRequest.php │ │ ├── UploadPartCopyRequest.php │ │ └── UploadPartRequest.php │ │ ├── Result │ │ ├── AbortMultipartUploadOutput.php │ │ ├── BucketExistsWaiter.php │ │ ├── BucketNotExistsWaiter.php │ │ ├── CompleteMultipartUploadOutput.php │ │ ├── CopyObjectOutput.php │ │ ├── CreateBucketOutput.php │ │ ├── CreateMultipartUploadOutput.php │ │ ├── DeleteObjectOutput.php │ │ ├── DeleteObjectTaggingOutput.php │ │ ├── DeleteObjectsOutput.php │ │ ├── GetBucketCorsOutput.php │ │ ├── GetBucketEncryptionOutput.php │ │ ├── GetObjectAclOutput.php │ │ ├── GetObjectOutput.php │ │ ├── GetObjectTaggingOutput.php │ │ ├── HeadObjectOutput.php │ │ ├── ListBucketsOutput.php │ │ ├── ListMultipartUploadsOutput.php │ │ ├── ListObjectVersionsOutput.php │ │ ├── ListObjectsV2Output.php │ │ ├── ListPartsOutput.php │ │ ├── ObjectExistsWaiter.php │ │ ├── ObjectNotExistsWaiter.php │ │ ├── PutObjectAclOutput.php │ │ ├── PutObjectOutput.php │ │ ├── PutObjectTaggingOutput.php │ │ ├── UploadPartCopyOutput.php │ │ └── UploadPartOutput.php │ │ ├── S3Client.php │ │ ├── Signer │ │ └── SignerV4ForS3.php │ │ └── ValueObject │ │ ├── AccessControlPolicy.php │ │ ├── AwsObject.php │ │ ├── Bucket.php │ │ ├── BucketInfo.php │ │ ├── CORSConfiguration.php │ │ ├── CORSRule.php │ │ ├── CommonPrefix.php │ │ ├── CompletedMultipartUpload.php │ │ ├── CompletedPart.php │ │ ├── CopyObjectResult.php │ │ ├── CopyPartResult.php │ │ ├── CreateBucketConfiguration.php │ │ ├── Delete.php │ │ ├── DeleteMarkerEntry.php │ │ ├── DeletedObject.php │ │ ├── Error.php │ │ ├── EventBridgeConfiguration.php │ │ ├── FilterRule.php │ │ ├── Grant.php │ │ ├── Grantee.php │ │ ├── Initiator.php │ │ ├── LambdaFunctionConfiguration.php │ │ ├── LocationInfo.php │ │ ├── MultipartUpload.php │ │ ├── NotificationConfiguration.php │ │ ├── NotificationConfigurationFilter.php │ │ ├── ObjectIdentifier.php │ │ ├── ObjectVersion.php │ │ ├── Owner.php │ │ ├── Part.php │ │ ├── QueueConfiguration.php │ │ ├── RestoreStatus.php │ │ ├── S3KeyFilter.php │ │ ├── ServerSideEncryptionByDefault.php │ │ ├── ServerSideEncryptionConfiguration.php │ │ ├── ServerSideEncryptionRule.php │ │ ├── Tag.php │ │ ├── Tagging.php │ │ └── TopicConfiguration.php │ ├── Scheduler │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── ActionAfterCompletion.php │ │ ├── AssignPublicIp.php │ │ ├── FlexibleTimeWindowMode.php │ │ ├── LaunchType.php │ │ ├── PlacementConstraintType.php │ │ ├── PlacementStrategyType.php │ │ ├── PropagateTags.php │ │ ├── ScheduleGroupState.php │ │ └── ScheduleState.php │ │ ├── Exception │ │ ├── ConflictException.php │ │ ├── InternalServerException.php │ │ ├── ResourceNotFoundException.php │ │ ├── ServiceQuotaExceededException.php │ │ ├── ThrottlingException.php │ │ └── ValidationException.php │ │ ├── Input │ │ ├── CreateScheduleGroupInput.php │ │ ├── CreateScheduleInput.php │ │ ├── DeleteScheduleGroupInput.php │ │ ├── DeleteScheduleInput.php │ │ ├── GetScheduleGroupInput.php │ │ ├── GetScheduleInput.php │ │ ├── ListScheduleGroupsInput.php │ │ ├── ListSchedulesInput.php │ │ └── UpdateScheduleInput.php │ │ ├── Result │ │ ├── CreateScheduleGroupOutput.php │ │ ├── CreateScheduleOutput.php │ │ ├── DeleteScheduleGroupOutput.php │ │ ├── DeleteScheduleOutput.php │ │ ├── GetScheduleGroupOutput.php │ │ ├── GetScheduleOutput.php │ │ ├── ListScheduleGroupsOutput.php │ │ ├── ListSchedulesOutput.php │ │ └── UpdateScheduleOutput.php │ │ ├── SchedulerClient.php │ │ └── ValueObject │ │ ├── AwsVpcConfiguration.php │ │ ├── CapacityProviderStrategyItem.php │ │ ├── DeadLetterConfig.php │ │ ├── EcsParameters.php │ │ ├── EventBridgeParameters.php │ │ ├── FlexibleTimeWindow.php │ │ ├── KinesisParameters.php │ │ ├── NetworkConfiguration.php │ │ ├── PlacementConstraint.php │ │ ├── PlacementStrategy.php │ │ ├── RetryPolicy.php │ │ ├── SageMakerPipelineParameter.php │ │ ├── SageMakerPipelineParameters.php │ │ ├── ScheduleGroupSummary.php │ │ ├── ScheduleSummary.php │ │ ├── SqsParameters.php │ │ ├── Tag.php │ │ ├── Target.php │ │ └── TargetSummary.php │ ├── SecretsManager │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── FilterNameStringType.php │ │ ├── SortOrderType.php │ │ └── StatusType.php │ │ ├── Exception │ │ ├── DecryptionFailureException.php │ │ ├── EncryptionFailureException.php │ │ ├── InternalServiceErrorException.php │ │ ├── InvalidNextTokenException.php │ │ ├── InvalidParameterException.php │ │ ├── InvalidRequestException.php │ │ ├── LimitExceededException.php │ │ ├── MalformedPolicyDocumentException.php │ │ ├── PreconditionNotMetException.php │ │ ├── ResourceExistsException.php │ │ └── ResourceNotFoundException.php │ │ ├── Input │ │ ├── CreateSecretRequest.php │ │ ├── DeleteSecretRequest.php │ │ ├── GetSecretValueRequest.php │ │ ├── ListSecretsRequest.php │ │ ├── PutSecretValueRequest.php │ │ └── UpdateSecretRequest.php │ │ ├── Result │ │ ├── CreateSecretResponse.php │ │ ├── DeleteSecretResponse.php │ │ ├── GetSecretValueResponse.php │ │ ├── ListSecretsResponse.php │ │ ├── PutSecretValueResponse.php │ │ └── UpdateSecretResponse.php │ │ ├── SecretsManagerClient.php │ │ └── ValueObject │ │ ├── Filter.php │ │ ├── ReplicaRegionType.php │ │ ├── ReplicationStatusType.php │ │ ├── RotationRulesType.php │ │ ├── SecretListEntry.php │ │ └── Tag.php │ ├── Ses │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── AttachmentContentDisposition.php │ │ ├── AttachmentContentTransferEncoding.php │ │ └── SuppressionListReason.php │ │ ├── Exception │ │ ├── AccountSuspendedException.php │ │ ├── BadRequestException.php │ │ ├── LimitExceededException.php │ │ ├── MailFromDomainNotVerifiedException.php │ │ ├── MessageRejectedException.php │ │ ├── NotFoundException.php │ │ ├── SendingPausedException.php │ │ └── TooManyRequestsException.php │ │ ├── Input │ │ ├── DeleteSuppressedDestinationRequest.php │ │ ├── GetSuppressedDestinationRequest.php │ │ └── SendEmailRequest.php │ │ ├── Result │ │ ├── DeleteSuppressedDestinationResponse.php │ │ ├── GetSuppressedDestinationResponse.php │ │ └── SendEmailResponse.php │ │ ├── SesClient.php │ │ └── ValueObject │ │ ├── Attachment.php │ │ ├── Body.php │ │ ├── Content.php │ │ ├── Destination.php │ │ ├── EmailContent.php │ │ ├── EmailTemplateContent.php │ │ ├── ListManagementOptions.php │ │ ├── Message.php │ │ ├── MessageHeader.php │ │ ├── MessageTag.php │ │ ├── RawMessage.php │ │ ├── SuppressedDestination.php │ │ ├── SuppressedDestinationAttributes.php │ │ └── Template.php │ ├── Sns │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Exception │ │ ├── AuthorizationErrorException.php │ │ ├── BatchEntryIdsNotDistinctException.php │ │ ├── BatchRequestTooLongException.php │ │ ├── ConcurrentAccessException.php │ │ ├── EmptyBatchRequestException.php │ │ ├── EndpointDisabledException.php │ │ ├── FilterPolicyLimitExceededException.php │ │ ├── InternalErrorException.php │ │ ├── InvalidBatchEntryIdException.php │ │ ├── InvalidParameterException.php │ │ ├── InvalidParameterValueException.php │ │ ├── InvalidSecurityException.php │ │ ├── InvalidStateException.php │ │ ├── KMSAccessDeniedException.php │ │ ├── KMSDisabledException.php │ │ ├── KMSInvalidStateException.php │ │ ├── KMSNotFoundException.php │ │ ├── KMSOptInRequiredException.php │ │ ├── KMSThrottlingException.php │ │ ├── NotFoundException.php │ │ ├── PlatformApplicationDisabledException.php │ │ ├── ReplayLimitExceededException.php │ │ ├── StaleTagException.php │ │ ├── SubscriptionLimitExceededException.php │ │ ├── TagLimitExceededException.php │ │ ├── TagPolicyException.php │ │ ├── TooManyEntriesInBatchRequestException.php │ │ ├── TopicLimitExceededException.php │ │ └── ValidationException.php │ │ ├── Input │ │ ├── CreatePlatformEndpointInput.php │ │ ├── CreateTopicInput.php │ │ ├── DeleteEndpointInput.php │ │ ├── DeleteTopicInput.php │ │ ├── ListSubscriptionsByTopicInput.php │ │ ├── ListTopicsInput.php │ │ ├── PublishBatchInput.php │ │ ├── PublishInput.php │ │ ├── SubscribeInput.php │ │ └── UnsubscribeInput.php │ │ ├── Result │ │ ├── CreateEndpointResponse.php │ │ ├── CreateTopicResponse.php │ │ ├── ListSubscriptionsByTopicResponse.php │ │ ├── ListTopicsResponse.php │ │ ├── PublishBatchResponse.php │ │ ├── PublishResponse.php │ │ └── SubscribeResponse.php │ │ ├── SnsClient.php │ │ └── ValueObject │ │ ├── BatchResultErrorEntry.php │ │ ├── MessageAttributeValue.php │ │ ├── PublishBatchRequestEntry.php │ │ ├── PublishBatchResultEntry.php │ │ ├── Subscription.php │ │ ├── Tag.php │ │ └── Topic.php │ ├── Sqs │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── MessageSystemAttributeName.php │ │ ├── MessageSystemAttributeNameForSends.php │ │ └── QueueAttributeName.php │ │ ├── Exception │ │ ├── BatchEntryIdsNotDistinctException.php │ │ ├── BatchRequestTooLongException.php │ │ ├── EmptyBatchRequestException.php │ │ ├── InvalidAddressException.php │ │ ├── InvalidAttributeNameException.php │ │ ├── InvalidAttributeValueException.php │ │ ├── InvalidBatchEntryIdException.php │ │ ├── InvalidIdFormatException.php │ │ ├── InvalidMessageContentsException.php │ │ ├── InvalidSecurityException.php │ │ ├── KmsAccessDeniedException.php │ │ ├── KmsDisabledException.php │ │ ├── KmsInvalidKeyUsageException.php │ │ ├── KmsInvalidStateException.php │ │ ├── KmsNotFoundException.php │ │ ├── KmsOptInRequiredException.php │ │ ├── KmsThrottledException.php │ │ ├── MessageNotInflightException.php │ │ ├── OverLimitException.php │ │ ├── PurgeQueueInProgressException.php │ │ ├── QueueDeletedRecentlyException.php │ │ ├── QueueDoesNotExistException.php │ │ ├── QueueNameExistsException.php │ │ ├── ReceiptHandleIsInvalidException.php │ │ ├── RequestThrottledException.php │ │ ├── TooManyEntriesInBatchRequestException.php │ │ └── UnsupportedOperationException.php │ │ ├── Input │ │ ├── AddPermissionRequest.php │ │ ├── ChangeMessageVisibilityBatchRequest.php │ │ ├── ChangeMessageVisibilityRequest.php │ │ ├── CreateQueueRequest.php │ │ ├── DeleteMessageBatchRequest.php │ │ ├── DeleteMessageRequest.php │ │ ├── DeleteQueueRequest.php │ │ ├── GetQueueAttributesRequest.php │ │ ├── GetQueueUrlRequest.php │ │ ├── ListQueuesRequest.php │ │ ├── PurgeQueueRequest.php │ │ ├── ReceiveMessageRequest.php │ │ ├── SendMessageBatchRequest.php │ │ └── SendMessageRequest.php │ │ ├── Result │ │ ├── ChangeMessageVisibilityBatchResult.php │ │ ├── CreateQueueResult.php │ │ ├── DeleteMessageBatchResult.php │ │ ├── GetQueueAttributesResult.php │ │ ├── GetQueueUrlResult.php │ │ ├── ListQueuesResult.php │ │ ├── QueueExistsWaiter.php │ │ ├── ReceiveMessageResult.php │ │ ├── SendMessageBatchResult.php │ │ └── SendMessageResult.php │ │ ├── SqsClient.php │ │ └── ValueObject │ │ ├── BatchResultErrorEntry.php │ │ ├── ChangeMessageVisibilityBatchRequestEntry.php │ │ ├── ChangeMessageVisibilityBatchResultEntry.php │ │ ├── DeleteMessageBatchRequestEntry.php │ │ ├── DeleteMessageBatchResultEntry.php │ │ ├── Message.php │ │ ├── MessageAttributeValue.php │ │ ├── MessageSystemAttributeValue.php │ │ ├── SendMessageBatchRequestEntry.php │ │ └── SendMessageBatchResultEntry.php │ ├── Ssm │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── ParameterTier.php │ │ └── ParameterType.php │ │ ├── Exception │ │ ├── HierarchyLevelLimitExceededException.php │ │ ├── HierarchyTypeMismatchException.php │ │ ├── IncompatiblePolicyException.php │ │ ├── InternalServerErrorException.php │ │ ├── InvalidAllowedPatternException.php │ │ ├── InvalidFilterKeyException.php │ │ ├── InvalidFilterOptionException.php │ │ ├── InvalidFilterValueException.php │ │ ├── InvalidKeyIdException.php │ │ ├── InvalidNextTokenException.php │ │ ├── InvalidPolicyAttributeException.php │ │ ├── InvalidPolicyTypeException.php │ │ ├── ParameterAlreadyExistsException.php │ │ ├── ParameterLimitExceededException.php │ │ ├── ParameterMaxVersionLimitExceededException.php │ │ ├── ParameterNotFoundException.php │ │ ├── ParameterPatternMismatchException.php │ │ ├── ParameterVersionNotFoundException.php │ │ ├── PoliciesLimitExceededException.php │ │ ├── TooManyUpdatesException.php │ │ └── UnsupportedParameterTypeException.php │ │ ├── Input │ │ ├── DeleteParameterRequest.php │ │ ├── DeleteParametersRequest.php │ │ ├── GetParameterRequest.php │ │ ├── GetParametersByPathRequest.php │ │ ├── GetParametersRequest.php │ │ └── PutParameterRequest.php │ │ ├── Result │ │ ├── DeleteParameterResult.php │ │ ├── DeleteParametersResult.php │ │ ├── GetParameterResult.php │ │ ├── GetParametersByPathResult.php │ │ ├── GetParametersResult.php │ │ └── PutParameterResult.php │ │ ├── SsmClient.php │ │ └── ValueObject │ │ ├── Parameter.php │ │ ├── ParameterStringFilter.php │ │ └── Tag.php │ ├── Sso │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Exception │ │ ├── InvalidRequestException.php │ │ ├── ResourceNotFoundException.php │ │ ├── TooManyRequestsException.php │ │ └── UnauthorizedException.php │ │ ├── Input │ │ └── GetRoleCredentialsRequest.php │ │ ├── Result │ │ └── GetRoleCredentialsResponse.php │ │ ├── SsoClient.php │ │ └── ValueObject │ │ └── RoleCredentials.php │ ├── SsoOidc │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── AuthorizationPendingException.php │ │ ├── ExpiredTokenException.php │ │ ├── InternalServerException.php │ │ ├── InvalidClientException.php │ │ ├── InvalidGrantException.php │ │ ├── InvalidRequestException.php │ │ ├── InvalidScopeException.php │ │ ├── SlowDownException.php │ │ ├── UnauthorizedClientException.php │ │ └── UnsupportedGrantTypeException.php │ │ ├── Input │ │ └── CreateTokenRequest.php │ │ ├── Result │ │ └── CreateTokenResponse.php │ │ └── SsoOidcClient.php │ ├── StepFunctions │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── KmsKeyState.php │ │ └── ValidationExceptionReason.php │ │ ├── Exception │ │ ├── ExecutionAlreadyExistsException.php │ │ ├── ExecutionDoesNotExistException.php │ │ ├── ExecutionLimitExceededException.php │ │ ├── InvalidArnException.php │ │ ├── InvalidExecutionInputException.php │ │ ├── InvalidNameException.php │ │ ├── InvalidOutputException.php │ │ ├── InvalidTokenException.php │ │ ├── KmsAccessDeniedException.php │ │ ├── KmsInvalidStateException.php │ │ ├── KmsThrottlingException.php │ │ ├── StateMachineDeletingException.php │ │ ├── StateMachineDoesNotExistException.php │ │ ├── TaskDoesNotExistException.php │ │ ├── TaskTimedOutException.php │ │ └── ValidationException.php │ │ ├── Input │ │ ├── SendTaskFailureInput.php │ │ ├── SendTaskHeartbeatInput.php │ │ ├── SendTaskSuccessInput.php │ │ ├── StartExecutionInput.php │ │ └── StopExecutionInput.php │ │ ├── Result │ │ ├── SendTaskFailureOutput.php │ │ ├── SendTaskHeartbeatOutput.php │ │ ├── SendTaskSuccessOutput.php │ │ ├── StartExecutionOutput.php │ │ └── StopExecutionOutput.php │ │ └── StepFunctionsClient.php │ ├── TimestreamQuery │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── QueryInsightsMode.php │ │ └── ScalarType.php │ │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── ConflictException.php │ │ ├── InternalServerException.php │ │ ├── InvalidEndpointException.php │ │ ├── QueryExecutionException.php │ │ ├── ThrottlingException.php │ │ └── ValidationException.php │ │ ├── Input │ │ ├── CancelQueryRequest.php │ │ ├── DescribeEndpointsRequest.php │ │ ├── PrepareQueryRequest.php │ │ └── QueryRequest.php │ │ ├── Result │ │ ├── CancelQueryResponse.php │ │ ├── DescribeEndpointsResponse.php │ │ ├── PrepareQueryResponse.php │ │ └── QueryResponse.php │ │ ├── TimestreamQueryClient.php │ │ └── ValueObject │ │ ├── ColumnInfo.php │ │ ├── Datum.php │ │ ├── Endpoint.php │ │ ├── ParameterMapping.php │ │ ├── QueryInsights.php │ │ ├── QueryInsightsResponse.php │ │ ├── QuerySpatialCoverage.php │ │ ├── QuerySpatialCoverageMax.php │ │ ├── QueryStatus.php │ │ ├── QueryTemporalRange.php │ │ ├── QueryTemporalRangeMax.php │ │ ├── Row.php │ │ ├── SelectColumn.php │ │ ├── TimeSeriesDataPoint.php │ │ └── Type.php │ ├── TimestreamWrite │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── DimensionValueType.php │ │ ├── MeasureValueType.php │ │ └── TimeUnit.php │ │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── InternalServerException.php │ │ ├── InvalidEndpointException.php │ │ ├── RejectedRecordsException.php │ │ ├── ResourceNotFoundException.php │ │ ├── ThrottlingException.php │ │ └── ValidationException.php │ │ ├── Input │ │ ├── DescribeEndpointsRequest.php │ │ └── WriteRecordsRequest.php │ │ ├── Result │ │ ├── DescribeEndpointsResponse.php │ │ └── WriteRecordsResponse.php │ │ ├── TimestreamWriteClient.php │ │ └── ValueObject │ │ ├── Dimension.php │ │ ├── Endpoint.php │ │ ├── MeasureValue.php │ │ ├── Record.php │ │ ├── RecordsIngested.php │ │ └── RejectedRecord.php │ ├── Translate │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Enum │ │ ├── Brevity.php │ │ ├── Formality.php │ │ └── Profanity.php │ │ ├── Exception │ │ ├── DetectedLanguageLowConfidenceException.php │ │ ├── InternalServerException.php │ │ ├── InvalidRequestException.php │ │ ├── ResourceNotFoundException.php │ │ ├── ServiceUnavailableException.php │ │ ├── TextSizeLimitExceededException.php │ │ ├── TooManyRequestsException.php │ │ └── UnsupportedLanguagePairException.php │ │ ├── Input │ │ └── TranslateTextRequest.php │ │ ├── Result │ │ └── TranslateTextResponse.php │ │ ├── TranslateClient.php │ │ └── ValueObject │ │ ├── AppliedTerminology.php │ │ ├── Term.php │ │ └── TranslationSettings.php │ └── XRay │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Exception │ ├── InvalidRequestException.php │ └── ThrottledException.php │ ├── Input │ └── PutTraceSegmentsRequest.php │ ├── Result │ └── PutTraceSegmentsResult.php │ ├── ValueObject │ └── UnprocessedTraceSegment.php │ └── XRayClient.php ├── tests ├── ServiceProvider.php └── Unit │ ├── BranchAliasTest.php │ ├── ChangelogTest.php │ ├── Core │ └── AwsClientFactoryTest.php │ ├── DocumentationTest.php │ ├── ExceptionTest.php │ ├── MetaFileTest.php │ └── Symfony │ └── AwsPackagesProviderTest.php └── website ├── Twig └── AsyncAwsTwigExtension.php ├── assets ├── image │ ├── compare │ │ ├── aa-exception.png │ │ ├── aa-input.png │ │ ├── aa-method.png │ │ ├── aa-result.png │ │ ├── aws-exception.png │ │ ├── aws-input.png │ │ ├── aws-method.png │ │ └── aws-result.png │ └── logo.png ├── script │ ├── bootstrap.js │ ├── code.js │ ├── main.js │ └── sidebar.js └── style │ ├── _variables.scss │ ├── bootstrap.scss │ ├── code.scss │ ├── contribute.scss │ ├── layout │ └── compare.scss │ ├── main.scss │ ├── res │ ├── copy-error.svg │ ├── copy-ok.svg │ └── copy.svg │ └── sidebar.scss ├── package.json ├── post-process ├── copy-code.js ├── header-links.js ├── highlight.js ├── main.js └── walk.js ├── postcss.config.js ├── template ├── CNAME ├── assets │ └── .gitignore ├── base.twig ├── client.twig ├── compare.twig ├── contribute.twig ├── default.twig ├── favicon.ico ├── home.twig ├── netlify.toml └── twig.php └── webpack.config.js /.cache/generate/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.cache/php-cs-fixer/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.cache/phpstan/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.cache/psalm/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | [*] 7 | charset = utf-8 8 | end_of_line = lf 9 | indent_size = 4 10 | indent_style = space 11 | insert_final_newline = true 12 | trim_trailing_whitespace = true 13 | 14 | [Makefile] 15 | indent_style = tab 16 | 17 | [phpunit.xml.dist] 18 | indent_size = 2 19 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [nyholm, jderusse] 4 | -------------------------------------------------------------------------------- /.github/workflows/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.yml] 2 | indent_size = 2 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | *.cache 3 | composer.lock 4 | /.couscous/ 5 | /website/node_modules/ 6 | /website/package-lock.json 7 | /website/template/assets/* 8 | !/website/template/assets/.gitignore 9 | -------------------------------------------------------------------------------- /src/CodeGenerator/.gitattributes: -------------------------------------------------------------------------------- 1 | /.github export-ignore 2 | /tests export-ignore 3 | /.gitignore export-ignore 4 | /Makefile export-ignore 5 | /phpunit.xml.dist export-ignore 6 | -------------------------------------------------------------------------------- /src/CodeGenerator/README.md: -------------------------------------------------------------------------------- 1 | # AsyncAws Code Generator 2 | 3 | ![](https://github.com/async-aws/code-generator/workflows/Tests/badge.svg?branch=master) 4 | ![](https://github.com/async-aws/code-generator/workflows/BC%20Check/badge.svg?branch=master) 5 | 6 | This package generate code for the API clients. 7 | 8 | ## Install 9 | 10 | ```cli 11 | composer require async-aws/code-generator 12 | ``` 13 | -------------------------------------------------------------------------------- /src/CodeGenerator/src/Definition/ListMember.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | interface Exception extends \Throwable 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /src/Core/src/Exception/InvalidArgument.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/AppSync/src/Enum/RelationalDatabaseSourceType.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/AppSync/src/Enum/RuntimeName.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/AppSync/src/Exception/ConcurrentModificationException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/Athena/src/Enum/S3AclOption.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/Athena/src/Exception/InternalServerException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/CloudFront/.gitattributes: -------------------------------------------------------------------------------- 1 | /.github export-ignore 2 | /tests export-ignore 3 | /.gitignore export-ignore 4 | /Makefile export-ignore 5 | /phpunit.xml.dist export-ignore 6 | -------------------------------------------------------------------------------- /src/Service/CloudFront/src/Exception/AccessDeniedException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/CloudWatch/src/Exception/InternalServiceFaultException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/CodeBuild/src/Enum/FileSystemType.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/CodeBuild/src/Exception/AccountLimitExceededException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/Comprehend/src/Exception/InternalServerException.php: -------------------------------------------------------------------------------- 1 | true, 14 | self::RANGE => true, 15 | ][$value]); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Service/DynamoDb/src/Enum/SSEType.php: -------------------------------------------------------------------------------- 1 | true, 14 | self::KMS => true, 15 | ][$value]); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Service/DynamoDb/src/Exception/DuplicateItemException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/Kinesis/src/Exception/AccessDeniedException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/Kms/src/Enum/KeyEncryptionMechanism.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/Kms/src/Enum/MessageType.php: -------------------------------------------------------------------------------- 1 | true, 14 | self::RAW => true, 15 | ][$value]); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Service/Kms/src/Exception/AlreadyExistsException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/Lambda/src/Enum/LogFormat.php: -------------------------------------------------------------------------------- 1 | true, 14 | self::TEXT => true, 15 | ][$value]); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Service/Lambda/src/Enum/LogType.php: -------------------------------------------------------------------------------- 1 | true, 14 | self::TAIL => true, 15 | ][$value]); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Service/LocationService/.gitattributes: -------------------------------------------------------------------------------- 1 | /.github export-ignore 2 | /tests export-ignore 3 | /.gitignore export-ignore 4 | /Makefile export-ignore 5 | /phpunit.xml.dist export-ignore 6 | -------------------------------------------------------------------------------- /src/Service/LocationService/src/Exception/InternalServerException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/Route53/src/Exception/DelegationSetNotReusableException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/S3/src/Enum/ChecksumMode.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/S3/src/Enum/ObjectVersionStorageClass.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/S3/src/Enum/OptionalObjectAttributes.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/S3/src/Exception/InvalidWriteOffsetException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/Scheduler/src/Exception/ConflictException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/TimestreamWrite/src/Exception/AccessDeniedException.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/Translate/src/Enum/Profanity.php: -------------------------------------------------------------------------------- 1 | true, 13 | ][$value]); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Service/Translate/src/Exception/InternalServerException.php: -------------------------------------------------------------------------------- 1 | 5 | {{ content|asset|raw }} 6 | 7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /website/template/default.twig: -------------------------------------------------------------------------------- 1 | {% extends 'base.twig' %} 2 | 3 | {% block body %} 4 | 5 | {{ content|asset|raw }} 6 | 7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /website/template/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/aws/8c42c4a3d49f0c90f503511c8a55f82eebcf6728/website/template/favicon.ico -------------------------------------------------------------------------------- /website/template/home.twig: -------------------------------------------------------------------------------- 1 | {% extends 'base.twig' %} 2 | 3 | {% block body %} 4 | 5 | {{ content|asset|raw }} 6 | 7 | {% endblock %} 8 | -------------------------------------------------------------------------------- /website/template/netlify.toml: -------------------------------------------------------------------------------- 1 | [[headers]] 2 | for = "/assets/*" 3 | [headers.values] 4 | # Set infinite cache on assets 5 | cache-control = ''' 6 | max-age=31449600, 7 | immutable''' 8 | -------------------------------------------------------------------------------- /website/template/twig.php: -------------------------------------------------------------------------------- 1 | addExtension(new \Website\AsyncAwsTwigExtension()); 9 | }; 10 | --------------------------------------------------------------------------------