WP File Manager
Current Path:
/
home
/
itutorethiopia
/
public_html
/
vendor
/
aws
/
aws-sdk-php
/
src
/
Name
Action
..
ACMPCA
Acm
AlexaForBusiness
Api
ApiGateway
AppSync
ApplicationAutoScaling
ApplicationDiscoveryService
Appstream
Athena
AutoScaling
AutoScalingPlans
AwsClient.php
Edit
AwsClientInterface.php
Edit
AwsClientTrait.php
Edit
Batch
Budgets
CacheInterface.php
Edit
ClientResolver.php
Edit
Cloud9
CloudDirectory
CloudFormation
CloudFront
CloudHSMV2
CloudHsm
CloudSearch
CloudSearchDomain
CloudTrail
CloudWatch
CloudWatchEvents
CloudWatchLogs
CodeBuild
CodeCommit
CodeDeploy
CodePipeline
CodeStar
CognitoIdentity
CognitoIdentityProvider
CognitoSync
Command.php
Edit
CommandInterface.php
Edit
CommandPool.php
Edit
Comprehend
ConfigService
Connect
CostExplorer
CostandUsageReportService
Credentials
Crypto
DAX
DLM
DataPipeline
DatabaseMigrationService
DeviceFarm
DirectConnect
DirectoryService
DoctrineCacheAdapter.php
Edit
DynamoDb
DynamoDbStreams
EKS
Ec2
Ecr
Ecs
Efs
ElastiCache
ElasticBeanstalk
ElasticLoadBalancing
ElasticLoadBalancingV2
ElasticTranscoder
ElasticsearchService
Emr
Endpoint
Exception
FMS
Firehose
GameLift
Glacier
Glue
Greengrass
GuardDuty
Handler
HandlerList.php
Edit
HasDataTrait.php
Edit
HashInterface.php
Edit
HashingStream.php
Edit
Health
History.php
Edit
Iam
IdempotencyTokenMiddleware.php
Edit
ImportExport
Inspector
IoT1ClickDevicesService
IoT1ClickProjects
IoTAnalytics
IoTJobsDataPlane
Iot
IotDataPlane
JsonCompiler.php
Edit
Kinesis
KinesisAnalytics
KinesisVideo
KinesisVideoArchivedMedia
KinesisVideoMedia
Kms
Lambda
LexModelBuildingService
LexRuntimeService
Lightsail
LruArrayCache.php
Edit
MQ
MTurk
MachineLearning
Macie
MarketplaceCommerceAnalytics
MarketplaceEntitlementService
MarketplaceMetering
MediaConvert
MediaLive
MediaPackage
MediaStore
MediaStoreData
MediaTailor
Middleware.php
Edit
MigrationHub
Mobile
MockHandler.php
Edit
MultiRegionClient.php
Edit
Multipart
Neptune
OpsWorks
OpsWorksCM
Organizations
PI
PhpHash.php
Edit
Pinpoint
Polly
PresignUrlMiddleware.php
Edit
Pricing
PsrCacheAdapter.php
Edit
Rds
Redshift
Rekognition
ResourceGroups
ResourceGroupsTaggingAPI
Result.php
Edit
ResultInterface.php
Edit
ResultPaginator.php
Edit
RetryMiddleware.php
Edit
Route53
Route53Domains
S3
SageMaker
SageMakerRuntime
Sdk.php
Edit
SecretsManager
ServerlessApplicationRepository
ServiceCatalog
ServiceDiscovery
Ses
Sfn
Shield
Signature
Sms
SnowBall
Sns
Sqs
Ssm
StorageGateway
Sts
Support
Swf
TraceMiddleware.php
Edit
TranscribeService
Translate
Waf
WafRegional
Waiter.php
Edit
WorkDocs
WorkMail
WorkSpaces
WrappedHttpHandler.php
Edit
XRay
data
functions.php
Edit
Editing: CommandInterface.php
<?php namespace Aws; /** * A command object encapsulates the input parameters used to control the * creation of a HTTP request and processing of a HTTP response. * * Using the toArray() method will return the input parameters of the command * as an associative array. */ interface CommandInterface extends \ArrayAccess, \Countable, \IteratorAggregate { /** * Converts the command parameters to an array * * @return array */ public function toArray(); /** * Get the name of the command * * @return string */ public function getName(); /** * Check if the command has a parameter by name. * * @param string $name Name of the parameter to check * * @return bool */ public function hasParam($name); /** * Get the handler list used to transfer the command. * * @return HandlerList */ public function getHandlerList(); }