__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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 Aws\EndpointDiscovery\Configuration;
use Closure;
use Psr\Http\Message\RequestInterface;
/**
* Builds and injects the user agent header values.
* This middleware must be appended into step where all the
* metrics to be gathered are already resolved. As of now it should be
* after the signing step.
*/
class UserAgentMiddleware
{
const AGENT_VERSION = 2.1;
static $userAgentFnList = [
'getSdkVersion',
'getUserAgentVersion',
'getHhvmVersion',
'getOsName',
'getLangVersion',
'getExecEnv',
'getEndpointDiscovery',
'getAppId',
'getMetrics'
];
/** @var callable */
private $nextHandler;
/** @var array */
private $args;
/** @var MetricsBuilder */
private $metricsBuilder;
/**
* Returns a middleware wrapper function.
*
* @param array $args
*
* @return Closure
*/
public static function wrap(
array $args
) : Closure
{
return function (callable $handler) use ($args) {
return new self($handler, $args);
};
}
/**
* @param callable $nextHandler
* @param array $args
*/
public function __construct(callable $nextHandler, array $args=[])
{
$this->nextHandler = $nextHandler;
$this->args = $args;
}
/**
* When invoked, its injects the user agent header into the
* request headers.
*
* @param CommandInterface $command
* @param RequestInterface $request
*
* @return mixed
*/
public function __invoke(CommandInterface $command, RequestInterface $request)
{
$handler = $this->nextHandler;
$this->metricsBuilder = MetricsBuilder::fromCommand($command);
$request = $this->requestWithUserAgentHeader($request);
return $handler($command, $request);
}
/**
* Builds the user agent header value, and injects it into the request
* headers. Then, it returns the mutated request.
*
* @param RequestInterface $request
*
* @return RequestInterface
*/
private function requestWithUserAgentHeader(RequestInterface $request): RequestInterface
{
$uaAppend = $this->args['ua_append'] ?? [];
$userAgentValue = array_merge(
$this->buildUserAgentValue(),
$uaAppend
);
// It includes the user agent values just for the User-Agent header.
// The reason is that the SEP does not mention appending the
// metrics into the X-Amz-User-Agent header.
return $request->withHeader(
'User-Agent',
implode(' ', array_merge(
$userAgentValue,
$request->getHeader('User-Agent')
))
);
}
/**
* Builds the different user agent values.
*
* @return array
*/
private function buildUserAgentValue(): array
{
$userAgentValue = [];
foreach (self::$userAgentFnList as $fn) {
$val = $this->{$fn}();
if (!empty($val)) {
$userAgentValue[] = $val;
}
}
return $userAgentValue;
}
/**
* Returns the user agent value for SDK version.
*
* @return string
*/
private function getSdkVersion(): string
{
return 'aws-sdk-php/' . Sdk::VERSION;
}
/**
* Returns the user agent value for the agent version.
*
* @return string
*/
private function getUserAgentVersion(): string
{
return 'ua/' . self::AGENT_VERSION;
}
/**
* Returns the user agent value for the hhvm version, but just
* when it is defined.
*
* @return string
*/
private function getHhvmVersion(): string
{
if (defined('HHVM_VERSION')) {
return 'HHVM/' . HHVM_VERSION;
}
return "";
}
/**
* Returns the user agent value for the os version.
*
* @return string
*/
private function getOsName(): string
{
$disabledFunctions = explode(',', ini_get('disable_functions'));
if (function_exists('php_uname')
&& !in_array('php_uname', $disabledFunctions, true)
) {
$osName = "OS/" . php_uname('s') . '#' . php_uname('r');
if (!empty($osName)) {
return $osName;
}
}
return "";
}
/**
* Returns the user agent value for the php language used.
*
* @return string
*/
private function getLangVersion(): string
{
return 'lang/php#' . phpversion();
}
/**
* Returns the user agent value for the execution env.
*
* @return string
*/
private function getExecEnv(): string
{
if ($executionEnvironment = getenv('AWS_EXECUTION_ENV')) {
return $executionEnvironment;
}
return "";
}
/**
* Returns the user agent value for endpoint discovery as cfg.
* This feature is deprecated.
*
* @return string
*/
private function getEndpointDiscovery(): string
{
$args = $this->args;
if (isset($args['endpoint_discovery'])) {
if (($args['endpoint_discovery'] instanceof Configuration
&& $args['endpoint_discovery']->isEnabled())
) {
return 'cfg/endpoint-discovery';
} elseif (is_array($args['endpoint_discovery'])
&& isset($args['endpoint_discovery']['enabled'])
&& $args['endpoint_discovery']['enabled']
) {
return 'cfg/endpoint-discovery';
}
}
return "";
}
/**
* Returns the user agent value for app id, but just when an
* app id was provided as a client argument.
*
* @return string
*/
private function getAppId(): string
{
if (empty($this->args['app_id'])) {
return "";
}
return 'app/' . $this->args['app_id'];
}
/**
* Returns the user agent value for metrics.
*
* @return string
*/
private function getMetrics(): string
{
// Resolve first metrics related to client arguments.
$this->metricsBuilder->resolveAndAppendFromArgs($this->args);
// Build the metrics.
$metricsEncoded = $this->metricsBuilder->build();
if (empty($metricsEncoded)) {
return "";
}
return "m/" . $metricsEncoded;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ACMPCA | Folder | 0755 |
|
|
| ARCZonalShift | Folder | 0755 |
|
|
| AccessAnalyzer | Folder | 0755 |
|
|
| Account | Folder | 0755 |
|
|
| Acm | Folder | 0755 |
|
|
| Amplify | Folder | 0755 |
|
|
| AmplifyBackend | Folder | 0755 |
|
|
| AmplifyUIBuilder | Folder | 0755 |
|
|
| Api | Folder | 0755 |
|
|
| ApiGateway | Folder | 0755 |
|
|
| ApiGatewayManagementApi | Folder | 0755 |
|
|
| ApiGatewayV2 | Folder | 0755 |
|
|
| AppConfig | Folder | 0755 |
|
|
| AppConfigData | Folder | 0755 |
|
|
| AppFabric | Folder | 0755 |
|
|
| AppIntegrationsService | Folder | 0755 |
|
|
| AppMesh | Folder | 0755 |
|
|
| AppRegistry | Folder | 0755 |
|
|
| AppRunner | Folder | 0755 |
|
|
| AppSync | Folder | 0755 |
|
|
| AppTest | Folder | 0755 |
|
|
| Appflow | Folder | 0755 |
|
|
| ApplicationAutoScaling | Folder | 0755 |
|
|
| ApplicationCostProfiler | Folder | 0755 |
|
|
| ApplicationDiscoveryService | Folder | 0755 |
|
|
| ApplicationInsights | Folder | 0755 |
|
|
| ApplicationSignals | Folder | 0755 |
|
|
| Appstream | Folder | 0755 |
|
|
| Arn | Folder | 0755 |
|
|
| Artifact | Folder | 0755 |
|
|
| Athena | Folder | 0755 |
|
|
| AuditManager | Folder | 0755 |
|
|
| AugmentedAIRuntime | Folder | 0755 |
|
|
| Auth | Folder | 0755 |
|
|
| AutoScaling | Folder | 0755 |
|
|
| AutoScalingPlans | Folder | 0755 |
|
|
| B2bi | Folder | 0755 |
|
|
| BCMDataExports | Folder | 0755 |
|
|
| BCMPricingCalculator | Folder | 0755 |
|
|
| Backup | Folder | 0755 |
|
|
| BackupGateway | Folder | 0755 |
|
|
| BackupSearch | Folder | 0755 |
|
|
| Batch | Folder | 0755 |
|
|
| Bedrock | Folder | 0755 |
|
|
| BedrockAgent | Folder | 0755 |
|
|
| BedrockAgentRuntime | Folder | 0755 |
|
|
| BedrockDataAutomation | Folder | 0755 |
|
|
| BedrockDataAutomationRuntime | Folder | 0755 |
|
|
| BedrockRuntime | Folder | 0755 |
|
|
| Billing | Folder | 0755 |
|
|
| BillingConductor | Folder | 0755 |
|
|
| Braket | Folder | 0755 |
|
|
| Budgets | Folder | 0755 |
|
|
| Chatbot | Folder | 0755 |
|
|
| Chime | Folder | 0755 |
|
|
| ChimeSDKIdentity | Folder | 0755 |
|
|
| ChimeSDKMediaPipelines | Folder | 0755 |
|
|
| ChimeSDKMeetings | Folder | 0755 |
|
|
| ChimeSDKMessaging | Folder | 0755 |
|
|
| ChimeSDKVoice | Folder | 0755 |
|
|
| CleanRooms | Folder | 0755 |
|
|
| CleanRoomsML | Folder | 0755 |
|
|
| ClientSideMonitoring | Folder | 0755 |
|
|
| Cloud9 | Folder | 0755 |
|
|
| CloudControlApi | Folder | 0755 |
|
|
| CloudDirectory | Folder | 0755 |
|
|
| CloudFormation | Folder | 0755 |
|
|
| CloudFront | Folder | 0755 |
|
|
| CloudFrontKeyValueStore | Folder | 0755 |
|
|
| CloudHSMV2 | Folder | 0755 |
|
|
| CloudHsm | Folder | 0755 |
|
|
| CloudSearch | Folder | 0755 |
|
|
| CloudSearchDomain | Folder | 0755 |
|
|
| CloudTrail | Folder | 0755 |
|
|
| CloudTrailData | Folder | 0755 |
|
|
| CloudWatch | Folder | 0755 |
|
|
| CloudWatchEvents | Folder | 0755 |
|
|
| CloudWatchEvidently | Folder | 0755 |
|
|
| CloudWatchLogs | Folder | 0755 |
|
|
| CloudWatchRUM | Folder | 0755 |
|
|
| CodeArtifact | Folder | 0755 |
|
|
| CodeBuild | Folder | 0755 |
|
|
| CodeCatalyst | Folder | 0755 |
|
|
| CodeCommit | Folder | 0755 |
|
|
| CodeConnections | Folder | 0755 |
|
|
| CodeDeploy | Folder | 0755 |
|
|
| CodeGuruProfiler | Folder | 0755 |
|
|
| CodeGuruReviewer | Folder | 0755 |
|
|
| CodeGuruSecurity | Folder | 0755 |
|
|
| CodePipeline | Folder | 0755 |
|
|
| CodeStarNotifications | Folder | 0755 |
|
|
| CodeStarconnections | Folder | 0755 |
|
|
| CognitoIdentity | Folder | 0755 |
|
|
| CognitoIdentityProvider | Folder | 0755 |
|
|
| CognitoSync | Folder | 0755 |
|
|
| Comprehend | Folder | 0755 |
|
|
| ComprehendMedical | Folder | 0755 |
|
|
| ComputeOptimizer | Folder | 0755 |
|
|
| ConfigService | Folder | 0755 |
|
|
| Configuration | Folder | 0755 |
|
|
| Connect | Folder | 0755 |
|
|
| ConnectCampaignService | Folder | 0755 |
|
|
| ConnectCampaignsV2 | Folder | 0755 |
|
|
| ConnectCases | Folder | 0755 |
|
|
| ConnectContactLens | Folder | 0755 |
|
|
| ConnectParticipant | Folder | 0755 |
|
|
| ConnectWisdomService | Folder | 0755 |
|
|
| ControlCatalog | Folder | 0755 |
|
|
| ControlTower | Folder | 0755 |
|
|
| CostExplorer | Folder | 0755 |
|
|
| CostOptimizationHub | Folder | 0755 |
|
|
| CostandUsageReportService | Folder | 0755 |
|
|
| Credentials | Folder | 0755 |
|
|
| Crypto | Folder | 0755 |
|
|
| CustomerProfiles | Folder | 0755 |
|
|
| DAX | Folder | 0755 |
|
|
| DLM | Folder | 0755 |
|
|
| DSQL | Folder | 0755 |
|
|
| DataExchange | Folder | 0755 |
|
|
| DataPipeline | Folder | 0755 |
|
|
| DataSync | Folder | 0755 |
|
|
| DataZone | Folder | 0755 |
|
|
| DatabaseMigrationService | Folder | 0755 |
|
|
| Deadline | Folder | 0755 |
|
|
| DefaultsMode | Folder | 0755 |
|
|
| Detective | Folder | 0755 |
|
|
| DevOpsGuru | Folder | 0755 |
|
|
| DeviceFarm | Folder | 0755 |
|
|
| DirectConnect | Folder | 0755 |
|
|
| DirectoryService | Folder | 0755 |
|
|
| DirectoryServiceData | Folder | 0755 |
|
|
| DocDB | Folder | 0755 |
|
|
| DocDBElastic | Folder | 0755 |
|
|
| DynamoDb | Folder | 0755 |
|
|
| DynamoDbStreams | Folder | 0755 |
|
|
| EBS | Folder | 0755 |
|
|
| EC2InstanceConnect | Folder | 0755 |
|
|
| ECRPublic | Folder | 0755 |
|
|
| EKS | Folder | 0755 |
|
|
| EKSAuth | Folder | 0755 |
|
|
| EMRContainers | Folder | 0755 |
|
|
| EMRServerless | Folder | 0755 |
|
|
| Ec2 | Folder | 0755 |
|
|
| Ecr | Folder | 0755 |
|
|
| Ecs | Folder | 0755 |
|
|
| Efs | Folder | 0755 |
|
|
| ElastiCache | Folder | 0755 |
|
|
| ElasticBeanstalk | Folder | 0755 |
|
|
| ElasticLoadBalancing | Folder | 0755 |
|
|
| ElasticLoadBalancingV2 | Folder | 0755 |
|
|
| ElasticTranscoder | Folder | 0755 |
|
|
| ElasticsearchService | Folder | 0755 |
|
|
| Emr | Folder | 0755 |
|
|
| Endpoint | Folder | 0755 |
|
|
| EndpointDiscovery | Folder | 0755 |
|
|
| EndpointV2 | Folder | 0755 |
|
|
| EntityResolution | Folder | 0755 |
|
|
| EventBridge | Folder | 0755 |
|
|
| Exception | Folder | 0755 |
|
|
| FIS | Folder | 0755 |
|
|
| FMS | Folder | 0755 |
|
|
| FSx | Folder | 0755 |
|
|
| FinSpaceData | Folder | 0755 |
|
|
| Firehose | Folder | 0755 |
|
|
| ForecastQueryService | Folder | 0755 |
|
|
| ForecastService | Folder | 0755 |
|
|
| FraudDetector | Folder | 0755 |
|
|
| FreeTier | Folder | 0755 |
|
|
| GameLift | Folder | 0755 |
|
|
| GameLiftStreams | Folder | 0755 |
|
|
| GeoMaps | Folder | 0755 |
|
|
| GeoPlaces | Folder | 0755 |
|
|
| GeoRoutes | Folder | 0755 |
|
|
| Glacier | Folder | 0755 |
|
|
| GlobalAccelerator | Folder | 0755 |
|
|
| Glue | Folder | 0755 |
|
|
| GlueDataBrew | Folder | 0755 |
|
|
| Greengrass | Folder | 0755 |
|
|
| GreengrassV2 | Folder | 0755 |
|
|
| GroundStation | Folder | 0755 |
|
|
| GuardDuty | Folder | 0755 |
|
|
| Handler | Folder | 0755 |
|
|
| Health | Folder | 0755 |
|
|
| HealthLake | Folder | 0755 |
|
|
| IVS | Folder | 0755 |
|
|
| IVSRealTime | Folder | 0755 |
|
|
| Iam | Folder | 0755 |
|
|
| Identity | Folder | 0755 |
|
|
| IdentityStore | Folder | 0755 |
|
|
| ImportExport | Folder | 0755 |
|
|
| Inspector | Folder | 0755 |
|
|
| Inspector2 | Folder | 0755 |
|
|
| InspectorScan | Folder | 0755 |
|
|
| InternetMonitor | Folder | 0755 |
|
|
| Invoicing | Folder | 0755 |
|
|
| IoTAnalytics | Folder | 0755 |
|
|
| IoTDeviceAdvisor | Folder | 0755 |
|
|
| IoTEvents | Folder | 0755 |
|
|
| IoTEventsData | Folder | 0755 |
|
|
| IoTFleetHub | Folder | 0755 |
|
|
| IoTFleetWise | Folder | 0755 |
|
|
| IoTJobsDataPlane | Folder | 0755 |
|
|
| IoTManagedIntegrations | Folder | 0755 |
|
|
| IoTSecureTunneling | Folder | 0755 |
|
|
| IoTSiteWise | Folder | 0755 |
|
|
| IoTThingsGraph | Folder | 0755 |
|
|
| IoTTwinMaker | Folder | 0755 |
|
|
| IoTWireless | Folder | 0755 |
|
|
| Iot | Folder | 0755 |
|
|
| IotDataPlane | Folder | 0755 |
|
|
| Kafka | Folder | 0755 |
|
|
| KafkaConnect | Folder | 0755 |
|
|
| KendraRanking | Folder | 0755 |
|
|
| Keyspaces | Folder | 0755 |
|
|
| Kinesis | Folder | 0755 |
|
|
| KinesisAnalytics | Folder | 0755 |
|
|
| KinesisAnalyticsV2 | Folder | 0755 |
|
|
| KinesisVideo | Folder | 0755 |
|
|
| KinesisVideoArchivedMedia | Folder | 0755 |
|
|
| KinesisVideoMedia | Folder | 0755 |
|
|
| KinesisVideoSignalingChannels | Folder | 0755 |
|
|
| KinesisVideoWebRTCStorage | Folder | 0755 |
|
|
| Kms | Folder | 0755 |
|
|
| LakeFormation | Folder | 0755 |
|
|
| Lambda | Folder | 0755 |
|
|
| LaunchWizard | Folder | 0755 |
|
|
| LexModelBuildingService | Folder | 0755 |
|
|
| LexModelsV2 | Folder | 0755 |
|
|
| LexRuntimeService | Folder | 0755 |
|
|
| LexRuntimeV2 | Folder | 0755 |
|
|
| LicenseManager | Folder | 0755 |
|
|
| LicenseManagerLinuxSubscriptions | Folder | 0755 |
|
|
| LicenseManagerUserSubscriptions | Folder | 0755 |
|
|
| Lightsail | Folder | 0755 |
|
|
| LocationService | Folder | 0755 |
|
|
| LookoutEquipment | Folder | 0755 |
|
|
| LookoutMetrics | Folder | 0755 |
|
|
| LookoutforVision | Folder | 0755 |
|
|
| MQ | Folder | 0755 |
|
|
| MTurk | Folder | 0755 |
|
|
| MWAA | Folder | 0755 |
|
|
| MachineLearning | Folder | 0755 |
|
|
| Macie2 | Folder | 0755 |
|
|
| MailManager | Folder | 0755 |
|
|
| MainframeModernization | Folder | 0755 |
|
|
| ManagedBlockchain | Folder | 0755 |
|
|
| ManagedBlockchainQuery | Folder | 0755 |
|
|
| ManagedGrafana | Folder | 0755 |
|
|
| MarketplaceAgreement | Folder | 0755 |
|
|
| MarketplaceCatalog | Folder | 0755 |
|
|
| MarketplaceCommerceAnalytics | Folder | 0755 |
|
|
| MarketplaceDeployment | Folder | 0755 |
|
|
| MarketplaceEntitlementService | Folder | 0755 |
|
|
| MarketplaceMetering | Folder | 0755 |
|
|
| MarketplaceReporting | Folder | 0755 |
|
|
| MediaConnect | Folder | 0755 |
|
|
| MediaConvert | Folder | 0755 |
|
|
| MediaLive | Folder | 0755 |
|
|
| MediaPackage | Folder | 0755 |
|
|
| MediaPackageV2 | Folder | 0755 |
|
|
| MediaPackageVod | Folder | 0755 |
|
|
| MediaStore | Folder | 0755 |
|
|
| MediaStoreData | Folder | 0755 |
|
|
| MediaTailor | Folder | 0755 |
|
|
| MedicalImaging | Folder | 0755 |
|
|
| MemoryDB | Folder | 0755 |
|
|
| MigrationHub | Folder | 0755 |
|
|
| MigrationHubConfig | Folder | 0755 |
|
|
| MigrationHubOrchestrator | Folder | 0755 |
|
|
| MigrationHubRefactorSpaces | Folder | 0755 |
|
|
| MigrationHubStrategyRecommendations | Folder | 0755 |
|
|
| Multipart | Folder | 0755 |
|
|
| Neptune | Folder | 0755 |
|
|
| NeptuneGraph | Folder | 0755 |
|
|
| Neptunedata | Folder | 0755 |
|
|
| NetworkFirewall | Folder | 0755 |
|
|
| NetworkFlowMonitor | Folder | 0755 |
|
|
| NetworkManager | Folder | 0755 |
|
|
| NetworkMonitor | Folder | 0755 |
|
|
| Notifications | Folder | 0755 |
|
|
| NotificationsContacts | Folder | 0755 |
|
|
| OAM | Folder | 0755 |
|
|
| OSIS | Folder | 0755 |
|
|
| ObservabilityAdmin | Folder | 0755 |
|
|
| Omics | Folder | 0755 |
|
|
| OpenSearchServerless | Folder | 0755 |
|
|
| OpenSearchService | Folder | 0755 |
|
|
| OpsWorks | Folder | 0755 |
|
|
| OpsWorksCM | Folder | 0755 |
|
|
| Organizations | Folder | 0755 |
|
|
| Outposts | Folder | 0755 |
|
|
| PCS | Folder | 0755 |
|
|
| PI | Folder | 0755 |
|
|
| Panorama | Folder | 0755 |
|
|
| PartnerCentralSelling | Folder | 0755 |
|
|
| PaymentCryptography | Folder | 0755 |
|
|
| PaymentCryptographyData | Folder | 0755 |
|
|
| PcaConnectorAd | Folder | 0755 |
|
|
| PcaConnectorScep | Folder | 0755 |
|
|
| Personalize | Folder | 0755 |
|
|
| PersonalizeEvents | Folder | 0755 |
|
|
| PersonalizeRuntime | Folder | 0755 |
|
|
| Pinpoint | Folder | 0755 |
|
|
| PinpointEmail | Folder | 0755 |
|
|
| PinpointSMSVoice | Folder | 0755 |
|
|
| PinpointSMSVoiceV2 | Folder | 0755 |
|
|
| Pipes | Folder | 0755 |
|
|
| Polly | Folder | 0755 |
|
|
| Pricing | Folder | 0755 |
|
|
| PrivateNetworks | Folder | 0755 |
|
|
| PrometheusService | Folder | 0755 |
|
|
| Proton | Folder | 0755 |
|
|
| QApps | Folder | 0755 |
|
|
| QBusiness | Folder | 0755 |
|
|
| QConnect | Folder | 0755 |
|
|
| QLDB | Folder | 0755 |
|
|
| QLDBSession | Folder | 0755 |
|
|
| QuickSight | Folder | 0755 |
|
|
| RAM | Folder | 0755 |
|
|
| RDSDataService | Folder | 0755 |
|
|
| Rds | Folder | 0755 |
|
|
| RecycleBin | Folder | 0755 |
|
|
| Redshift | Folder | 0755 |
|
|
| RedshiftDataAPIService | Folder | 0755 |
|
|
| RedshiftServerless | Folder | 0755 |
|
|
| Rekognition | Folder | 0755 |
|
|
| Repostspace | Folder | 0755 |
|
|
| ResilienceHub | Folder | 0755 |
|
|
| ResourceExplorer2 | Folder | 0755 |
|
|
| ResourceGroups | Folder | 0755 |
|
|
| ResourceGroupsTaggingAPI | Folder | 0755 |
|
|
| Retry | Folder | 0755 |
|
|
| RoboMaker | Folder | 0755 |
|
|
| RolesAnywhere | Folder | 0755 |
|
|
| Route53 | Folder | 0755 |
|
|
| Route53Domains | Folder | 0755 |
|
|
| Route53Profiles | Folder | 0755 |
|
|
| Route53RecoveryCluster | Folder | 0755 |
|
|
| Route53RecoveryControlConfig | Folder | 0755 |
|
|
| Route53RecoveryReadiness | Folder | 0755 |
|
|
| Route53Resolver | Folder | 0755 |
|
|
| S3 | Folder | 0755 |
|
|
| S3Control | Folder | 0755 |
|
|
| S3Outposts | Folder | 0755 |
|
|
| S3Tables | Folder | 0755 |
|
|
| SSMContacts | Folder | 0755 |
|
|
| SSMIncidents | Folder | 0755 |
|
|
| SSMQuickSetup | Folder | 0755 |
|
|
| SSO | Folder | 0755 |
|
|
| SSOAdmin | Folder | 0755 |
|
|
| SSOOIDC | Folder | 0755 |
|
|
| SageMaker | Folder | 0755 |
|
|
| SageMakerFeatureStoreRuntime | Folder | 0755 |
|
|
| SageMakerGeospatial | Folder | 0755 |
|
|
| SageMakerMetrics | Folder | 0755 |
|
|
| SageMakerRuntime | Folder | 0755 |
|
|
| SagemakerEdgeManager | Folder | 0755 |
|
|
| SavingsPlans | Folder | 0755 |
|
|
| Scheduler | Folder | 0755 |
|
|
| Schemas | Folder | 0755 |
|
|
| Script | Folder | 0755 |
|
|
| SecretsManager | Folder | 0755 |
|
|
| SecurityHub | Folder | 0755 |
|
|
| SecurityIR | Folder | 0755 |
|
|
| SecurityLake | Folder | 0755 |
|
|
| ServerlessApplicationRepository | Folder | 0755 |
|
|
| ServiceCatalog | Folder | 0755 |
|
|
| ServiceDiscovery | Folder | 0755 |
|
|
| ServiceQuotas | Folder | 0755 |
|
|
| Ses | Folder | 0755 |
|
|
| SesV2 | Folder | 0755 |
|
|
| Sfn | Folder | 0755 |
|
|
| Shield | Folder | 0755 |
|
|
| Signature | Folder | 0755 |
|
|
| SimSpaceWeaver | Folder | 0755 |
|
|
| Sms | Folder | 0755 |
|
|
| SnowBall | Folder | 0755 |
|
|
| SnowDeviceManagement | Folder | 0755 |
|
|
| Sns | Folder | 0755 |
|
|
| SocialMessaging | Folder | 0755 |
|
|
| Sqs | Folder | 0755 |
|
|
| Ssm | Folder | 0755 |
|
|
| SsmSap | Folder | 0755 |
|
|
| StorageGateway | Folder | 0755 |
|
|
| Sts | Folder | 0755 |
|
|
| SupplyChain | Folder | 0755 |
|
|
| Support | Folder | 0755 |
|
|
| SupportApp | Folder | 0755 |
|
|
| Swf | Folder | 0755 |
|
|
| Synthetics | Folder | 0755 |
|
|
| TaxSettings | Folder | 0755 |
|
|
| Textract | Folder | 0755 |
|
|
| TimestreamInfluxDB | Folder | 0755 |
|
|
| TimestreamQuery | Folder | 0755 |
|
|
| TimestreamWrite | Folder | 0755 |
|
|
| Tnb | Folder | 0755 |
|
|
| Token | Folder | 0755 |
|
|
| TranscribeService | Folder | 0755 |
|
|
| Transfer | Folder | 0755 |
|
|
| Translate | Folder | 0755 |
|
|
| TrustedAdvisor | Folder | 0755 |
|
|
| VPCLattice | Folder | 0755 |
|
|
| VerifiedPermissions | Folder | 0755 |
|
|
| VoiceID | Folder | 0755 |
|
|
| WAFV2 | Folder | 0755 |
|
|
| Waf | Folder | 0755 |
|
|
| WafRegional | Folder | 0755 |
|
|
| WellArchitected | Folder | 0755 |
|
|
| WorkDocs | Folder | 0755 |
|
|
| WorkMail | Folder | 0755 |
|
|
| WorkMailMessageFlow | Folder | 0755 |
|
|
| WorkSpaces | Folder | 0755 |
|
|
| WorkSpacesThinClient | Folder | 0755 |
|
|
| WorkSpacesWeb | Folder | 0755 |
|
|
| XRay | Folder | 0755 |
|
|
| data | Folder | 0755 |
|
|
| drs | Folder | 0755 |
|
|
| finspace | Folder | 0755 |
|
|
| imagebuilder | Folder | 0755 |
|
|
| ivschat | Folder | 0755 |
|
|
| kendra | Folder | 0755 |
|
|
| mgn | Folder | 0755 |
|
|
| signer | Folder | 0755 |
|
|
| AbstractConfigurationProvider.php | File | 4.46 KB | 0644 |
|
| AwsClient.php | File | 29.32 KB | 0644 |
|
| AwsClientInterface.php | File | 5.4 KB | 0644 |
|
| AwsClientTrait.php | File | 2.67 KB | 0644 |
|
| CacheInterface.php | File | 755 B | 0644 |
|
| ClientResolver.php | File | 56.88 KB | 0644 |
|
| Command.php | File | 3.41 KB | 0644 |
|
| CommandInterface.php | File | 946 B | 0644 |
|
| CommandPool.php | File | 5.23 KB | 0644 |
|
| ConfigurationProviderInterface.php | File | 246 B | 0644 |
|
| DoctrineCacheAdapter.php | File | 1.15 KB | 0644 |
|
| EndpointParameterMiddleware.php | File | 2.73 KB | 0644 |
|
| HandlerList.php | File | 13.55 KB | 0644 |
|
| HasDataTrait.php | File | 1.46 KB | 0644 |
|
| HasMonitoringEventsTrait.php | File | 869 B | 0644 |
|
| HashInterface.php | File | 531 B | 0644 |
|
| HashingStream.php | File | 1.55 KB | 0644 |
|
| History.php | File | 3.9 KB | 0644 |
|
| IdempotencyTokenMiddleware.php | File | 3.7 KB | 0644 |
|
| InputValidationMiddleware.php | File | 2.43 KB | 0644 |
|
| JsonCompiler.php | File | 478 B | 0644 |
|
| LruArrayCache.php | File | 2.22 KB | 0644 |
|
| MetricsBuilder.php | File | 14.28 KB | 0644 |
|
| Middleware.php | File | 16.69 KB | 0644 |
|
| MockHandler.php | File | 4.09 KB | 0644 |
|
| MonitoringEventsInterface.php | File | 742 B | 0644 |
|
| MultiRegionClient.php | File | 8.79 KB | 0644 |
|
| PhpHash.php | File | 1.81 KB | 0644 |
|
| PresignUrlMiddleware.php | File | 4.53 KB | 0644 |
|
| Psr16CacheAdapter.php | File | 572 B | 0644 |
|
| PsrCacheAdapter.php | File | 742 B | 0644 |
|
| QueryCompatibleInputMiddleware.php | File | 5.81 KB | 0644 |
|
| RequestCompressionMiddleware.php | File | 5.03 KB | 0644 |
|
| ResponseContainerInterface.php | File | 246 B | 0644 |
|
| Result.php | File | 1.14 KB | 0644 |
|
| ResultInterface.php | File | 1.34 KB | 0644 |
|
| ResultPaginator.php | File | 6.16 KB | 0644 |
|
| RetryMiddleware.php | File | 8.47 KB | 0644 |
|
| RetryMiddlewareV2.php | File | 11.67 KB | 0644 |
|
| Sdk.php | File | 69.88 KB | 0644 |
|
| StreamRequestPayloadMiddleware.php | File | 2.57 KB | 0644 |
|
| TraceMiddleware.php | File | 12.36 KB | 0644 |
|
| UserAgentMiddleware.php | File | 6.42 KB | 0644 |
|
| Waiter.php | File | 9.16 KB | 0644 |
|
| WrappedHttpHandler.php | File | 6.99 KB | 0644 |
|
| functions.php | File | 14.14 KB | 0644 |
|