installed plugin Infinite Uploads
version 2.0.8
This commit is contained in:
30
wp-content/plugins/infinite-uploads/vendor/Aws3/Aws/Arn/ArnInterface.php
vendored
Normal file
30
wp-content/plugins/infinite-uploads/vendor/Aws3/Aws/Arn/ArnInterface.php
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace UglyRobot\Infinite_Uploads\Aws\Arn;
|
||||
|
||||
/**
|
||||
* Amazon Resource Names (ARNs) uniquely identify AWS resources. Classes
|
||||
* implementing ArnInterface parse and store an ARN object representation.
|
||||
*
|
||||
* Valid ARN formats include:
|
||||
*
|
||||
* arn:partition:service:region:account-id:resource-id
|
||||
* arn:partition:service:region:account-id:resource-type/resource-id
|
||||
* arn:partition:service:region:account-id:resource-type:resource-id
|
||||
*
|
||||
* Some components may be omitted, depending on the service and resource type.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
interface ArnInterface
|
||||
{
|
||||
public static function parse($string);
|
||||
public function __toString();
|
||||
public function getPrefix();
|
||||
public function getPartition();
|
||||
public function getService();
|
||||
public function getRegion();
|
||||
public function getAccountId();
|
||||
public function getResource();
|
||||
public function toArray();
|
||||
}
|
Reference in New Issue
Block a user