mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-02-19 07:50:09 +01:00
11 lines
148 B
PHP
11 lines
148 B
PHP
|
<?php
|
||
|
namespace Aws\Arn;
|
||
|
|
||
|
/**
|
||
|
* @internal
|
||
|
*/
|
||
|
interface AccessPointArnInterface extends ArnInterface
|
||
|
{
|
||
|
public function getAccesspointName();
|
||
|
}
|