__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Aws;
use GuzzleHttp\Client;
use Psr\Http\Message\RequestInterface;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\Promise\FulfilledPromise;
//-----------------------------------------------------------------------------
// Functional functions
//-----------------------------------------------------------------------------
/**
* Returns a function that always returns the same value;
*
* @param mixed $value Value to return.
*
* @return callable
*/
function constantly($value)
{
return function () use ($value) { return $value; };
}
/**
* Filters values that do not satisfy the predicate function $pred.
*
* @param mixed $iterable Iterable sequence of data.
* @param callable $pred Function that accepts a value and returns true/false
*
* @return \Generator
*/
function filter($iterable, callable $pred)
{
foreach ($iterable as $value) {
if ($pred($value)) {
yield $value;
}
}
}
/**
* Applies a map function $f to each value in a collection.
*
* @param mixed $iterable Iterable sequence of data.
* @param callable $f Map function to apply.
*
* @return \Generator
*/
function map($iterable, callable $f)
{
foreach ($iterable as $value) {
yield $f($value);
}
}
/**
* Creates a generator that iterates over a sequence, then iterates over each
* value in the sequence and yields the application of the map function to each
* value.
*
* @param mixed $iterable Iterable sequence of data.
* @param callable $f Map function to apply.
*
* @return \Generator
*/
function flatmap($iterable, callable $f)
{
foreach (map($iterable, $f) as $outer) {
foreach ($outer as $inner) {
yield $inner;
}
}
}
/**
* Partitions the input sequence into partitions of the specified size.
*
* @param mixed $iterable Iterable sequence of data.
* @param int $size Size to make each partition (except possibly the last chunk)
*
* @return \Generator
*/
function partition($iterable, $size)
{
$buffer = [];
foreach ($iterable as $value) {
$buffer[] = $value;
if (count($buffer) === $size) {
yield $buffer;
$buffer = [];
}
}
if ($buffer) {
yield $buffer;
}
}
/**
* Returns a function that invokes the provided variadic functions one
* after the other until one of the functions returns a non-null value.
* The return function will call each passed function with any arguments it
* is provided.
*
* $a = function ($x, $y) { return null; };
* $b = function ($x, $y) { return $x + $y; };
* $fn = \Aws\or_chain($a, $b);
* echo $fn(1, 2); // 3
*
* @return callable
*/
function or_chain()
{
$fns = func_get_args();
return function () use ($fns) {
$args = func_get_args();
foreach ($fns as $fn) {
$result = $args ? call_user_func_array($fn, $args) : $fn();
if ($result) {
return $result;
}
}
return null;
};
}
//-----------------------------------------------------------------------------
// JSON compiler and loading functions
//-----------------------------------------------------------------------------
/**
* Loads a compiled JSON file from a PHP file.
*
* If the JSON file has not been cached to disk as a PHP file, it will be loaded
* from the JSON source file and returned.
*
* @param string $path Path to the JSON file on disk
*
* @return mixed Returns the JSON decoded data. Note that JSON objects are
* decoded as associative arrays.
*/
function load_compiled_json($path)
{
static $compiledList = [];
$compiledFilepath = "{$path}.php";
if (!isset($compiledList[$compiledFilepath])) {
if (is_readable($compiledFilepath)) {
$compiledList[$compiledFilepath] = include($compiledFilepath);
}
}
if (isset($compiledList[$compiledFilepath])) {
return $compiledList[$compiledFilepath];
}
if (!file_exists($path)) {
throw new \InvalidArgumentException(
sprintf("File not found: %s", $path)
);
}
return json_decode(file_get_contents($path), true);
}
/**
* No-op
*/
function clear_compiled_json()
{
// pass
}
//-----------------------------------------------------------------------------
// Directory iterator functions.
//-----------------------------------------------------------------------------
/**
* Iterates over the files in a directory and works with custom wrappers.
*
* @param string $path Path to open (e.g., "s3://foo/bar").
* @param resource $context Stream wrapper context.
*
* @return \Generator Yields relative filename strings.
*/
function dir_iterator($path, $context = null)
{
$dh = $context ? opendir($path, $context) : opendir($path);
if (!$dh) {
throw new \InvalidArgumentException('File not found: ' . $path);
}
while (($file = readdir($dh)) !== false) {
yield $file;
}
closedir($dh);
}
/**
* Returns a recursive directory iterator that yields absolute filenames.
*
* This iterator is not broken like PHP's built-in DirectoryIterator (which
* will read the first file from a stream wrapper, then rewind, then read
* it again).
*
* @param string $path Path to traverse (e.g., s3://bucket/key, /tmp)
* @param resource $context Stream context options.
*
* @return \Generator Yields absolute filenames.
*/
function recursive_dir_iterator($path, $context = null)
{
$invalid = ['.' => true, '..' => true];
$pathLen = strlen($path) + 1;
$iterator = dir_iterator($path, $context);
$queue = [];
do {
while ($iterator->valid()) {
$file = $iterator->current();
$iterator->next();
if (isset($invalid[basename($file)])) {
continue;
}
$fullPath = "{$path}/{$file}";
yield $fullPath;
if (is_dir($fullPath)) {
$queue[] = $iterator;
$iterator = map(
dir_iterator($fullPath, $context),
function ($file) use ($fullPath, $pathLen) {
return substr("{$fullPath}/{$file}", $pathLen);
}
);
continue;
}
}
$iterator = array_pop($queue);
} while ($iterator);
}
//-----------------------------------------------------------------------------
// Misc. functions.
//-----------------------------------------------------------------------------
/**
* Debug function used to describe the provided value type and class.
*
* @param mixed $input
*
* @return string Returns a string containing the type of the variable and
* if a class is provided, the class name.
*/
function describe_type($input)
{
switch (gettype($input)) {
case 'object':
return 'object(' . get_class($input) . ')';
case 'array':
return 'array(' . count($input) . ')';
default:
ob_start();
var_dump($input);
// normalize float vs double
return str_replace('double(', 'float(', rtrim(ob_get_clean()));
}
}
/**
* Creates a default HTTP handler based on the available clients.
*
* @return callable
*/
function default_http_handler()
{
$version = guzzle_major_version();
// If Guzzle 6 or 7 installed
if ($version === 6 || $version === 7) {
return new \Aws\Handler\GuzzleV6\GuzzleHandler();
}
// If Guzzle 5 installed
if ($version === 5) {
return new \Aws\Handler\GuzzleV5\GuzzleHandler();
}
throw new \RuntimeException('Unknown Guzzle version: ' . $version);
}
/**
* Gets the default user agent string depending on the Guzzle version
*
* @return string
*/
function default_user_agent()
{
$version = guzzle_major_version();
// If Guzzle 6 or 7 installed
if ($version === 6 || $version === 7) {
return \GuzzleHttp\default_user_agent();
}
// If Guzzle 5 installed
if ($version === 5) {
return \GuzzleHttp\Client::getDefaultUserAgent();
}
throw new \RuntimeException('Unknown Guzzle version: ' . $version);
}
/**
* Get the major version of guzzle that is installed.
*
* @internal This function is internal and should not be used outside aws/aws-sdk-php.
* @return int
* @throws \RuntimeException
*/
function guzzle_major_version()
{
static $cache = null;
if (null !== $cache) {
return $cache;
}
if (defined('\GuzzleHttp\ClientInterface::VERSION')) {
$version = (string) ClientInterface::VERSION;
if ($version[0] === '6') {
return $cache = 6;
}
if ($version[0] === '5') {
return $cache = 5;
}
} elseif (defined('\GuzzleHttp\ClientInterface::MAJOR_VERSION')) {
return $cache = ClientInterface::MAJOR_VERSION;
}
throw new \RuntimeException('Unable to determine what Guzzle version is installed.');
}
/**
* Serialize a request for a command but do not send it.
*
* Returns a promise that is fulfilled with the serialized request.
*
* @param CommandInterface $command Command to serialize.
*
* @return RequestInterface
* @throws \RuntimeException
*/
function serialize(CommandInterface $command)
{
$request = null;
$handlerList = $command->getHandlerList();
// Return a mock result.
$handlerList->setHandler(
function (CommandInterface $_, RequestInterface $r) use (&$request) {
$request = $r;
return new FulfilledPromise(new Result([]));
}
);
call_user_func($handlerList->resolve(), $command)->wait();
if (!$request instanceof RequestInterface) {
throw new \RuntimeException(
'Calling handler did not serialize request'
);
}
return $request;
}
/**
* Retrieves data for a service from the SDK's service manifest file.
*
* Manifest data is stored statically, so it does not need to be loaded more
* than once per process. The JSON data is also cached in opcache.
*
* @param string $service Case-insensitive namespace or endpoint prefix of the
* service for which you are retrieving manifest data.
*
* @return array
* @throws \InvalidArgumentException if the service is not supported.
*/
function manifest($service = null)
{
// Load the manifest and create aliases for lowercased namespaces
static $manifest = [];
static $aliases = [];
if (empty($manifest)) {
$manifest = load_compiled_json(__DIR__ . '/data/manifest.json');
foreach ($manifest as $endpoint => $info) {
$alias = strtolower($info['namespace']);
if ($alias !== $endpoint) {
$aliases[$alias] = $endpoint;
}
}
}
// If no service specified, then return the whole manifest.
if ($service === null) {
return $manifest;
}
// Look up the service's info in the manifest data.
$service = strtolower($service);
if (isset($manifest[$service])) {
return $manifest[$service] + ['endpoint' => $service];
}
if (isset($aliases[$service])) {
return manifest($aliases[$service]);
}
throw new \InvalidArgumentException(
"The service \"{$service}\" is not provided by the AWS SDK for PHP."
);
}
/**
* Checks if supplied parameter is a valid hostname
*
* @param string $hostname
* @return bool
*/
function is_valid_hostname($hostname)
{
return (
preg_match("/^([a-z\d](-*[a-z\d])*)(\.([a-z\d](-*[a-z\d])*))*\.?$/i", $hostname)
&& preg_match("/^.{1,253}$/", $hostname)
&& preg_match("/^[^\.]{1,63}(\.[^\.]{0,63})*$/", $hostname)
);
}
/**
* Checks if supplied parameter is a valid host label
*
* @param $label
* @return bool
*/
function is_valid_hostlabel($label)
{
return preg_match("/^(?!-)[a-zA-Z0-9-]{1,63}(?<!-)$/", $label);
}
/**
* Ignores '#' full line comments, which parse_ini_file no longer does
* in PHP 7+.
*
* @param $filename
* @param bool $process_sections
* @param int $scanner_mode
* @return array|bool
*/
function parse_ini_file(
$filename,
$process_sections = false,
$scanner_mode = INI_SCANNER_NORMAL)
{
return parse_ini_string(
preg_replace('/^#.*\\n/m', "", file_get_contents($filename)),
$process_sections,
$scanner_mode
);
}
/**
* Outputs boolean value of input for a select range of possible values,
* null otherwise
*
* @param $input
* @return bool|null
*/
function boolean_value($input)
{
if (is_bool($input)) {
return $input;
}
if ($input === 0) {
return false;
}
if ($input === 1) {
return true;
}
if (is_string($input)) {
switch (strtolower($input)) {
case "true":
case "on":
case "1":
return true;
break;
case "false":
case "off":
case "0":
return false;
break;
}
}
return null;
}
/**
* Parses ini sections with subsections (i.e. the service section)
*
* @param $filename
* @param $filename
* @return array
*/
function parse_ini_section_with_subsections($filename, $section_name) {
$config = [];
$stream = fopen($filename, 'r');
if (!$stream) {
return $config;
}
$current_subsection = '';
while (!feof($stream)) {
$line = trim(fgets($stream));
if (empty($line) || in_array($line[0], [';', '#'])) {
continue;
}
if (preg_match('/^\[.*\]$/', $line)
&& trim($line, '[]') === $section_name)
{
while (!feof($stream)) {
$line = trim(fgets($stream));
if (empty($line) || in_array($line[0], [';', '#'])) {
continue;
}
if (preg_match('/^\[.*\]$/', $line)
&& trim($line, '[]') === $section_name)
{
continue;
} elseif (strpos($line, '[') === 0) {
break;
}
if (strpos($line, ' = ') !== false) {
list($key, $value) = explode(' = ', $line, 2);
if (empty($current_subsection)) {
$config[$key] = $value;
} else {
$config[$current_subsection][$key] = $value;
}
} else {
$current_subsection = trim(str_replace('=', '', $line));
$config[$current_subsection] = [];
}
}
}
}
fclose($stream);
return $config;
}
/**
* Checks if an input is a valid epoch time
*
* @param $input
* @return bool
*/
function is_valid_epoch($input)
{
if (is_string($input) || is_numeric($input)) {
if (is_string($input) && !preg_match("/^-?[0-9]+\.?[0-9]*$/", $input)) {
return false;
}
return true;
}
return false;
}
/**
* Checks if an input is a fips pseudo region
*
* @param $region
* @return bool
*/
function is_fips_pseudo_region($region)
{
return strpos($region, 'fips-') !== false || strpos($region, '-fips') !== false;
}
/**
* Returns a region without a fips label
*
* @param $region
* @return string
*/
function strip_fips_pseudo_regions($region)
{
return str_replace(['fips-', '-fips'], ['', ''], $region);
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ACMPCA | Folder | 0777 |
|
|
| ARCZonalShift | Folder | 0777 |
|
|
| AccessAnalyzer | Folder | 0777 |
|
|
| Account | Folder | 0777 |
|
|
| Acm | Folder | 0777 |
|
|
| Amplify | Folder | 0777 |
|
|
| AmplifyBackend | Folder | 0777 |
|
|
| AmplifyUIBuilder | Folder | 0777 |
|
|
| Api | Folder | 0777 |
|
|
| ApiGateway | Folder | 0777 |
|
|
| ApiGatewayManagementApi | Folder | 0777 |
|
|
| ApiGatewayV2 | Folder | 0777 |
|
|
| AppConfig | Folder | 0777 |
|
|
| AppConfigData | Folder | 0777 |
|
|
| AppFabric | Folder | 0777 |
|
|
| AppIntegrationsService | Folder | 0777 |
|
|
| AppMesh | Folder | 0777 |
|
|
| AppRegistry | Folder | 0777 |
|
|
| AppRunner | Folder | 0777 |
|
|
| AppSync | Folder | 0777 |
|
|
| AppTest | Folder | 0777 |
|
|
| Appflow | Folder | 0777 |
|
|
| ApplicationAutoScaling | Folder | 0777 |
|
|
| ApplicationCostProfiler | Folder | 0777 |
|
|
| ApplicationDiscoveryService | Folder | 0777 |
|
|
| ApplicationInsights | Folder | 0777 |
|
|
| ApplicationSignals | Folder | 0777 |
|
|
| Appstream | Folder | 0777 |
|
|
| Arn | Folder | 0777 |
|
|
| Artifact | Folder | 0777 |
|
|
| Athena | Folder | 0777 |
|
|
| AuditManager | Folder | 0777 |
|
|
| AugmentedAIRuntime | Folder | 0777 |
|
|
| Auth | Folder | 0777 |
|
|
| AutoScaling | Folder | 0777 |
|
|
| AutoScalingPlans | Folder | 0777 |
|
|
| B2bi | Folder | 0777 |
|
|
| BCMDataExports | Folder | 0777 |
|
|
| Backup | Folder | 0777 |
|
|
| BackupGateway | Folder | 0777 |
|
|
| Batch | Folder | 0777 |
|
|
| Bedrock | Folder | 0777 |
|
|
| BedrockAgent | Folder | 0777 |
|
|
| BedrockAgentRuntime | Folder | 0777 |
|
|
| BedrockRuntime | Folder | 0777 |
|
|
| BillingConductor | Folder | 0777 |
|
|
| Braket | Folder | 0777 |
|
|
| Budgets | Folder | 0777 |
|
|
| Chatbot | Folder | 0777 |
|
|
| Chime | Folder | 0777 |
|
|
| ChimeSDKIdentity | Folder | 0777 |
|
|
| ChimeSDKMediaPipelines | Folder | 0777 |
|
|
| ChimeSDKMeetings | Folder | 0777 |
|
|
| ChimeSDKMessaging | Folder | 0777 |
|
|
| ChimeSDKVoice | Folder | 0777 |
|
|
| CleanRooms | Folder | 0777 |
|
|
| CleanRoomsML | Folder | 0777 |
|
|
| ClientSideMonitoring | Folder | 0777 |
|
|
| Cloud9 | Folder | 0777 |
|
|
| CloudControlApi | Folder | 0777 |
|
|
| CloudDirectory | Folder | 0777 |
|
|
| CloudFormation | Folder | 0777 |
|
|
| CloudFront | Folder | 0777 |
|
|
| CloudFrontKeyValueStore | Folder | 0777 |
|
|
| CloudHSMV2 | Folder | 0777 |
|
|
| CloudHsm | Folder | 0777 |
|
|
| CloudSearch | Folder | 0777 |
|
|
| CloudSearchDomain | Folder | 0777 |
|
|
| CloudTrail | Folder | 0777 |
|
|
| CloudTrailData | Folder | 0777 |
|
|
| CloudWatch | Folder | 0777 |
|
|
| CloudWatchEvents | Folder | 0777 |
|
|
| CloudWatchEvidently | Folder | 0777 |
|
|
| CloudWatchLogs | Folder | 0777 |
|
|
| CloudWatchRUM | Folder | 0777 |
|
|
| CodeArtifact | Folder | 0777 |
|
|
| CodeBuild | Folder | 0777 |
|
|
| CodeCatalyst | Folder | 0777 |
|
|
| CodeCommit | Folder | 0777 |
|
|
| CodeConnections | Folder | 0777 |
|
|
| CodeDeploy | Folder | 0777 |
|
|
| CodeGuruProfiler | Folder | 0777 |
|
|
| CodeGuruReviewer | Folder | 0777 |
|
|
| CodeGuruSecurity | Folder | 0777 |
|
|
| CodePipeline | Folder | 0777 |
|
|
| CodeStar | Folder | 0777 |
|
|
| CodeStarNotifications | Folder | 0777 |
|
|
| CodeStarconnections | Folder | 0777 |
|
|
| CognitoIdentity | Folder | 0777 |
|
|
| CognitoIdentityProvider | Folder | 0777 |
|
|
| CognitoSync | Folder | 0777 |
|
|
| Comprehend | Folder | 0777 |
|
|
| ComprehendMedical | Folder | 0777 |
|
|
| ComputeOptimizer | Folder | 0777 |
|
|
| ConfigService | Folder | 0777 |
|
|
| Configuration | Folder | 0777 |
|
|
| Connect | Folder | 0777 |
|
|
| ConnectCampaignService | Folder | 0777 |
|
|
| ConnectCases | Folder | 0777 |
|
|
| ConnectContactLens | Folder | 0777 |
|
|
| ConnectParticipant | Folder | 0777 |
|
|
| ConnectWisdomService | Folder | 0777 |
|
|
| ControlCatalog | Folder | 0777 |
|
|
| ControlTower | Folder | 0777 |
|
|
| CostExplorer | Folder | 0777 |
|
|
| CostOptimizationHub | Folder | 0777 |
|
|
| CostandUsageReportService | Folder | 0777 |
|
|
| Credentials | Folder | 0777 |
|
|
| Crypto | Folder | 0777 |
|
|
| CustomerProfiles | Folder | 0777 |
|
|
| DAX | Folder | 0777 |
|
|
| DLM | Folder | 0777 |
|
|
| DataExchange | Folder | 0777 |
|
|
| DataPipeline | Folder | 0777 |
|
|
| DataSync | Folder | 0777 |
|
|
| DataZone | Folder | 0777 |
|
|
| DatabaseMigrationService | Folder | 0777 |
|
|
| Deadline | Folder | 0777 |
|
|
| DefaultsMode | Folder | 0777 |
|
|
| Detective | Folder | 0777 |
|
|
| DevOpsGuru | Folder | 0777 |
|
|
| DeviceFarm | Folder | 0777 |
|
|
| DirectConnect | Folder | 0777 |
|
|
| DirectoryService | Folder | 0777 |
|
|
| DocDB | Folder | 0777 |
|
|
| DocDBElastic | Folder | 0777 |
|
|
| DynamoDb | Folder | 0777 |
|
|
| DynamoDbStreams | Folder | 0777 |
|
|
| EBS | Folder | 0777 |
|
|
| EC2InstanceConnect | Folder | 0777 |
|
|
| ECRPublic | Folder | 0777 |
|
|
| EKS | Folder | 0777 |
|
|
| EKSAuth | Folder | 0777 |
|
|
| EMRContainers | Folder | 0777 |
|
|
| EMRServerless | Folder | 0777 |
|
|
| Ec2 | Folder | 0777 |
|
|
| Ecr | Folder | 0777 |
|
|
| Ecs | Folder | 0777 |
|
|
| Efs | Folder | 0777 |
|
|
| ElastiCache | Folder | 0777 |
|
|
| ElasticBeanstalk | Folder | 0777 |
|
|
| ElasticInference | Folder | 0777 |
|
|
| ElasticLoadBalancing | Folder | 0777 |
|
|
| ElasticLoadBalancingV2 | Folder | 0777 |
|
|
| ElasticTranscoder | Folder | 0777 |
|
|
| ElasticsearchService | Folder | 0777 |
|
|
| Emr | Folder | 0777 |
|
|
| Endpoint | Folder | 0777 |
|
|
| EndpointDiscovery | Folder | 0777 |
|
|
| EndpointV2 | Folder | 0777 |
|
|
| EntityResolution | Folder | 0777 |
|
|
| EventBridge | Folder | 0777 |
|
|
| Exception | Folder | 0777 |
|
|
| FIS | Folder | 0777 |
|
|
| FMS | Folder | 0777 |
|
|
| FSx | Folder | 0777 |
|
|
| FinSpaceData | Folder | 0777 |
|
|
| Firehose | Folder | 0777 |
|
|
| ForecastQueryService | Folder | 0777 |
|
|
| ForecastService | Folder | 0777 |
|
|
| FraudDetector | Folder | 0777 |
|
|
| FreeTier | Folder | 0777 |
|
|
| GameLift | Folder | 0777 |
|
|
| Glacier | Folder | 0777 |
|
|
| GlobalAccelerator | Folder | 0777 |
|
|
| Glue | Folder | 0777 |
|
|
| GlueDataBrew | Folder | 0777 |
|
|
| Greengrass | Folder | 0777 |
|
|
| GreengrassV2 | Folder | 0777 |
|
|
| GroundStation | Folder | 0777 |
|
|
| GuardDuty | Folder | 0777 |
|
|
| Handler | Folder | 0777 |
|
|
| Health | Folder | 0777 |
|
|
| HealthLake | Folder | 0777 |
|
|
| IVS | Folder | 0777 |
|
|
| IVSRealTime | Folder | 0777 |
|
|
| Iam | Folder | 0777 |
|
|
| Identity | Folder | 0777 |
|
|
| IdentityStore | Folder | 0777 |
|
|
| ImportExport | Folder | 0777 |
|
|
| Inspector | Folder | 0777 |
|
|
| Inspector2 | Folder | 0777 |
|
|
| InspectorScan | Folder | 0777 |
|
|
| InternetMonitor | Folder | 0777 |
|
|
| IoT1ClickDevicesService | Folder | 0777 |
|
|
| IoT1ClickProjects | Folder | 0777 |
|
|
| IoTAnalytics | Folder | 0777 |
|
|
| IoTDeviceAdvisor | Folder | 0777 |
|
|
| IoTEvents | Folder | 0777 |
|
|
| IoTEventsData | Folder | 0777 |
|
|
| IoTFleetHub | Folder | 0777 |
|
|
| IoTFleetWise | Folder | 0777 |
|
|
| IoTJobsDataPlane | Folder | 0777 |
|
|
| IoTSecureTunneling | Folder | 0777 |
|
|
| IoTSiteWise | Folder | 0777 |
|
|
| IoTThingsGraph | Folder | 0777 |
|
|
| IoTTwinMaker | Folder | 0777 |
|
|
| IoTWireless | Folder | 0777 |
|
|
| Iot | Folder | 0777 |
|
|
| IotDataPlane | Folder | 0777 |
|
|
| Kafka | Folder | 0777 |
|
|
| KafkaConnect | Folder | 0777 |
|
|
| KendraRanking | Folder | 0777 |
|
|
| Keyspaces | Folder | 0777 |
|
|
| Kinesis | Folder | 0777 |
|
|
| KinesisAnalytics | Folder | 0777 |
|
|
| KinesisAnalyticsV2 | Folder | 0777 |
|
|
| KinesisVideo | Folder | 0777 |
|
|
| KinesisVideoArchivedMedia | Folder | 0777 |
|
|
| KinesisVideoMedia | Folder | 0777 |
|
|
| KinesisVideoSignalingChannels | Folder | 0777 |
|
|
| KinesisVideoWebRTCStorage | Folder | 0777 |
|
|
| Kms | Folder | 0777 |
|
|
| LakeFormation | Folder | 0777 |
|
|
| Lambda | Folder | 0777 |
|
|
| LaunchWizard | Folder | 0777 |
|
|
| LexModelBuildingService | Folder | 0777 |
|
|
| LexModelsV2 | Folder | 0777 |
|
|
| LexRuntimeService | Folder | 0777 |
|
|
| LexRuntimeV2 | Folder | 0777 |
|
|
| LicenseManager | Folder | 0777 |
|
|
| LicenseManagerLinuxSubscriptions | Folder | 0777 |
|
|
| LicenseManagerUserSubscriptions | Folder | 0777 |
|
|
| Lightsail | Folder | 0777 |
|
|
| LocationService | Folder | 0777 |
|
|
| LookoutEquipment | Folder | 0777 |
|
|
| LookoutMetrics | Folder | 0777 |
|
|
| LookoutforVision | Folder | 0777 |
|
|
| MQ | Folder | 0777 |
|
|
| MTurk | Folder | 0777 |
|
|
| MWAA | Folder | 0777 |
|
|
| MachineLearning | Folder | 0777 |
|
|
| Macie2 | Folder | 0777 |
|
|
| MailManager | Folder | 0777 |
|
|
| MainframeModernization | Folder | 0777 |
|
|
| ManagedBlockchain | Folder | 0777 |
|
|
| ManagedBlockchainQuery | Folder | 0777 |
|
|
| ManagedGrafana | Folder | 0777 |
|
|
| MarketplaceAgreement | Folder | 0777 |
|
|
| MarketplaceCatalog | Folder | 0777 |
|
|
| MarketplaceCommerceAnalytics | Folder | 0777 |
|
|
| MarketplaceDeployment | Folder | 0777 |
|
|
| MarketplaceEntitlementService | Folder | 0777 |
|
|
| MarketplaceMetering | Folder | 0777 |
|
|
| MediaConnect | Folder | 0777 |
|
|
| MediaConvert | Folder | 0777 |
|
|
| MediaLive | Folder | 0777 |
|
|
| MediaPackage | Folder | 0777 |
|
|
| MediaPackageV2 | Folder | 0777 |
|
|
| MediaPackageVod | Folder | 0777 |
|
|
| MediaStore | Folder | 0777 |
|
|
| MediaStoreData | Folder | 0777 |
|
|
| MediaTailor | Folder | 0777 |
|
|
| MedicalImaging | Folder | 0777 |
|
|
| MemoryDB | Folder | 0777 |
|
|
| MigrationHub | Folder | 0777 |
|
|
| MigrationHubConfig | Folder | 0777 |
|
|
| MigrationHubOrchestrator | Folder | 0777 |
|
|
| MigrationHubRefactorSpaces | Folder | 0777 |
|
|
| MigrationHubStrategyRecommendations | Folder | 0777 |
|
|
| Multipart | Folder | 0777 |
|
|
| Neptune | Folder | 0777 |
|
|
| NeptuneGraph | Folder | 0777 |
|
|
| Neptunedata | Folder | 0777 |
|
|
| NetworkFirewall | Folder | 0777 |
|
|
| NetworkManager | Folder | 0777 |
|
|
| NetworkMonitor | Folder | 0777 |
|
|
| NimbleStudio | Folder | 0777 |
|
|
| OAM | Folder | 0777 |
|
|
| OSIS | Folder | 0777 |
|
|
| Omics | Folder | 0777 |
|
|
| OpenSearchServerless | Folder | 0777 |
|
|
| OpenSearchService | Folder | 0777 |
|
|
| OpsWorks | Folder | 0777 |
|
|
| OpsWorksCM | Folder | 0777 |
|
|
| Organizations | Folder | 0777 |
|
|
| Outposts | Folder | 0777 |
|
|
| PI | Folder | 0777 |
|
|
| Panorama | Folder | 0777 |
|
|
| PaymentCryptography | Folder | 0777 |
|
|
| PaymentCryptographyData | Folder | 0777 |
|
|
| PcaConnectorAd | Folder | 0777 |
|
|
| PcaConnectorScep | Folder | 0777 |
|
|
| Personalize | Folder | 0777 |
|
|
| PersonalizeEvents | Folder | 0777 |
|
|
| PersonalizeRuntime | Folder | 0777 |
|
|
| Pinpoint | Folder | 0777 |
|
|
| PinpointEmail | Folder | 0777 |
|
|
| PinpointSMSVoice | Folder | 0777 |
|
|
| PinpointSMSVoiceV2 | Folder | 0777 |
|
|
| Pipes | Folder | 0777 |
|
|
| Polly | Folder | 0777 |
|
|
| Pricing | Folder | 0777 |
|
|
| PrivateNetworks | Folder | 0777 |
|
|
| PrometheusService | Folder | 0777 |
|
|
| Proton | Folder | 0777 |
|
|
| QApps | Folder | 0777 |
|
|
| QBusiness | Folder | 0777 |
|
|
| QConnect | Folder | 0777 |
|
|
| QLDB | Folder | 0777 |
|
|
| QLDBSession | Folder | 0777 |
|
|
| QuickSight | Folder | 0777 |
|
|
| RAM | Folder | 0777 |
|
|
| RDSDataService | Folder | 0777 |
|
|
| Rds | Folder | 0777 |
|
|
| RecycleBin | Folder | 0777 |
|
|
| Redshift | Folder | 0777 |
|
|
| RedshiftDataAPIService | Folder | 0777 |
|
|
| RedshiftServerless | Folder | 0777 |
|
|
| Rekognition | Folder | 0777 |
|
|
| Repostspace | Folder | 0777 |
|
|
| ResilienceHub | Folder | 0777 |
|
|
| ResourceExplorer2 | Folder | 0777 |
|
|
| ResourceGroups | Folder | 0777 |
|
|
| ResourceGroupsTaggingAPI | Folder | 0777 |
|
|
| Retry | Folder | 0777 |
|
|
| RoboMaker | Folder | 0777 |
|
|
| RolesAnywhere | Folder | 0777 |
|
|
| Route53 | Folder | 0777 |
|
|
| Route53Domains | Folder | 0777 |
|
|
| Route53Profiles | Folder | 0777 |
|
|
| Route53RecoveryCluster | Folder | 0777 |
|
|
| Route53RecoveryControlConfig | Folder | 0777 |
|
|
| Route53RecoveryReadiness | Folder | 0777 |
|
|
| Route53Resolver | Folder | 0777 |
|
|
| S3 | Folder | 0777 |
|
|
| S3Control | Folder | 0777 |
|
|
| S3Outposts | Folder | 0777 |
|
|
| SSMContacts | Folder | 0777 |
|
|
| SSMIncidents | Folder | 0777 |
|
|
| SSMQuickSetup | Folder | 0777 |
|
|
| SSO | Folder | 0777 |
|
|
| SSOAdmin | Folder | 0777 |
|
|
| SSOOIDC | Folder | 0777 |
|
|
| SageMaker | Folder | 0777 |
|
|
| SageMakerFeatureStoreRuntime | Folder | 0777 |
|
|
| SageMakerGeospatial | Folder | 0777 |
|
|
| SageMakerMetrics | Folder | 0777 |
|
|
| SageMakerRuntime | Folder | 0777 |
|
|
| SagemakerEdgeManager | Folder | 0777 |
|
|
| SavingsPlans | Folder | 0777 |
|
|
| Scheduler | Folder | 0777 |
|
|
| Schemas | Folder | 0777 |
|
|
| Script | Folder | 0777 |
|
|
| SecretsManager | Folder | 0777 |
|
|
| SecurityHub | Folder | 0777 |
|
|
| SecurityLake | Folder | 0777 |
|
|
| ServerlessApplicationRepository | Folder | 0777 |
|
|
| ServiceCatalog | Folder | 0777 |
|
|
| ServiceDiscovery | Folder | 0777 |
|
|
| ServiceQuotas | Folder | 0777 |
|
|
| Ses | Folder | 0777 |
|
|
| SesV2 | Folder | 0777 |
|
|
| Sfn | Folder | 0777 |
|
|
| Shield | Folder | 0777 |
|
|
| Signature | Folder | 0777 |
|
|
| SimSpaceWeaver | Folder | 0777 |
|
|
| Sms | Folder | 0777 |
|
|
| SnowBall | Folder | 0777 |
|
|
| SnowDeviceManagement | Folder | 0777 |
|
|
| Sns | Folder | 0777 |
|
|
| Sqs | Folder | 0777 |
|
|
| Ssm | Folder | 0777 |
|
|
| SsmSap | Folder | 0777 |
|
|
| StorageGateway | Folder | 0777 |
|
|
| Sts | Folder | 0777 |
|
|
| SupplyChain | Folder | 0777 |
|
|
| Support | Folder | 0777 |
|
|
| SupportApp | Folder | 0777 |
|
|
| Swf | Folder | 0777 |
|
|
| Synthetics | Folder | 0777 |
|
|
| TaxSettings | Folder | 0777 |
|
|
| Textract | Folder | 0777 |
|
|
| TimestreamInfluxDB | Folder | 0777 |
|
|
| TimestreamQuery | Folder | 0777 |
|
|
| TimestreamWrite | Folder | 0777 |
|
|
| Tnb | Folder | 0777 |
|
|
| Token | Folder | 0777 |
|
|
| TranscribeService | Folder | 0777 |
|
|
| Transfer | Folder | 0777 |
|
|
| Translate | Folder | 0777 |
|
|
| TrustedAdvisor | Folder | 0777 |
|
|
| VPCLattice | Folder | 0777 |
|
|
| VerifiedPermissions | Folder | 0777 |
|
|
| VoiceID | Folder | 0777 |
|
|
| WAFV2 | Folder | 0777 |
|
|
| Waf | Folder | 0777 |
|
|
| WafRegional | Folder | 0777 |
|
|
| WellArchitected | Folder | 0777 |
|
|
| WorkDocs | Folder | 0777 |
|
|
| WorkLink | Folder | 0777 |
|
|
| WorkMail | Folder | 0777 |
|
|
| WorkMailMessageFlow | Folder | 0777 |
|
|
| WorkSpaces | Folder | 0777 |
|
|
| WorkSpacesThinClient | Folder | 0777 |
|
|
| WorkSpacesWeb | Folder | 0777 |
|
|
| XRay | Folder | 0777 |
|
|
| data | Folder | 0777 |
|
|
| drs | Folder | 0777 |
|
|
| finspace | Folder | 0777 |
|
|
| imagebuilder | Folder | 0777 |
|
|
| ivschat | Folder | 0777 |
|
|
| kendra | Folder | 0777 |
|
|
| mgn | Folder | 0777 |
|
|
| signer | Folder | 0777 |
|
|
| AbstractConfigurationProvider.php | File | 4.46 KB | 0777 |
|
| AwsClient.php | File | 27.96 KB | 0777 |
|
| AwsClientInterface.php | File | 5.4 KB | 0777 |
|
| AwsClientTrait.php | File | 2.67 KB | 0777 |
|
| CacheInterface.php | File | 755 B | 0777 |
|
| ClientResolver.php | File | 56.45 KB | 0777 |
|
| Command.php | File | 2.96 KB | 0777 |
|
| CommandInterface.php | File | 946 B | 0777 |
|
| CommandPool.php | File | 5.23 KB | 0777 |
|
| ConfigurationProviderInterface.php | File | 246 B | 0777 |
|
| DoctrineCacheAdapter.php | File | 989 B | 0777 |
|
| EndpointParameterMiddleware.php | File | 2.73 KB | 0777 |
|
| HandlerList.php | File | 13.24 KB | 0777 |
|
| HasDataTrait.php | File | 1.46 KB | 0777 |
|
| HasMonitoringEventsTrait.php | File | 869 B | 0777 |
|
| HashInterface.php | File | 531 B | 0777 |
|
| HashingStream.php | File | 1.55 KB | 0777 |
|
| History.php | File | 3.9 KB | 0777 |
|
| IdempotencyTokenMiddleware.php | File | 3.69 KB | 0777 |
|
| InputValidationMiddleware.php | File | 2.44 KB | 0777 |
|
| JsonCompiler.php | File | 478 B | 0777 |
|
| LruArrayCache.php | File | 2.22 KB | 0777 |
|
| Middleware.php | File | 15.62 KB | 0777 |
|
| MockHandler.php | File | 4.09 KB | 0777 |
|
| MonitoringEventsInterface.php | File | 742 B | 0777 |
|
| MultiRegionClient.php | File | 8.79 KB | 0777 |
|
| PhpHash.php | File | 1.81 KB | 0777 |
|
| PresignUrlMiddleware.php | File | 4.53 KB | 0777 |
|
| Psr16CacheAdapter.php | File | 572 B | 0777 |
|
| PsrCacheAdapter.php | File | 742 B | 0777 |
|
| QueryCompatibleInputMiddleware.php | File | 5.81 KB | 0777 |
|
| RequestCompressionMiddleware.php | File | 4.81 KB | 0777 |
|
| ResponseContainerInterface.php | File | 246 B | 0777 |
|
| Result.php | File | 1.14 KB | 0777 |
|
| ResultInterface.php | File | 1.34 KB | 0777 |
|
| ResultPaginator.php | File | 5.87 KB | 0777 |
|
| RetryMiddleware.php | File | 8.47 KB | 0777 |
|
| RetryMiddlewareV2.php | File | 11.67 KB | 0777 |
|
| Sdk.php | File | 66.76 KB | 0777 |
|
| StreamRequestPayloadMiddleware.php | File | 2.57 KB | 0777 |
|
| TraceMiddleware.php | File | 12.36 KB | 0777 |
|
| Waiter.php | File | 8.42 KB | 0777 |
|
| WrappedHttpHandler.php | File | 6.99 KB | 0777 |
|
| functions.php | File | 15.21 KB | 0777 |
|