Skip to content

Commit c56507c

Browse files
committed
v3.31.0
1 parent 648f4bb commit c56507c

File tree

507 files changed

+44633
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

507 files changed

+44633
-15
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nyco/access-nyc",
3-
"version": "3.30.1",
3+
"version": "3.31.0",
44
"description": "Find help in NYC with food, money, housing, work and more on ACCESS NYC",
55
"homepage": "https://access.nyc.gov",
66
"authors": [

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
namespace Aws\Arn;
3+
4+
/**
5+
* This class represents an S3 Object bucket ARN, which is in the
6+
* following format:
7+
*
8+
* @internal
9+
*/
10+
class ObjectLambdaAccessPointArn extends AccessPointArn
11+
{
12+
/**
13+
* Parses a string into an associative array of components that represent
14+
* a ObjectLambdaAccessPointArn
15+
*
16+
* @param $string
17+
* @return array
18+
*/
19+
public static function parse($string)
20+
{
21+
$data = parent::parse($string);
22+
return parent::parseResourceTypeAndId($data);
23+
}
24+
25+
/**
26+
*
27+
* @param array $data
28+
*/
29+
protected static function validate(array $data)
30+
{
31+
parent::validate($data);
32+
self::validateRegion($data, 'S3 Object Lambda ARN');
33+
self::validateAccountId($data, 'S3 Object Lambda ARN');
34+
}
35+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
namespace Aws\FIS\Exception;
3+
4+
use Aws\Exception\AwsException;
5+
6+
/**
7+
* Represents an error interacting with the **AWS Fault Injection Simulator** service.
8+
*/
9+
class FISException extends AwsException {}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?php
2+
namespace Aws\FIS;
3+
4+
use Aws\AwsClient;
5+
6+
/**
7+
* This client is used to interact with the **AWS Fault Injection Simulator** service.
8+
* @method \Aws\Result createExperimentTemplate(array $args = [])
9+
* @method \GuzzleHttp\Promise\Promise createExperimentTemplateAsync(array $args = [])
10+
* @method \Aws\Result deleteExperimentTemplate(array $args = [])
11+
* @method \GuzzleHttp\Promise\Promise deleteExperimentTemplateAsync(array $args = [])
12+
* @method \Aws\Result getAction(array $args = [])
13+
* @method \GuzzleHttp\Promise\Promise getActionAsync(array $args = [])
14+
* @method \Aws\Result getExperiment(array $args = [])
15+
* @method \GuzzleHttp\Promise\Promise getExperimentAsync(array $args = [])
16+
* @method \Aws\Result getExperimentTemplate(array $args = [])
17+
* @method \GuzzleHttp\Promise\Promise getExperimentTemplateAsync(array $args = [])
18+
* @method \Aws\Result listActions(array $args = [])
19+
* @method \GuzzleHttp\Promise\Promise listActionsAsync(array $args = [])
20+
* @method \Aws\Result listExperimentTemplates(array $args = [])
21+
* @method \GuzzleHttp\Promise\Promise listExperimentTemplatesAsync(array $args = [])
22+
* @method \Aws\Result listExperiments(array $args = [])
23+
* @method \GuzzleHttp\Promise\Promise listExperimentsAsync(array $args = [])
24+
* @method \Aws\Result listTagsForResource(array $args = [])
25+
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
26+
* @method \Aws\Result startExperiment(array $args = [])
27+
* @method \GuzzleHttp\Promise\Promise startExperimentAsync(array $args = [])
28+
* @method \Aws\Result stopExperiment(array $args = [])
29+
* @method \GuzzleHttp\Promise\Promise stopExperimentAsync(array $args = [])
30+
* @method \Aws\Result tagResource(array $args = [])
31+
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
32+
* @method \Aws\Result untagResource(array $args = [])
33+
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
34+
* @method \Aws\Result updateExperimentTemplate(array $args = [])
35+
* @method \GuzzleHttp\Promise\Promise updateExperimentTemplateAsync(array $args = [])
36+
*/
37+
class FISClient extends AwsClient {}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
namespace Aws\GreengrassV2\Exception;
3+
4+
use Aws\Exception\AwsException;
5+
6+
/**
7+
* Represents an error interacting with the **AWS IoT Greengrass V2** service.
8+
*/
9+
class GreengrassV2Exception extends AwsException {}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?php
2+
namespace Aws\GreengrassV2;
3+
4+
use Aws\AwsClient;
5+
6+
/**
7+
* This client is used to interact with the **AWS IoT Greengrass V2** service.
8+
* @method \Aws\Result cancelDeployment(array $args = [])
9+
* @method \GuzzleHttp\Promise\Promise cancelDeploymentAsync(array $args = [])
10+
* @method \Aws\Result createComponentVersion(array $args = [])
11+
* @method \GuzzleHttp\Promise\Promise createComponentVersionAsync(array $args = [])
12+
* @method \Aws\Result createDeployment(array $args = [])
13+
* @method \GuzzleHttp\Promise\Promise createDeploymentAsync(array $args = [])
14+
* @method \Aws\Result deleteComponent(array $args = [])
15+
* @method \GuzzleHttp\Promise\Promise deleteComponentAsync(array $args = [])
16+
* @method \Aws\Result deleteCoreDevice(array $args = [])
17+
* @method \GuzzleHttp\Promise\Promise deleteCoreDeviceAsync(array $args = [])
18+
* @method \Aws\Result describeComponent(array $args = [])
19+
* @method \GuzzleHttp\Promise\Promise describeComponentAsync(array $args = [])
20+
* @method \Aws\Result getComponent(array $args = [])
21+
* @method \GuzzleHttp\Promise\Promise getComponentAsync(array $args = [])
22+
* @method \Aws\Result getComponentVersionArtifact(array $args = [])
23+
* @method \GuzzleHttp\Promise\Promise getComponentVersionArtifactAsync(array $args = [])
24+
* @method \Aws\Result getCoreDevice(array $args = [])
25+
* @method \GuzzleHttp\Promise\Promise getCoreDeviceAsync(array $args = [])
26+
* @method \Aws\Result getDeployment(array $args = [])
27+
* @method \GuzzleHttp\Promise\Promise getDeploymentAsync(array $args = [])
28+
* @method \Aws\Result listComponentVersions(array $args = [])
29+
* @method \GuzzleHttp\Promise\Promise listComponentVersionsAsync(array $args = [])
30+
* @method \Aws\Result listComponents(array $args = [])
31+
* @method \GuzzleHttp\Promise\Promise listComponentsAsync(array $args = [])
32+
* @method \Aws\Result listCoreDevices(array $args = [])
33+
* @method \GuzzleHttp\Promise\Promise listCoreDevicesAsync(array $args = [])
34+
* @method \Aws\Result listDeployments(array $args = [])
35+
* @method \GuzzleHttp\Promise\Promise listDeploymentsAsync(array $args = [])
36+
* @method \Aws\Result listEffectiveDeployments(array $args = [])
37+
* @method \GuzzleHttp\Promise\Promise listEffectiveDeploymentsAsync(array $args = [])
38+
* @method \Aws\Result listInstalledComponents(array $args = [])
39+
* @method \GuzzleHttp\Promise\Promise listInstalledComponentsAsync(array $args = [])
40+
* @method \Aws\Result listTagsForResource(array $args = [])
41+
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
42+
* @method \Aws\Result resolveComponentCandidates(array $args = [])
43+
* @method \GuzzleHttp\Promise\Promise resolveComponentCandidatesAsync(array $args = [])
44+
* @method \Aws\Result tagResource(array $args = [])
45+
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
46+
* @method \Aws\Result untagResource(array $args = [])
47+
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
48+
*/
49+
class GreengrassV2Client extends AwsClient {}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
namespace Aws\IoTDeviceAdvisor\Exception;
3+
4+
use Aws\Exception\AwsException;
5+
6+
/**
7+
* Represents an error interacting with the **AWS IoT Core Device Advisor** service.
8+
*/
9+
class IoTDeviceAdvisorException extends AwsException {}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
namespace Aws\IoTDeviceAdvisor;
3+
4+
use Aws\AwsClient;
5+
6+
/**
7+
* This client is used to interact with the **AWS IoT Core Device Advisor** service.
8+
* @method \Aws\Result createSuiteDefinition(array $args = [])
9+
* @method \GuzzleHttp\Promise\Promise createSuiteDefinitionAsync(array $args = [])
10+
* @method \Aws\Result deleteSuiteDefinition(array $args = [])
11+
* @method \GuzzleHttp\Promise\Promise deleteSuiteDefinitionAsync(array $args = [])
12+
* @method \Aws\Result getSuiteDefinition(array $args = [])
13+
* @method \GuzzleHttp\Promise\Promise getSuiteDefinitionAsync(array $args = [])
14+
* @method \Aws\Result getSuiteRun(array $args = [])
15+
* @method \GuzzleHttp\Promise\Promise getSuiteRunAsync(array $args = [])
16+
* @method \Aws\Result getSuiteRunReport(array $args = [])
17+
* @method \GuzzleHttp\Promise\Promise getSuiteRunReportAsync(array $args = [])
18+
* @method \Aws\Result listSuiteDefinitions(array $args = [])
19+
* @method \GuzzleHttp\Promise\Promise listSuiteDefinitionsAsync(array $args = [])
20+
* @method \Aws\Result listSuiteRuns(array $args = [])
21+
* @method \GuzzleHttp\Promise\Promise listSuiteRunsAsync(array $args = [])
22+
* @method \Aws\Result listTagsForResource(array $args = [])
23+
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
24+
* @method \Aws\Result listTestCases(array $args = [])
25+
* @method \GuzzleHttp\Promise\Promise listTestCasesAsync(array $args = [])
26+
* @method \Aws\Result startSuiteRun(array $args = [])
27+
* @method \GuzzleHttp\Promise\Promise startSuiteRunAsync(array $args = [])
28+
* @method \Aws\Result tagResource(array $args = [])
29+
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
30+
* @method \Aws\Result untagResource(array $args = [])
31+
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
32+
* @method \Aws\Result updateSuiteDefinition(array $args = [])
33+
* @method \GuzzleHttp\Promise\Promise updateSuiteDefinitionAsync(array $args = [])
34+
*/
35+
class IoTDeviceAdvisorClient extends AwsClient {}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
namespace Aws\IoTFleetHub\Exception;
3+
4+
use Aws\Exception\AwsException;
5+
6+
/**
7+
* Represents an error interacting with the **AWS IoT Fleet Hub** service.
8+
*/
9+
class IoTFleetHubException extends AwsException {}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
namespace Aws\IoTFleetHub;
3+
4+
use Aws\AwsClient;
5+
6+
/**
7+
* This client is used to interact with the **AWS IoT Fleet Hub** service.
8+
* @method \Aws\Result createApplication(array $args = [])
9+
* @method \GuzzleHttp\Promise\Promise createApplicationAsync(array $args = [])
10+
* @method \Aws\Result deleteApplication(array $args = [])
11+
* @method \GuzzleHttp\Promise\Promise deleteApplicationAsync(array $args = [])
12+
* @method \Aws\Result describeApplication(array $args = [])
13+
* @method \GuzzleHttp\Promise\Promise describeApplicationAsync(array $args = [])
14+
* @method \Aws\Result listApplications(array $args = [])
15+
* @method \GuzzleHttp\Promise\Promise listApplicationsAsync(array $args = [])
16+
* @method \Aws\Result listTagsForResource(array $args = [])
17+
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
18+
* @method \Aws\Result tagResource(array $args = [])
19+
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
20+
* @method \Aws\Result untagResource(array $args = [])
21+
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
22+
* @method \Aws\Result updateApplication(array $args = [])
23+
* @method \GuzzleHttp\Promise\Promise updateApplicationAsync(array $args = [])
24+
*/
25+
class IoTFleetHubClient extends AwsClient {}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
namespace Aws\IoTWireless\Exception;
3+
4+
use Aws\Exception\AwsException;
5+
6+
/**
7+
* Represents an error interacting with the **AWS IoT Wireless** service.
8+
*/
9+
class IoTWirelessException extends AwsException {}
Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
<?php
2+
namespace Aws\IoTWireless;
3+
4+
use Aws\AwsClient;
5+
6+
/**
7+
* This client is used to interact with the **AWS IoT Wireless** service.
8+
* @method \Aws\Result associateAwsAccountWithPartnerAccount(array $args = [])
9+
* @method \GuzzleHttp\Promise\Promise associateAwsAccountWithPartnerAccountAsync(array $args = [])
10+
* @method \Aws\Result associateWirelessDeviceWithThing(array $args = [])
11+
* @method \GuzzleHttp\Promise\Promise associateWirelessDeviceWithThingAsync(array $args = [])
12+
* @method \Aws\Result associateWirelessGatewayWithCertificate(array $args = [])
13+
* @method \GuzzleHttp\Promise\Promise associateWirelessGatewayWithCertificateAsync(array $args = [])
14+
* @method \Aws\Result associateWirelessGatewayWithThing(array $args = [])
15+
* @method \GuzzleHttp\Promise\Promise associateWirelessGatewayWithThingAsync(array $args = [])
16+
* @method \Aws\Result createDestination(array $args = [])
17+
* @method \GuzzleHttp\Promise\Promise createDestinationAsync(array $args = [])
18+
* @method \Aws\Result createDeviceProfile(array $args = [])
19+
* @method \GuzzleHttp\Promise\Promise createDeviceProfileAsync(array $args = [])
20+
* @method \Aws\Result createServiceProfile(array $args = [])
21+
* @method \GuzzleHttp\Promise\Promise createServiceProfileAsync(array $args = [])
22+
* @method \Aws\Result createWirelessDevice(array $args = [])
23+
* @method \GuzzleHttp\Promise\Promise createWirelessDeviceAsync(array $args = [])
24+
* @method \Aws\Result createWirelessGateway(array $args = [])
25+
* @method \GuzzleHttp\Promise\Promise createWirelessGatewayAsync(array $args = [])
26+
* @method \Aws\Result createWirelessGatewayTask(array $args = [])
27+
* @method \GuzzleHttp\Promise\Promise createWirelessGatewayTaskAsync(array $args = [])
28+
* @method \Aws\Result createWirelessGatewayTaskDefinition(array $args = [])
29+
* @method \GuzzleHttp\Promise\Promise createWirelessGatewayTaskDefinitionAsync(array $args = [])
30+
* @method \Aws\Result deleteDestination(array $args = [])
31+
* @method \GuzzleHttp\Promise\Promise deleteDestinationAsync(array $args = [])
32+
* @method \Aws\Result deleteDeviceProfile(array $args = [])
33+
* @method \GuzzleHttp\Promise\Promise deleteDeviceProfileAsync(array $args = [])
34+
* @method \Aws\Result deleteServiceProfile(array $args = [])
35+
* @method \GuzzleHttp\Promise\Promise deleteServiceProfileAsync(array $args = [])
36+
* @method \Aws\Result deleteWirelessDevice(array $args = [])
37+
* @method \GuzzleHttp\Promise\Promise deleteWirelessDeviceAsync(array $args = [])
38+
* @method \Aws\Result deleteWirelessGateway(array $args = [])
39+
* @method \GuzzleHttp\Promise\Promise deleteWirelessGatewayAsync(array $args = [])
40+
* @method \Aws\Result deleteWirelessGatewayTask(array $args = [])
41+
* @method \GuzzleHttp\Promise\Promise deleteWirelessGatewayTaskAsync(array $args = [])
42+
* @method \Aws\Result deleteWirelessGatewayTaskDefinition(array $args = [])
43+
* @method \GuzzleHttp\Promise\Promise deleteWirelessGatewayTaskDefinitionAsync(array $args = [])
44+
* @method \Aws\Result disassociateAwsAccountFromPartnerAccount(array $args = [])
45+
* @method \GuzzleHttp\Promise\Promise disassociateAwsAccountFromPartnerAccountAsync(array $args = [])
46+
* @method \Aws\Result disassociateWirelessDeviceFromThing(array $args = [])
47+
* @method \GuzzleHttp\Promise\Promise disassociateWirelessDeviceFromThingAsync(array $args = [])
48+
* @method \Aws\Result disassociateWirelessGatewayFromCertificate(array $args = [])
49+
* @method \GuzzleHttp\Promise\Promise disassociateWirelessGatewayFromCertificateAsync(array $args = [])
50+
* @method \Aws\Result disassociateWirelessGatewayFromThing(array $args = [])
51+
* @method \GuzzleHttp\Promise\Promise disassociateWirelessGatewayFromThingAsync(array $args = [])
52+
* @method \Aws\Result getDestination(array $args = [])
53+
* @method \GuzzleHttp\Promise\Promise getDestinationAsync(array $args = [])
54+
* @method \Aws\Result getDeviceProfile(array $args = [])
55+
* @method \GuzzleHttp\Promise\Promise getDeviceProfileAsync(array $args = [])
56+
* @method \Aws\Result getPartnerAccount(array $args = [])
57+
* @method \GuzzleHttp\Promise\Promise getPartnerAccountAsync(array $args = [])
58+
* @method \Aws\Result getServiceEndpoint(array $args = [])
59+
* @method \GuzzleHttp\Promise\Promise getServiceEndpointAsync(array $args = [])
60+
* @method \Aws\Result getServiceProfile(array $args = [])
61+
* @method \GuzzleHttp\Promise\Promise getServiceProfileAsync(array $args = [])
62+
* @method \Aws\Result getWirelessDevice(array $args = [])
63+
* @method \GuzzleHttp\Promise\Promise getWirelessDeviceAsync(array $args = [])
64+
* @method \Aws\Result getWirelessDeviceStatistics(array $args = [])
65+
* @method \GuzzleHttp\Promise\Promise getWirelessDeviceStatisticsAsync(array $args = [])
66+
* @method \Aws\Result getWirelessGateway(array $args = [])
67+
* @method \GuzzleHttp\Promise\Promise getWirelessGatewayAsync(array $args = [])
68+
* @method \Aws\Result getWirelessGatewayCertificate(array $args = [])
69+
* @method \GuzzleHttp\Promise\Promise getWirelessGatewayCertificateAsync(array $args = [])
70+
* @method \Aws\Result getWirelessGatewayFirmwareInformation(array $args = [])
71+
* @method \GuzzleHttp\Promise\Promise getWirelessGatewayFirmwareInformationAsync(array $args = [])
72+
* @method \Aws\Result getWirelessGatewayStatistics(array $args = [])
73+
* @method \GuzzleHttp\Promise\Promise getWirelessGatewayStatisticsAsync(array $args = [])
74+
* @method \Aws\Result getWirelessGatewayTask(array $args = [])
75+
* @method \GuzzleHttp\Promise\Promise getWirelessGatewayTaskAsync(array $args = [])
76+
* @method \Aws\Result getWirelessGatewayTaskDefinition(array $args = [])
77+
* @method \GuzzleHttp\Promise\Promise getWirelessGatewayTaskDefinitionAsync(array $args = [])
78+
* @method \Aws\Result listDestinations(array $args = [])
79+
* @method \GuzzleHttp\Promise\Promise listDestinationsAsync(array $args = [])
80+
* @method \Aws\Result listDeviceProfiles(array $args = [])
81+
* @method \GuzzleHttp\Promise\Promise listDeviceProfilesAsync(array $args = [])
82+
* @method \Aws\Result listPartnerAccounts(array $args = [])
83+
* @method \GuzzleHttp\Promise\Promise listPartnerAccountsAsync(array $args = [])
84+
* @method \Aws\Result listServiceProfiles(array $args = [])
85+
* @method \GuzzleHttp\Promise\Promise listServiceProfilesAsync(array $args = [])
86+
* @method \Aws\Result listTagsForResource(array $args = [])
87+
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
88+
* @method \Aws\Result listWirelessDevices(array $args = [])
89+
* @method \GuzzleHttp\Promise\Promise listWirelessDevicesAsync(array $args = [])
90+
* @method \Aws\Result listWirelessGatewayTaskDefinitions(array $args = [])
91+
* @method \GuzzleHttp\Promise\Promise listWirelessGatewayTaskDefinitionsAsync(array $args = [])
92+
* @method \Aws\Result listWirelessGateways(array $args = [])
93+
* @method \GuzzleHttp\Promise\Promise listWirelessGatewaysAsync(array $args = [])
94+
* @method \Aws\Result sendDataToWirelessDevice(array $args = [])
95+
* @method \GuzzleHttp\Promise\Promise sendDataToWirelessDeviceAsync(array $args = [])
96+
* @method \Aws\Result tagResource(array $args = [])
97+
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
98+
* @method \Aws\Result testWirelessDevice(array $args = [])
99+
* @method \GuzzleHttp\Promise\Promise testWirelessDeviceAsync(array $args = [])
100+
* @method \Aws\Result untagResource(array $args = [])
101+
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
102+
* @method \Aws\Result updateDestination(array $args = [])
103+
* @method \GuzzleHttp\Promise\Promise updateDestinationAsync(array $args = [])
104+
* @method \Aws\Result updatePartnerAccount(array $args = [])
105+
* @method \GuzzleHttp\Promise\Promise updatePartnerAccountAsync(array $args = [])
106+
* @method \Aws\Result updateWirelessDevice(array $args = [])
107+
* @method \GuzzleHttp\Promise\Promise updateWirelessDeviceAsync(array $args = [])
108+
* @method \Aws\Result updateWirelessGateway(array $args = [])
109+
* @method \GuzzleHttp\Promise\Promise updateWirelessGatewayAsync(array $args = [])
110+
*/
111+
class IoTWirelessClient extends AwsClient {}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
namespace Aws\LexModelsV2\Exception;
3+
4+
use Aws\Exception\AwsException;
5+
6+
/**
7+
* Represents an error interacting with the **Amazon Lex Model Building V2** service.
8+
*/
9+
class LexModelsV2Exception extends AwsException {}

0 commit comments

Comments
 (0)